data.c 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707
  1. /* snac - A simple, minimalistic ActivityPub instance */
  2. /* copyright (c) 2022 - 2023 grunfink / MIT license */
  3. #include "xs.h"
  4. #include "xs_io.h"
  5. #include "xs_json.h"
  6. #include "xs_openssl.h"
  7. #include "xs_glob.h"
  8. #include "xs_set.h"
  9. #include "snac.h"
  10. #include <time.h>
  11. #include <sys/stat.h>
  12. #include <sys/file.h>
  13. #include <fcntl.h>
  14. #include <pthread.h>
  15. double disk_layout = 2.7;
  16. /* storage serializer */
  17. pthread_mutex_t data_mutex = {0};
  18. int snac_upgrade(d_char **error);
  19. int srv_open(char *basedir, int auto_upgrade)
  20. /* opens a server */
  21. {
  22. int ret = 0;
  23. xs *cfg_file = NULL;
  24. FILE *f;
  25. d_char *error = NULL;
  26. pthread_mutex_init(&data_mutex, NULL);
  27. srv_basedir = xs_str_new(basedir);
  28. if (xs_endswith(srv_basedir, "/"))
  29. srv_basedir = xs_crop_i(srv_basedir, 0, -1);
  30. cfg_file = xs_fmt("%s/server.json", basedir);
  31. if ((f = fopen(cfg_file, "r")) == NULL)
  32. error = xs_fmt("ERROR: cannot opening '%s'", cfg_file);
  33. else {
  34. xs *cfg_data;
  35. /* read full config file */
  36. cfg_data = xs_readall(f);
  37. fclose(f);
  38. /* parse */
  39. srv_config = xs_json_loads(cfg_data);
  40. if (srv_config == NULL)
  41. error = xs_fmt("ERROR: cannot parse '%s'", cfg_file);
  42. else {
  43. char *host;
  44. char *prefix;
  45. char *dbglvl;
  46. host = xs_dict_get(srv_config, "host");
  47. prefix = xs_dict_get(srv_config, "prefix");
  48. dbglvl = xs_dict_get(srv_config, "dbglevel");
  49. if (host == NULL || prefix == NULL)
  50. error = xs_str_new("ERROR: cannot get server data");
  51. else {
  52. srv_baseurl = xs_fmt("https://%s%s", host, prefix);
  53. dbglevel = (int) xs_number_get(dbglvl);
  54. if ((dbglvl = getenv("DEBUG")) != NULL) {
  55. dbglevel = atoi(dbglvl);
  56. error = xs_fmt("DEBUG level set to %d from environment", dbglevel);
  57. }
  58. if (auto_upgrade)
  59. ret = snac_upgrade(&error);
  60. else {
  61. if (xs_number_get(xs_dict_get(srv_config, "layout")) < disk_layout)
  62. error = xs_fmt("ERROR: disk layout changed - execute 'snac upgrade' first");
  63. else
  64. ret = 1;
  65. }
  66. }
  67. }
  68. }
  69. if (error != NULL)
  70. srv_log(error);
  71. /* create the queue/ subdir, just in case */
  72. xs *qdir = xs_fmt("%s/queue", srv_basedir);
  73. mkdirx(qdir);
  74. #ifdef __OpenBSD__
  75. char *v = xs_dict_get(srv_config, "disable_openbsd_security");
  76. if (v && xs_type(v) == XSTYPE_TRUE) {
  77. srv_debug(1, xs_dup("OpenBSD security disabled by admin"));
  78. }
  79. else {
  80. srv_debug(1, xs_fmt("Calling unveil()"));
  81. unveil(basedir, "rwc");
  82. unveil("/usr/sbin/sendmail", "x");
  83. unveil("/etc/resolv.conf", "r");
  84. unveil("/etc/hosts", "r");
  85. unveil("/etc/ssl/openssl.cnf", "r");
  86. unveil("/etc/ssl/cert.pem", "r");
  87. unveil("/usr/share/zoneinfo", "r");
  88. unveil(NULL, NULL);
  89. srv_debug(1, xs_fmt("Calling pledge()"));
  90. pledge("stdio rpath wpath cpath flock inet proc exec dns fattr", NULL);
  91. }
  92. #endif /* __OpenBSD__ */
  93. return ret;
  94. }
  95. void srv_free(void)
  96. {
  97. xs_free(srv_basedir);
  98. xs_free(srv_config);
  99. xs_free(srv_baseurl);
  100. pthread_mutex_destroy(&data_mutex);
  101. }
  102. void user_free(snac *snac)
  103. /* frees a user snac */
  104. {
  105. xs_free(snac->uid);
  106. xs_free(snac->basedir);
  107. xs_free(snac->config);
  108. xs_free(snac->config_o);
  109. xs_free(snac->key);
  110. xs_free(snac->actor);
  111. xs_free(snac->md5);
  112. }
  113. int user_open(snac *snac, const char *uid)
  114. /* opens a user */
  115. {
  116. int ret = 0;
  117. memset(snac, '\0', sizeof(struct _snac));
  118. if (validate_uid(uid)) {
  119. xs *cfg_file;
  120. FILE *f;
  121. snac->uid = xs_str_new(uid);
  122. snac->basedir = xs_fmt("%s/user/%s", srv_basedir, uid);
  123. cfg_file = xs_fmt("%s/user.json", snac->basedir);
  124. if ((f = fopen(cfg_file, "r")) != NULL) {
  125. xs *cfg_data;
  126. /* read full config file */
  127. cfg_data = xs_readall(f);
  128. fclose(f);
  129. if ((snac->config = xs_json_loads(cfg_data)) != NULL) {
  130. xs *key_file = xs_fmt("%s/key.json", snac->basedir);
  131. if ((f = fopen(key_file, "r")) != NULL) {
  132. xs *key_data;
  133. key_data = xs_readall(f);
  134. fclose(f);
  135. if ((snac->key = xs_json_loads(key_data)) != NULL) {
  136. snac->actor = xs_fmt("%s/%s", srv_baseurl, uid);
  137. snac->md5 = xs_md5_hex(snac->actor, strlen(snac->actor));
  138. /* everything is ok right now */
  139. ret = 1;
  140. /* does it have a configuration override? */
  141. xs *cfg_file_o = xs_fmt("%s/user_o.json", snac->basedir);
  142. if ((f = fopen(cfg_file_o, "r")) != NULL) {
  143. xs *j = xs_readall(f);
  144. fclose(f);
  145. if ((snac->config_o = xs_json_loads(j)) == NULL)
  146. srv_log(xs_fmt("error parsing '%s'", cfg_file_o));
  147. }
  148. if (snac->config_o == NULL)
  149. snac->config_o = xs_dict_new();
  150. }
  151. else
  152. srv_log(xs_fmt("error parsing '%s'", key_file));
  153. }
  154. else
  155. srv_log(xs_fmt("error opening '%s' %d", key_file, errno));
  156. }
  157. else
  158. srv_log(xs_fmt("error parsing '%s'", cfg_file));
  159. }
  160. else
  161. srv_debug(2, xs_fmt("error opening '%s' %d", cfg_file, errno));
  162. }
  163. else
  164. srv_debug(1, xs_fmt("invalid user '%s'", uid));
  165. if (!ret)
  166. user_free(snac);
  167. return ret;
  168. }
  169. d_char *user_list(void)
  170. /* returns the list of user ids */
  171. {
  172. xs *spec = xs_fmt("%s/user/" "*", srv_basedir);
  173. return xs_glob(spec, 1, 0);
  174. }
  175. double mtime_nl(const char *fn, int *n_link)
  176. /* returns the mtime and number of links of a file or directory, or 0.0 */
  177. {
  178. struct stat st;
  179. double r = 0.0;
  180. int n = 0;
  181. if (fn && stat(fn, &st) != -1) {
  182. r = (double) st.st_mtim.tv_sec;
  183. n = st.st_nlink;
  184. }
  185. if (n_link)
  186. *n_link = n;
  187. return r;
  188. }
  189. /** database 2.1+ **/
  190. /** indexes **/
  191. int index_add_md5(const char *fn, const char *md5)
  192. /* adds an md5 to an index */
  193. {
  194. int status = 201; /* Created */
  195. FILE *f;
  196. pthread_mutex_lock(&data_mutex);
  197. if ((f = fopen(fn, "a")) != NULL) {
  198. flock(fileno(f), LOCK_EX);
  199. /* ensure the position is at the end after getting the lock */
  200. fseek(f, 0, SEEK_END);
  201. fprintf(f, "%s\n", md5);
  202. fclose(f);
  203. }
  204. else
  205. status = 500;
  206. pthread_mutex_unlock(&data_mutex);
  207. return status;
  208. }
  209. int index_add(const char *fn, const char *id)
  210. /* adds an id to an index */
  211. {
  212. xs *md5 = xs_md5_hex(id, strlen(id));
  213. return index_add_md5(fn, md5);
  214. }
  215. int index_del_md5(const char *fn, const char *md5)
  216. /* deletes an md5 from an index */
  217. {
  218. int status = 404;
  219. FILE *i, *o;
  220. pthread_mutex_lock(&data_mutex);
  221. if ((i = fopen(fn, "r")) != NULL) {
  222. flock(fileno(i), LOCK_EX);
  223. xs *nfn = xs_fmt("%s.new", fn);
  224. char line[256];
  225. if ((o = fopen(nfn, "w")) != NULL) {
  226. while (fgets(line, sizeof(line), i) != NULL) {
  227. line[32] = '\0';
  228. if (memcmp(line, md5, 32) != 0)
  229. fprintf(o, "%s\n", line);
  230. }
  231. fclose(o);
  232. xs *ofn = xs_fmt("%s.bak", fn);
  233. unlink(ofn);
  234. link(fn, ofn);
  235. rename(nfn, fn);
  236. }
  237. else
  238. status = 500;
  239. fclose(i);
  240. }
  241. else
  242. status = 500;
  243. pthread_mutex_unlock(&data_mutex);
  244. return status;
  245. }
  246. int index_del(const char *fn, const char *id)
  247. /* deletes an id from an index */
  248. {
  249. xs *md5 = xs_md5_hex(id, strlen(id));
  250. return index_del_md5(fn, md5);
  251. }
  252. int index_in_md5(const char *fn, const char *md5)
  253. /* checks if the md5 is already in the index */
  254. {
  255. FILE *f;
  256. int ret = 0;
  257. if ((f = fopen(fn, "r")) != NULL) {
  258. flock(fileno(f), LOCK_SH);
  259. char line[256];
  260. while (!ret && fgets(line, sizeof(line), f) != NULL) {
  261. line[32] = '\0';
  262. if (strcmp(line, md5) == 0)
  263. ret = 1;
  264. }
  265. fclose(f);
  266. }
  267. return ret;
  268. }
  269. int index_in(const char *fn, const char *id)
  270. /* checks if the object id is already in the index */
  271. {
  272. xs *md5 = xs_md5_hex(id, strlen(id));
  273. return index_in_md5(fn, md5);
  274. }
  275. int index_first(const char *fn, char *line, int size)
  276. /* reads the first entry of an index */
  277. {
  278. FILE *f;
  279. int ret = 0;
  280. if ((f = fopen(fn, "r")) != NULL) {
  281. flock(fileno(f), LOCK_SH);
  282. if (fgets(line, size, f) != NULL) {
  283. line[32] = '\0';
  284. ret = 1;
  285. }
  286. fclose(f);
  287. }
  288. return ret;
  289. }
  290. int index_len(const char *fn)
  291. /* returns the number of elements in an index */
  292. {
  293. struct stat st;
  294. int len = 0;
  295. if (stat(fn, &st) != -1)
  296. len = st.st_size / 33;
  297. return len;
  298. }
  299. d_char *index_list(const char *fn, int max)
  300. /* returns an index as a list */
  301. {
  302. d_char *list = NULL;
  303. FILE *f;
  304. int n = 0;
  305. if ((f = fopen(fn, "r")) != NULL) {
  306. flock(fileno(f), LOCK_SH);
  307. char line[256];
  308. list = xs_list_new();
  309. while (n < max && fgets(line, sizeof(line), f) != NULL) {
  310. line[32] = '\0';
  311. list = xs_list_append(list, line);
  312. n++;
  313. }
  314. fclose(f);
  315. }
  316. return list;
  317. }
  318. d_char *index_list_desc(const char *fn, int skip, int show)
  319. /* returns an index as a list, in reverse order */
  320. {
  321. d_char *list = NULL;
  322. FILE *f;
  323. int n = 0;
  324. if ((f = fopen(fn, "r")) != NULL) {
  325. flock(fileno(f), LOCK_SH);
  326. char line[256];
  327. list = xs_list_new();
  328. /* move to the end minus one entry (or more, if skipping entries) */
  329. if (!fseek(f, 0, SEEK_END) && !fseek(f, (skip + 1) * -33, SEEK_CUR)) {
  330. while (n < show && fgets(line, sizeof(line), f) != NULL) {
  331. line[32] = '\0';
  332. list = xs_list_append(list, line);
  333. n++;
  334. /* move backwards 2 entries */
  335. if (fseek(f, -66, SEEK_CUR) == -1)
  336. break;
  337. }
  338. }
  339. fclose(f);
  340. }
  341. return list;
  342. }
  343. /** objects **/
  344. d_char *_object_fn_by_md5(const char *md5)
  345. {
  346. xs *bfn = xs_fmt("%s/object/%c%c", srv_basedir, md5[0], md5[1]);
  347. mkdirx(bfn);
  348. return xs_fmt("%s/%s.json", bfn, md5);
  349. }
  350. d_char *_object_fn(const char *id)
  351. {
  352. xs *md5 = xs_md5_hex(id, strlen(id));
  353. return _object_fn_by_md5(md5);
  354. }
  355. int object_here_by_md5(char *id)
  356. /* checks if an object is already downloaded */
  357. {
  358. xs *fn = _object_fn_by_md5(id);
  359. return mtime(fn) > 0.0;
  360. }
  361. int object_here(char *id)
  362. /* checks if an object is already downloaded */
  363. {
  364. xs *fn = _object_fn(id);
  365. return mtime(fn) > 0.0;
  366. }
  367. int object_get_by_md5(const char *md5, xs_dict **obj)
  368. /* returns a stored object, optionally of the requested type */
  369. {
  370. int status = 404;
  371. xs *fn = _object_fn_by_md5(md5);
  372. FILE *f;
  373. if ((f = fopen(fn, "r")) != NULL) {
  374. flock(fileno(f), LOCK_SH);
  375. xs *j = xs_readall(f);
  376. fclose(f);
  377. *obj = xs_json_loads(j);
  378. if (*obj)
  379. status = 200;
  380. }
  381. else
  382. *obj = NULL;
  383. return status;
  384. }
  385. int object_get(const char *id, xs_dict **obj)
  386. /* returns a stored object, optionally of the requested type */
  387. {
  388. xs *md5 = xs_md5_hex(id, strlen(id));
  389. return object_get_by_md5(md5, obj);
  390. }
  391. int _object_add(const char *id, d_char *obj, int ow)
  392. /* stores an object */
  393. {
  394. int status = 201; /* Created */
  395. xs *fn = _object_fn(id);
  396. FILE *f;
  397. if (!ow && mtime(fn) > 0.0) {
  398. /* object already here */
  399. srv_debug(1, xs_fmt("object_add object already here %s", id));
  400. return 204; /* No content */
  401. }
  402. if ((f = fopen(fn, "w")) != NULL) {
  403. flock(fileno(f), LOCK_EX);
  404. xs *j = xs_json_dumps_pp(obj, 4);
  405. fwrite(j, strlen(j), 1, f);
  406. fclose(f);
  407. /* does this object has a parent? */
  408. char *in_reply_to = xs_dict_get(obj, "inReplyTo");
  409. if (!xs_is_null(in_reply_to) && *in_reply_to) {
  410. /* update the children index of the parent */
  411. xs *c_idx = _object_fn(in_reply_to);
  412. if (mtime(c_idx) == 0.0)
  413. srv_debug(0, xs_fmt("object_add (warn) parent object not here %s", c_idx));
  414. c_idx = xs_replace_i(c_idx, ".json", "_c.idx");
  415. if (!index_in(c_idx, id)) {
  416. index_add(c_idx, id);
  417. srv_debug(1, xs_fmt("object_add added child %s to %s", id, c_idx));
  418. }
  419. else
  420. srv_debug(1, xs_fmt("object_add %s child already in %s", id, c_idx));
  421. /* create a one-element index with the parent */
  422. xs *p_idx = xs_replace(fn, ".json", "_p.idx");
  423. if (mtime(p_idx) == 0.0) {
  424. index_add(p_idx, in_reply_to);
  425. srv_debug(1, xs_fmt("object_add added parent %s to %s", in_reply_to, p_idx));
  426. }
  427. }
  428. }
  429. else {
  430. srv_log(xs_fmt("object_add error writing %s (errno: %d)", fn, errno));
  431. status = 500;
  432. }
  433. srv_debug(1, xs_fmt("object_add %s %s %d", id, fn, status));
  434. return status;
  435. }
  436. int object_add(const char *id, d_char *obj)
  437. /* stores an object */
  438. {
  439. return _object_add(id, obj, 0);
  440. }
  441. int object_add_ow(const char *id, d_char *obj)
  442. /* stores an object (overwriting allowed) */
  443. {
  444. return _object_add(id, obj, 1);
  445. }
  446. int object_del_by_md5(const char *md5)
  447. /* deletes an object by its md5 */
  448. {
  449. int status = 404;
  450. xs *fn = _object_fn_by_md5(md5);
  451. if (unlink(fn) != -1) {
  452. status = 200;
  453. /* also delete associated indexes */
  454. xs *spec = xs_dup(fn);
  455. spec = xs_replace_i(spec, ".json", "*.idx");
  456. xs *files = xs_glob(spec, 0, 0);
  457. char *p, *v;
  458. p = files;
  459. while (xs_list_iter(&p, &v)) {
  460. srv_debug(1, xs_fmt("object_del index %s", v));
  461. unlink(v);
  462. }
  463. }
  464. srv_debug(1, xs_fmt("object_del %s %d", fn, status));
  465. return status;
  466. }
  467. int object_del(const char *id)
  468. /* deletes an object */
  469. {
  470. xs *md5 = xs_md5_hex(id, strlen(id));
  471. return object_del_by_md5(md5);
  472. }
  473. int object_del_if_unref(const char *id)
  474. /* deletes an object if its n_links < 2 */
  475. {
  476. xs *fn = _object_fn(id);
  477. int n_links;
  478. int ret = 0;
  479. if (mtime_nl(fn, &n_links) > 0.0 && n_links < 2)
  480. ret = object_del(id);
  481. return ret;
  482. }
  483. d_char *_object_index_fn(const char *id, const char *idxsfx)
  484. /* returns the filename of an object's index */
  485. {
  486. d_char *fn = _object_fn(id);
  487. return xs_replace_i(fn, ".json", idxsfx);
  488. }
  489. int object_likes_len(const char *id)
  490. /* returns the number of likes (without reading the index) */
  491. {
  492. xs *fn = _object_index_fn(id, "_l.idx");
  493. return index_len(fn);
  494. }
  495. int object_announces_len(const char *id)
  496. /* returns the number of announces (without reading the index) */
  497. {
  498. xs *fn = _object_index_fn(id, "_a.idx");
  499. return index_len(fn);
  500. }
  501. d_char *object_children(const char *id)
  502. /* returns the list of an object's children */
  503. {
  504. xs *fn = _object_index_fn(id, "_c.idx");
  505. return index_list(fn, XS_ALL);
  506. }
  507. d_char *object_likes(const char *id)
  508. {
  509. xs *fn = _object_index_fn(id, "_l.idx");
  510. return index_list(fn, XS_ALL);
  511. }
  512. d_char *object_announces(const char *id)
  513. {
  514. xs *fn = _object_index_fn(id, "_a.idx");
  515. return index_list(fn, XS_ALL);
  516. }
  517. int object_parent(const char *id, char *buf, int size)
  518. /* returns the object parent, if any */
  519. {
  520. xs *fn = _object_fn_by_md5(id);
  521. fn = xs_replace_i(fn, ".json", "_p.idx");
  522. return index_first(fn, buf, size);
  523. }
  524. int object_admire(const char *id, const char *actor, int like)
  525. /* actor likes or announces this object */
  526. {
  527. int status = 200;
  528. xs *fn = _object_fn(id);
  529. fn = xs_replace_i(fn, ".json", like ? "_l.idx" : "_a.idx");
  530. if (!index_in(fn, actor)) {
  531. status = index_add(fn, actor);
  532. srv_debug(1, xs_fmt("object_admire (%s) %s %s", like ? "Like" : "Announce", actor, fn));
  533. }
  534. return status;
  535. }
  536. int _object_user_cache(snac *snac, const char *id, const char *cachedir, int del)
  537. /* adds or deletes from a user cache */
  538. {
  539. xs *ofn = _object_fn(id);
  540. xs *l = xs_split(ofn, "/");
  541. xs *cfn = xs_fmt("%s/%s/%s", snac->basedir, cachedir, xs_list_get(l, -1));
  542. xs *idx = xs_fmt("%s/%s.idx", snac->basedir, cachedir);
  543. int ret;
  544. if (del) {
  545. if ((ret = unlink(cfn)) != -1)
  546. index_del(idx, id);
  547. }
  548. else {
  549. if ((ret = link(ofn, cfn)) != -1)
  550. index_add(idx, id);
  551. }
  552. return ret;
  553. }
  554. int object_user_cache_add(snac *snac, const char *id, const char *cachedir)
  555. /* caches an object into a user cache */
  556. {
  557. return _object_user_cache(snac, id, cachedir, 0);
  558. }
  559. int object_user_cache_del(snac *snac, const char *id, const char *cachedir)
  560. /* deletes an object from a user cache */
  561. {
  562. return _object_user_cache(snac, id, cachedir, 1);
  563. }
  564. int object_user_cache_in(snac *snac, const char *id, const char *cachedir)
  565. /* checks if an object is stored in a cache */
  566. {
  567. xs *md5 = xs_md5_hex(id, strlen(id));
  568. xs *cfn = xs_fmt("%s/%s/%s.json", snac->basedir, cachedir, md5);
  569. return !!(mtime(cfn) != 0.0);
  570. }
  571. d_char *object_user_cache_list(snac *snac, const char *cachedir, int max)
  572. /* returns the objects in a cache as a list */
  573. {
  574. xs *idx = xs_fmt("%s/%s.idx", snac->basedir, cachedir);
  575. return index_list(idx, max);
  576. }
  577. /** specialized functions **/
  578. /** followers **/
  579. int follower_add(snac *snac, const char *actor)
  580. /* adds a follower */
  581. {
  582. int ret = object_user_cache_add(snac, actor, "followers");
  583. snac_debug(snac, 2, xs_fmt("follower_add %s", actor));
  584. return ret == -1 ? 500 : 200;
  585. }
  586. int follower_del(snac *snac, const char *actor)
  587. /* deletes a follower */
  588. {
  589. int ret = object_user_cache_del(snac, actor, "followers");
  590. snac_debug(snac, 2, xs_fmt("follower_del %s", actor));
  591. return ret == -1 ? 404 : 200;
  592. }
  593. int follower_check(snac *snac, const char *actor)
  594. /* checks if someone is a follower */
  595. {
  596. return object_user_cache_in(snac, actor, "followers");
  597. }
  598. d_char *follower_list(snac *snac)
  599. /* returns the list of followers */
  600. {
  601. xs *list = object_user_cache_list(snac, "followers", XS_ALL);
  602. d_char *fwers = xs_list_new();
  603. char *p, *v;
  604. /* resolve the list of md5 to be a list of actors */
  605. p = list;
  606. while (xs_list_iter(&p, &v)) {
  607. xs *a_obj = NULL;
  608. if (valid_status(object_get_by_md5(v, &a_obj))) {
  609. char *actor = xs_dict_get(a_obj, "id");
  610. if (!xs_is_null(actor))
  611. fwers = xs_list_append(fwers, actor);
  612. }
  613. }
  614. return fwers;
  615. }
  616. /** timeline **/
  617. double timeline_mtime(snac *snac)
  618. {
  619. xs *fn = xs_fmt("%s/private.idx", snac->basedir);
  620. return mtime(fn);
  621. }
  622. xs_str *timeline_fn_by_md5(snac *snac, const char *md5)
  623. /* get the filename of an entry by md5 from any timeline */
  624. {
  625. xs_str *fn = xs_fmt("%s/private/%s.json", snac->basedir, md5);
  626. if (mtime(fn) == 0.0) {
  627. fn = xs_free(fn);
  628. fn = xs_fmt("%s/public/%s.json", snac->basedir, md5);
  629. if (mtime(fn) == 0.0)
  630. fn = xs_free(fn);
  631. }
  632. return fn;
  633. }
  634. int timeline_here(snac *snac, const char *md5)
  635. /* checks if an object is in the user cache */
  636. {
  637. xs *fn = timeline_fn_by_md5(snac, md5);
  638. return !(fn == NULL);
  639. }
  640. int timeline_get_by_md5(snac *snac, const char *md5, xs_dict **msg)
  641. /* gets a message from the timeline */
  642. {
  643. int status = 404;
  644. FILE *f = NULL;
  645. xs *fn = timeline_fn_by_md5(snac, md5);
  646. if (fn != NULL && (f = fopen(fn, "r")) != NULL) {
  647. flock(fileno(f), LOCK_SH);
  648. xs *j = xs_readall(f);
  649. fclose(f);
  650. if ((*msg = xs_json_loads(j)) != NULL)
  651. status = 200;
  652. }
  653. return status;
  654. }
  655. int timeline_del(snac *snac, char *id)
  656. /* deletes a message from the timeline */
  657. {
  658. /* delete from the user's caches */
  659. object_user_cache_del(snac, id, "public");
  660. object_user_cache_del(snac, id, "private");
  661. /* try to delete the object if it's not used elsewhere */
  662. return object_del_if_unref(id);
  663. }
  664. void timeline_update_indexes(snac *snac, const char *id)
  665. /* updates the indexes */
  666. {
  667. object_user_cache_add(snac, id, "private");
  668. if (xs_startswith(id, snac->actor)) {
  669. xs *msg = NULL;
  670. if (valid_status(object_get(id, &msg))) {
  671. /* if its ours and is public, also store in public */
  672. if (is_msg_public(snac, msg))
  673. object_user_cache_add(snac, id, "public");
  674. }
  675. }
  676. }
  677. int timeline_add(snac *snac, char *id, char *o_msg)
  678. /* adds a message to the timeline */
  679. {
  680. int ret = object_add(id, o_msg);
  681. timeline_update_indexes(snac, id);
  682. snac_debug(snac, 1, xs_fmt("timeline_add %s", id));
  683. return ret;
  684. }
  685. void timeline_admire(snac *snac, char *id, char *admirer, int like)
  686. /* updates a timeline entry with a new admiration */
  687. {
  688. /* if we are admiring this, add to both timelines */
  689. if (!like && strcmp(admirer, snac->actor) == 0) {
  690. object_user_cache_add(snac, id, "public");
  691. object_user_cache_add(snac, id, "private");
  692. }
  693. object_admire(id, admirer, like);
  694. snac_debug(snac, 1, xs_fmt("timeline_admire (%s) %s %s",
  695. like ? "Like" : "Announce", id, admirer));
  696. }
  697. xs_list *timeline_top_level(snac *snac, xs_list *list)
  698. /* returns the top level md5 entries from this index */
  699. {
  700. xs_set seen;
  701. xs_list *p;
  702. xs_str *v;
  703. xs_set_init(&seen);
  704. p = list;
  705. while (xs_list_iter(&p, &v)) {
  706. char line[256] = "";
  707. strcpy(line, v);
  708. for (;;) {
  709. char line2[256];
  710. /* if it doesn't have a parent, use this */
  711. if (!object_parent(line, line2, sizeof(line2)))
  712. break;
  713. /* well, there is a parent... but is it here? */
  714. if (!timeline_here(snac, line2))
  715. break;
  716. /* it's here! try again with its own parent */
  717. strcpy(line, line2);
  718. }
  719. xs_set_add(&seen, line);
  720. }
  721. return xs_set_result(&seen);
  722. }
  723. d_char *timeline_simple_list(snac *snac, const char *idx_name, int skip, int show)
  724. /* returns a timeline (with all entries) */
  725. {
  726. int c_max;
  727. /* maximum number of items in the timeline */
  728. c_max = xs_number_get(xs_dict_get(srv_config, "max_timeline_entries"));
  729. /* never more timeline entries than the configured maximum */
  730. if (show > c_max)
  731. show = c_max;
  732. xs *idx = xs_fmt("%s/%s.idx", snac->basedir, idx_name);
  733. return index_list_desc(idx, skip, show);
  734. }
  735. d_char *timeline_list(snac *snac, const char *idx_name, int skip, int show)
  736. /* returns a timeline (only top level entries) */
  737. {
  738. xs *list = timeline_simple_list(snac, idx_name, skip, show);
  739. return timeline_top_level(snac, list);
  740. }
  741. /** following **/
  742. /* this needs special treatment and cannot use the object db as is,
  743. with a link to a cached author, because we need the Follow object
  744. in case we need to unfollow (Undo + original Follow) */
  745. d_char *_following_fn(snac *snac, char *actor)
  746. {
  747. xs *md5 = xs_md5_hex(actor, strlen(actor));
  748. return xs_fmt("%s/following/%s.json", snac->basedir, md5);
  749. }
  750. int following_add(snac *snac, char *actor, char *msg)
  751. /* adds to the following list */
  752. {
  753. int ret = 201; /* created */
  754. xs *fn = _following_fn(snac, actor);
  755. FILE *f;
  756. if ((f = fopen(fn, "w")) != NULL) {
  757. xs *j = xs_json_dumps_pp(msg, 4);
  758. fwrite(j, 1, strlen(j), f);
  759. fclose(f);
  760. }
  761. else
  762. ret = 500;
  763. snac_debug(snac, 2, xs_fmt("following_add %s %s", actor, fn));
  764. return ret;
  765. }
  766. int following_del(snac *snac, char *actor)
  767. /* we're not following this actor any longer */
  768. {
  769. xs *fn = _following_fn(snac, actor);
  770. unlink(fn);
  771. snac_debug(snac, 2, xs_fmt("following_del %s %s", actor, fn));
  772. return 200;
  773. }
  774. int following_check(snac *snac, char *actor)
  775. /* checks if we are following this actor */
  776. {
  777. xs *fn = _following_fn(snac, actor);
  778. return !!(mtime(fn) != 0.0);
  779. }
  780. int following_get(snac *snac, char *actor, d_char **data)
  781. /* returns the 'Follow' object */
  782. {
  783. xs *fn = _following_fn(snac, actor);
  784. FILE *f;
  785. int status = 200;
  786. if ((f = fopen(fn, "r")) != NULL) {
  787. xs *j = xs_readall(f);
  788. fclose(f);
  789. *data = xs_json_loads(j);
  790. }
  791. else
  792. status = 404;
  793. return status;
  794. }
  795. d_char *following_list(snac *snac)
  796. /* returns the list of people being followed */
  797. {
  798. xs *spec = xs_fmt("%s/following/" "*.json", snac->basedir);
  799. xs *glist = xs_glob(spec, 0, 0);
  800. char *p, *v;
  801. d_char *list = xs_list_new();
  802. /* iterate the list of files */
  803. p = glist;
  804. while (xs_list_iter(&p, &v)) {
  805. FILE *f;
  806. /* load the follower data */
  807. if ((f = fopen(v, "r")) != NULL) {
  808. xs *j = xs_readall(f);
  809. fclose(f);
  810. if (j != NULL) {
  811. xs *o = xs_json_loads(j);
  812. if (o != NULL) {
  813. char *type = xs_dict_get(o, "type");
  814. if (!xs_is_null(type) && strcmp(type, "Accept") == 0) {
  815. char *actor = xs_dict_get(o, "actor");
  816. if (!xs_is_null(actor))
  817. list = xs_list_append(list, actor);
  818. }
  819. }
  820. }
  821. }
  822. }
  823. return list;
  824. }
  825. d_char *_muted_fn(snac *snac, char *actor)
  826. {
  827. xs *md5 = xs_md5_hex(actor, strlen(actor));
  828. return xs_fmt("%s/muted/%s", snac->basedir, md5);
  829. }
  830. void mute(snac *snac, char *actor)
  831. /* mutes a moron */
  832. {
  833. xs *fn = _muted_fn(snac, actor);
  834. FILE *f;
  835. if ((f = fopen(fn, "w")) != NULL) {
  836. fprintf(f, "%s\n", actor);
  837. fclose(f);
  838. snac_debug(snac, 2, xs_fmt("muted %s %s", actor, fn));
  839. }
  840. }
  841. void unmute(snac *snac, char *actor)
  842. /* actor is no longer a moron */
  843. {
  844. xs *fn = _muted_fn(snac, actor);
  845. unlink(fn);
  846. snac_debug(snac, 2, xs_fmt("unmuted %s %s", actor, fn));
  847. }
  848. int is_muted(snac *snac, char *actor)
  849. /* check if someone is muted */
  850. {
  851. xs *fn = _muted_fn(snac, actor);
  852. return !!(mtime(fn) != 0.0);
  853. }
  854. d_char *_hidden_fn(snac *snac, const char *id)
  855. {
  856. xs *md5 = xs_md5_hex(id, strlen(id));
  857. return xs_fmt("%s/hidden/%s", snac->basedir, md5);
  858. }
  859. void hide(snac *snac, const char *id)
  860. /* hides a message tree */
  861. {
  862. xs *fn = _hidden_fn(snac, id);
  863. FILE *f;
  864. if ((f = fopen(fn, "w")) != NULL) {
  865. fprintf(f, "%s\n", id);
  866. fclose(f);
  867. snac_debug(snac, 2, xs_fmt("hidden %s %s", id, fn));
  868. /* hide all the children */
  869. xs *chld = object_children(id);
  870. char *p, *v;
  871. p = chld;
  872. while (xs_list_iter(&p, &v)) {
  873. xs *co = NULL;
  874. /* resolve to get the id */
  875. if (valid_status(object_get_by_md5(v, &co))) {
  876. if ((v = xs_dict_get(co, "id")) != NULL)
  877. hide(snac, v);
  878. }
  879. }
  880. }
  881. }
  882. int is_hidden(snac *snac, const char *id)
  883. /* check is id is hidden */
  884. {
  885. xs *fn = _hidden_fn(snac, id);
  886. return !!(mtime(fn) != 0.0);
  887. }
  888. int actor_add(snac *snac, const char *actor, d_char *msg)
  889. /* adds an actor */
  890. {
  891. return object_add_ow(actor, msg);
  892. }
  893. int actor_get(snac *snac, const char *actor, d_char **data)
  894. /* returns an already downloaded actor */
  895. {
  896. int status = 200;
  897. d_char *d;
  898. if (strcmp(actor, snac->actor) == 0) {
  899. /* this actor */
  900. if (data)
  901. *data = msg_actor(snac);
  902. return status;
  903. }
  904. /* read the object */
  905. if (!valid_status(status = object_get(actor, &d)))
  906. return status;
  907. if (data)
  908. *data = d;
  909. else
  910. d = xs_free(d);
  911. xs *fn = _object_fn(actor);
  912. double max_time;
  913. /* maximum time for the actor data to be considered stale */
  914. max_time = 3600.0 * 36.0;
  915. if (mtime(fn) + max_time < (double) time(NULL)) {
  916. /* actor data exists but also stinks */
  917. FILE *f;
  918. if ((f = fopen(fn, "a")) != NULL) {
  919. /* write a blank at the end to 'touch' the file */
  920. fwrite(" ", 1, 1, f);
  921. fclose(f);
  922. }
  923. status = 205; /* "205: Reset Content" "110: Response Is Stale" */
  924. }
  925. return status;
  926. }
  927. d_char *_static_fn(snac *snac, const char *id)
  928. /* gets the filename for a static file */
  929. {
  930. return xs_fmt("%s/static/%s", snac->basedir, id);
  931. }
  932. int static_get(snac *snac, const char *id, d_char **data, int *size)
  933. /* returns static content */
  934. {
  935. xs *fn = _static_fn(snac, id);
  936. FILE *f;
  937. int status = 404;
  938. *size = XS_ALL;
  939. if ((f = fopen(fn, "rb")) != NULL) {
  940. *data = xs_read(f, size);
  941. fclose(f);
  942. status = 200;
  943. }
  944. return status;
  945. }
  946. void static_put(snac *snac, const char *id, const char *data, int size)
  947. /* writes status content */
  948. {
  949. xs *fn = _static_fn(snac, id);
  950. FILE *f;
  951. if ((f = fopen(fn, "wb")) != NULL) {
  952. fwrite(data, size, 1, f);
  953. fclose(f);
  954. }
  955. }
  956. d_char *_history_fn(snac *snac, char *id)
  957. /* gets the filename for the history */
  958. {
  959. return xs_fmt("%s/history/%s", snac->basedir, id);
  960. }
  961. double history_mtime(snac *snac, char * id)
  962. {
  963. double t = 0.0;
  964. xs *fn = _history_fn(snac, id);
  965. if (fn != NULL)
  966. t = mtime(fn);
  967. return t;
  968. }
  969. void history_add(snac *snac, char *id, char *content, int size)
  970. /* adds something to the history */
  971. {
  972. xs *fn = _history_fn(snac, id);
  973. FILE *f;
  974. if ((f = fopen(fn, "w")) != NULL) {
  975. fwrite(content, size, 1, f);
  976. fclose(f);
  977. }
  978. }
  979. d_char *history_get(snac *snac, char *id)
  980. {
  981. d_char *content = NULL;
  982. xs *fn = _history_fn(snac, id);
  983. FILE *f;
  984. if ((f = fopen(fn, "r")) != NULL) {
  985. content = xs_readall(f);
  986. fclose(f);
  987. }
  988. return content;
  989. }
  990. int history_del(snac *snac, char *id)
  991. {
  992. xs *fn = _history_fn(snac, id);
  993. return unlink(fn);
  994. }
  995. d_char *history_list(snac *snac)
  996. {
  997. xs *spec = xs_fmt("%s/history/" "*.html", snac->basedir);
  998. return xs_glob(spec, 1, 0);
  999. }
  1000. /** the queue **/
  1001. static xs_dict *_enqueue_put(const char *fn, xs_dict *msg)
  1002. /* writes safely to the queue */
  1003. {
  1004. xs *tfn = xs_fmt("%s.tmp", fn);
  1005. FILE *f;
  1006. if ((f = fopen(tfn, "w")) != NULL) {
  1007. xs *j = xs_json_dumps_pp(msg, 4);
  1008. fwrite(j, strlen(j), 1, f);
  1009. fclose(f);
  1010. rename(tfn, fn);
  1011. }
  1012. return msg;
  1013. }
  1014. static xs_dict *_new_qmsg(const char *type, const xs_val *msg, int retries)
  1015. /* creates a queue message */
  1016. {
  1017. int qrt = xs_number_get(xs_dict_get(srv_config, "queue_retry_minutes"));
  1018. xs *ntid = tid(retries * 60 * qrt);
  1019. xs *rn = xs_number_new(retries);
  1020. xs_dict *qmsg = xs_dict_new();
  1021. qmsg = xs_dict_append(qmsg, "type", type);
  1022. qmsg = xs_dict_append(qmsg, "message", msg);
  1023. qmsg = xs_dict_append(qmsg, "retries", rn);
  1024. qmsg = xs_dict_append(qmsg, "ntid", ntid);
  1025. return qmsg;
  1026. }
  1027. void enqueue_input(snac *snac, xs_dict *msg, xs_dict *req, int retries)
  1028. /* enqueues an input message */
  1029. {
  1030. xs *qmsg = _new_qmsg("input", msg, retries);
  1031. char *ntid = xs_dict_get(qmsg, "ntid");
  1032. xs *fn = xs_fmt("%s/queue/%s.json", snac->basedir, ntid);
  1033. qmsg = xs_dict_append(qmsg, "req", req);
  1034. qmsg = _enqueue_put(fn, qmsg);
  1035. snac_debug(snac, 1, xs_fmt("enqueue_input %s", fn));
  1036. }
  1037. void enqueue_output_raw(const char *keyid, const char *seckey,
  1038. xs_dict *msg, xs_str *inbox, int retries)
  1039. /* enqueues an output message to an inbox */
  1040. {
  1041. xs *qmsg = _new_qmsg("output", msg, retries);
  1042. char *ntid = xs_dict_get(qmsg, "ntid");
  1043. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1044. qmsg = xs_dict_append(qmsg, "inbox", inbox);
  1045. qmsg = xs_dict_append(qmsg, "keyid", keyid);
  1046. qmsg = xs_dict_append(qmsg, "seckey", seckey);
  1047. /* if it's to be sent right now, bypass the disk queue and post the job */
  1048. if (retries == 0 && job_fifo_ready())
  1049. job_post(qmsg);
  1050. else {
  1051. qmsg = _enqueue_put(fn, qmsg);
  1052. srv_debug(1, xs_fmt("enqueue_output %s %s %d", inbox, fn, retries));
  1053. }
  1054. }
  1055. void enqueue_output(snac *snac, xs_dict *msg, xs_str *inbox, int retries)
  1056. /* enqueues an output message to an inbox */
  1057. {
  1058. if (xs_startswith(inbox, snac->actor)) {
  1059. snac_debug(snac, 1, xs_str_new("refusing enqueue to myself"));
  1060. return;
  1061. }
  1062. char *seckey = xs_dict_get(snac->key, "secret");
  1063. enqueue_output_raw(snac->actor, seckey, msg, inbox, retries);
  1064. }
  1065. void enqueue_output_by_actor(snac *snac, xs_dict *msg, xs_str *actor, int retries)
  1066. /* enqueues an output message for an actor */
  1067. {
  1068. xs *inbox = get_actor_inbox(snac, actor);
  1069. if (!xs_is_null(inbox))
  1070. enqueue_output(snac, msg, inbox, retries);
  1071. else
  1072. snac_log(snac, xs_fmt("enqueue_output_by_actor cannot get inbox %s", actor));
  1073. }
  1074. void enqueue_email(xs_str *msg, int retries)
  1075. /* enqueues an email message to be sent */
  1076. {
  1077. xs *qmsg = _new_qmsg("email", msg, retries);
  1078. char *ntid = xs_dict_get(qmsg, "ntid");
  1079. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1080. qmsg = _enqueue_put(fn, qmsg);
  1081. srv_debug(1, xs_fmt("enqueue_email %d", retries));
  1082. }
  1083. void enqueue_telegram(const xs_str *msg, const char *bot, const char *chat_id)
  1084. /* enqueues a message to be sent via Telegram */
  1085. {
  1086. xs *qmsg = _new_qmsg("telegram", msg, 0);
  1087. char *ntid = xs_dict_get(qmsg, "ntid");
  1088. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1089. qmsg = xs_dict_append(qmsg, "bot", bot);
  1090. qmsg = xs_dict_append(qmsg, "chat_id", chat_id);
  1091. qmsg = _enqueue_put(fn, qmsg);
  1092. srv_debug(1, xs_fmt("enqueue_email %s %s", bot, chat_id));
  1093. }
  1094. void enqueue_message(snac *snac, xs_dict *msg)
  1095. /* enqueues an output message */
  1096. {
  1097. xs *qmsg = _new_qmsg("message", msg, 0);
  1098. char *ntid = xs_dict_get(qmsg, "ntid");
  1099. xs *fn = xs_fmt("%s/queue/%s.json", snac->basedir, ntid);
  1100. qmsg = _enqueue_put(fn, qmsg);
  1101. snac_debug(snac, 0, xs_fmt("enqueue_message %s", xs_dict_get(msg, "id")));
  1102. }
  1103. xs_list *user_queue(snac *snac)
  1104. /* returns a list with filenames that can be dequeued */
  1105. {
  1106. xs *spec = xs_fmt("%s/queue/" "*.json", snac->basedir);
  1107. xs_list *list = xs_list_new();
  1108. time_t t = time(NULL);
  1109. xs_list *p;
  1110. xs_val *v;
  1111. xs *fns = xs_glob(spec, 0, 0);
  1112. p = fns;
  1113. while (xs_list_iter(&p, &v)) {
  1114. /* get the retry time from the basename */
  1115. char *bn = strrchr(v, '/');
  1116. time_t t2 = atol(bn + 1);
  1117. if (t2 > t)
  1118. snac_debug(snac, 2, xs_fmt("user_queue not yet time for %s [%ld]", v, t));
  1119. else {
  1120. list = xs_list_append(list, v);
  1121. snac_debug(snac, 2, xs_fmt("user_queue ready for %s", v));
  1122. }
  1123. }
  1124. return list;
  1125. }
  1126. xs_list *queue(void)
  1127. /* returns a list with filenames that can be dequeued */
  1128. {
  1129. xs *spec = xs_fmt("%s/queue/" "*.json", srv_basedir);
  1130. xs_list *list = xs_list_new();
  1131. time_t t = time(NULL);
  1132. xs_list *p;
  1133. xs_val *v;
  1134. xs *fns = xs_glob(spec, 0, 0);
  1135. p = fns;
  1136. while (xs_list_iter(&p, &v)) {
  1137. /* get the retry time from the basename */
  1138. char *bn = strrchr(v, '/');
  1139. time_t t2 = atol(bn + 1);
  1140. if (t2 > t)
  1141. srv_debug(2, xs_fmt("queue not yet time for %s [%ld]", v, t));
  1142. else {
  1143. list = xs_list_append(list, v);
  1144. srv_debug(2, xs_fmt("queue ready for %s", v));
  1145. }
  1146. }
  1147. return list;
  1148. }
  1149. xs_dict *dequeue(const char *fn)
  1150. /* dequeues a message */
  1151. {
  1152. FILE *f;
  1153. xs_dict *obj = NULL;
  1154. if ((f = fopen(fn, "r")) != NULL) {
  1155. /* delete right now */
  1156. unlink(fn);
  1157. xs *j = xs_readall(f);
  1158. obj = xs_json_loads(j);
  1159. fclose(f);
  1160. }
  1161. return obj;
  1162. }
  1163. /** the purge **/
  1164. static void _purge_file(const char *fn, time_t mt)
  1165. /* purge fn if it's older than days */
  1166. {
  1167. if (mtime(fn) < mt) {
  1168. /* older than the minimum time: delete it */
  1169. unlink(fn);
  1170. srv_debug(1, xs_fmt("purged %s", fn));
  1171. }
  1172. }
  1173. static void _purge_subdir(snac *snac, const char *subdir, int days)
  1174. /* purges all files in subdir older than days */
  1175. {
  1176. if (days) {
  1177. time_t mt = time(NULL) - days * 24 * 3600;
  1178. xs *spec = xs_fmt("%s/%s/" "*", snac->basedir, subdir);
  1179. xs *list = xs_glob(spec, 0, 0);
  1180. char *p, *v;
  1181. p = list;
  1182. while (xs_list_iter(&p, &v))
  1183. _purge_file(v, mt);
  1184. }
  1185. }
  1186. void purge_server(void)
  1187. /* purge global server data */
  1188. {
  1189. xs *spec = xs_fmt("%s/object/??", srv_basedir);
  1190. xs *dirs = xs_glob(spec, 0, 0);
  1191. char *p, *v;
  1192. time_t mt = time(NULL) - 7 * 24 * 3600;
  1193. p = dirs;
  1194. while (xs_list_iter(&p, &v)) {
  1195. xs *spec2 = xs_fmt("%s/" "*.json", v);
  1196. xs *files = xs_glob(spec2, 0, 0);
  1197. char *p2, *v2;
  1198. p2 = files;
  1199. while (xs_list_iter(&p2, &v2)) {
  1200. int n_link;
  1201. /* old and with no hard links? */
  1202. if (mtime_nl(v2, &n_link) < mt && n_link < 2) {
  1203. xs *s1 = xs_replace(v2, ".json", "");
  1204. xs *l = xs_split(s1, "/");
  1205. char *md5 = xs_list_get(l, -1);
  1206. object_del_by_md5(md5);
  1207. }
  1208. }
  1209. }
  1210. }
  1211. void purge_user(snac *snac)
  1212. /* do the purge for this user */
  1213. {
  1214. int priv_days, pub_days, user_days = 0;
  1215. char *v;
  1216. priv_days = xs_number_get(xs_dict_get(srv_config, "timeline_purge_days"));
  1217. pub_days = xs_number_get(xs_dict_get(srv_config, "local_purge_days"));
  1218. if ((v = xs_dict_get(snac->config_o, "purge_days")) != NULL ||
  1219. (v = xs_dict_get(snac->config, "purge_days")) != NULL)
  1220. user_days = xs_number_get(v);
  1221. if (user_days) {
  1222. /* override admin settings only if they are lesser */
  1223. if (priv_days == 0 || user_days < priv_days)
  1224. priv_days = user_days;
  1225. if (pub_days == 0 || user_days < pub_days)
  1226. pub_days = user_days;
  1227. }
  1228. _purge_subdir(snac, "hidden", priv_days);
  1229. _purge_subdir(snac, "private", priv_days);
  1230. _purge_subdir(snac, "public", pub_days);
  1231. }
  1232. void purge_all(void)
  1233. /* purge all users */
  1234. {
  1235. snac snac;
  1236. xs *list = user_list();
  1237. char *p, *uid;
  1238. p = list;
  1239. while (xs_list_iter(&p, &uid)) {
  1240. if (user_open(&snac, uid)) {
  1241. purge_user(&snac);
  1242. user_free(&snac);
  1243. }
  1244. }
  1245. purge_server();
  1246. }