1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
#include <twitter.h>
#include <random>
#include <yaml-cpp/yaml.h>
#include <iostream>
#include <thread>
#include <chrono>
#include <string>
#include <algorithm>
#include <set>
#include <list>
#include <iterator>
#include <verbly.h>
#include <hkutil/string.h>
// Sync followers every 4 hours.
const int CHECK_FOLLOWERS_EVERY = 4 * 60 / 5;
verbly::word findWordOfType(
verbly::database& database,
std::string form,
verbly::part_of_speech partOfSpeech)
{
std::vector<verbly::word> isThing = database.words(
(verbly::notion::partOfSpeech == partOfSpeech)
&& (verbly::form::text == form)).all();
if (isThing.empty())
{
return {};
} else {
return isThing.front();
}
}
int main(int argc, char** argv)
{
std::random_device randomDevice;
std::mt19937 rng{randomDevice()};
if (argc != 2)
{
std::cout << "usage: father [configfile]" << std::endl;
return -1;
}
std::string configfile(argv[1]);
YAML::Node config = YAML::LoadFile(configfile);
verbly::database database(config["verbly_datafile"].as<std::string>());
twitter::auth auth(
config["consumer_key"].as<std::string>(),
config["consumer_secret"].as<std::string>(),
config["access_key"].as<std::string>(),
config["access_secret"].as<std::string>());
auto startedTime = std::chrono::system_clock::now();
twitter::client client(auth);
std::set<twitter::user_id> friends;
int followerTimeout = 0;
for (;;)
{
if (followerTimeout == 0)
{
// Sync friends with followers.
try
{
friends = client.getFriends();
std::set<twitter::user_id> followers = client.getFollowers();
std::list<twitter::user_id> oldFriends;
std::set_difference(
std::begin(friends),
std::end(friends),
std::begin(followers),
std::end(followers),
std::back_inserter(oldFriends));
std::set<twitter::user_id> newFollowers;
std::set_difference(
std::begin(followers),
std::end(followers),
std::begin(friends),
std::end(friends),
std::inserter(newFollowers, std::begin(newFollowers)));
for (twitter::user_id f : oldFriends)
{
client.unfollow(f);
}
std::list<twitter::user> newFollowerObjs =
client.hydrateUsers(std::move(newFollowers));
for (twitter::user f : newFollowerObjs)
{
if (!f.isProtected())
{
client.follow(f);
}
}
} catch (const twitter::twitter_error& error)
{
std::cout << "Twitter error while syncing followers: " << error.what()
<< std::endl;
}
followerTimeout = CHECK_FOLLOWERS_EVERY;
}
followerTimeout--;
try
{
// Poll the timeline.
std::list<twitter::tweet> tweets = client.getHomeTimeline().poll();
for (twitter::tweet& tweet : tweets)
{
auto createdTime =
std::chrono::system_clock::from_time_t(tweet.getCreatedAt());
if (
// Only monitor people you are following
friends.count(tweet.getAuthor().getID())
// Ignore tweets from before the bot started up
&& createdTime > startedTime
// Ignore retweets
&& !tweet.isRetweet()
// Ignore messages
&& tweet.getText().front() != '@')
{
std::vector<std::string> tokens =
hatkirby::split<std::vector<std::string>>(tweet.getText(), " ");
std::vector<std::string> canonical;
for (std::string token : tokens)
{
std::string canonStr;
for (char ch : token)
{
if (std::isalpha(ch))
{
canonStr += std::tolower(ch);
}
}
canonical.push_back(canonStr);
}
std::vector<std::string>::iterator imIt =
std::find(std::begin(canonical), std::end(canonical), "im");
if (imIt != std::end(canonical))
{
imIt++;
if (imIt != std::end(canonical))
{
verbly::token name;
verbly::word firstAdverb = findWordOfType(
database,
*imIt,
verbly::part_of_speech::adverb);
if (firstAdverb.isValid())
{
std::vector<std::string>::iterator adjIt = imIt;
adjIt++;
if (adjIt != std::end(canonical))
{
verbly::word secondAdjective = findWordOfType(
database,
*adjIt,
verbly::part_of_speech::adjective);
if (secondAdjective.isValid())
{
name << firstAdverb;
name << secondAdjective;
}
}
}
if (name.isEmpty())
{
verbly::word firstAdjective = findWordOfType(
database,
*imIt,
verbly::part_of_speech::adjective);
if (firstAdjective.isValid())
{
name = firstAdjective;
}
}
if ((!name.isEmpty())
&& (std::bernoulli_distribution(1.0/10.0)(rng)))
{
verbly::token action = {
"Hi",
verbly::token::punctuation(",",
verbly::token::capitalize(
verbly::token::casing::title_case,
name)),
"I'm Dad."};
std::string result =
tweet.generateReplyPrefill(client.getUser())
+ action.compile();
std::cout << result << std::endl;
if (result.length() <= 140)
{
try
{
client.replyToTweet(result, tweet);
} catch (const twitter::twitter_error& e)
{
std::cout << "Twitter error while tweeting: " << e.what()
<< std::endl;
}
}
}
}
}
}
}
} catch (const twitter::rate_limit_exceeded&)
{
// Wait out the rate limit (10 minutes here and 5 below = 15).
std::this_thread::sleep_for(std::chrono::minutes(10));
}
// We can poll the timeline at most once every five minutes.
std::this_thread::sleep_for(std::chrono::minutes(5));
}
}
|