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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
|
#include <mastodonpp/mastodonpp.hpp>
#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>
#include <json.hpp>
#include "timeline.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();
}
}
std::set<std::string> getPaginatedList(
mastodonpp::Connection& connection,
mastodonpp::API::endpoint_type endpoint,
std::string account_id)
{
std::set<std::string> result;
mastodonpp::parametermap parameters;
for (;;)
{
parameters["id"] = account_id;
auto answer = connection.get(endpoint, parameters);
if (!answer)
{
if (answer.curl_error_code == 0)
{
std::cout << "HTTP status: " << answer.http_status << std::endl;
}
else
{
std::cout << "libcurl error " << std::to_string(answer.curl_error_code)
<< ": " << answer.error_message << std::endl;
}
return {};
}
parameters = answer.next();
if (parameters.empty()) break;
nlohmann::json body = nlohmann::json::parse(answer.body);
for (const auto& item : body)
{
result.insert(item["id"].get<std::string>());
}
}
return result;
}
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>());
mastodonpp::Instance instance{
config["mastodon_instance"].as<std::string>(),
config["mastodon_token"].as<std::string>()};
mastodonpp::Connection connection{instance};
nlohmann::json account_details;
{
const mastodonpp::parametermap parameters {};
auto answer = connection.get(mastodonpp::API::v1::accounts_verify_credentials, parameters);
if (!answer)
{
if (answer.curl_error_code == 0)
{
std::cout << "HTTP status: " << answer.http_status << std::endl;
}
else
{
std::cout << "libcurl error " << std::to_string(answer.curl_error_code)
<< ": " << answer.error_message << std::endl;
}
return 1;
}
std::cout << answer.body << std::endl;
account_details = nlohmann::json::parse(answer.body);
}
timeline home_timeline(mastodonpp::API::v1::timelines_home);
home_timeline.poll(connection); // just ignore the results
auto startedTime = std::chrono::system_clock::now();
std::set<std::string> friends;
int followerTimeout = 0;
for (;;)
{
if (followerTimeout == 0)
{
// Sync friends with followers.
try
{
friends = getPaginatedList(
connection,
mastodonpp::API::v1::accounts_id_following,
account_details["id"].get<std::string>());
std::set<std::string> followers = getPaginatedList(
connection,
mastodonpp::API::v1::accounts_id_followers,
account_details["id"].get<std::string>());
std::list<std::string> oldFriends;
std::set_difference(
std::begin(friends),
std::end(friends),
std::begin(followers),
std::end(followers),
std::back_inserter(oldFriends));
std::set<std::string> newFollowers;
std::set_difference(
std::begin(followers),
std::end(followers),
std::begin(friends),
std::end(friends),
std::inserter(newFollowers, std::begin(newFollowers)));
for (const std::string& f : oldFriends)
{
const mastodonpp::parametermap parameters {{"id", f}};
auto answer = connection.post(mastodonpp::API::v1::accounts_id_unfollow, parameters);
if (!answer)
{
if (answer.curl_error_code == 0)
{
std::cout << "HTTP status: " << answer.http_status << std::endl;
}
else
{
std::cout << "libcurl error " << std::to_string(answer.curl_error_code)
<< ": " << answer.error_message << std::endl;
}
}
}
for (const std::string& f : newFollowers)
{
const mastodonpp::parametermap parameters {{"id", f}, {"reblogs", "false"}};
auto answer = connection.post(mastodonpp::API::v1::accounts_id_follow, parameters);
if (!answer)
{
if (answer.curl_error_code == 0)
{
std::cout << "HTTP status: " << answer.http_status << std::endl;
}
else
{
std::cout << "libcurl error " << std::to_string(answer.curl_error_code)
<< ": " << answer.error_message << std::endl;
}
}
}
} catch (const std::exception& error)
{
std::cout << "Error while syncing followers: " << error.what()
<< std::endl;
}
followerTimeout = CHECK_FOLLOWERS_EVERY;
}
followerTimeout--;
try
{
// Poll the timeline.
std::list<nlohmann::json> posts = home_timeline.poll(connection);
for (const nlohmann::json& post : posts)
{
if (
// Only monitor people you are following
friends.count(post["account"]["id"].get<std::string>())
// Ignore retweets
&& post["reblog"].is_null())
{
std::string post_content = post["content"].get<std::string>();
std::string::size_type pos;
while ((pos = post_content.find("<")) != std::string::npos)
{
std::string prefix = post_content.substr(0, pos);
std::string rest = post_content.substr(pos);
std::string::size_type right_pos = rest.find(">");
if (right_pos == std::string::npos) {
post_content = prefix;
} else {
post_content = prefix + rest.substr(right_pos);
}
}
std::vector<std::string> tokens =
hatkirby::split<std::vector<std::string>>(post_content, " ");
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 = "@" + post["account"]["acct"].get<std::string>() + " " + action.compile();
mastodonpp::parametermap parameters{
{"status", result},
{"in_reply_to_id", post["id"].get<std::string>()}};
auto answer{connection.post(mastodonpp::API::v1::statuses, parameters)};
if (!answer)
{
if (answer.curl_error_code == 0)
{
std::cout << "HTTP status: " << answer.http_status << std::endl;
}
else
{
std::cout << "libcurl error " << std::to_string(answer.curl_error_code)
<< ": " << answer.error_message << std::endl;
}
}
}
}
}
}
}
} catch (const std::exception&)
{
// 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));
}
}
|