data.c 39 KB

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