data.c 38 KB

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