data.c 38 KB

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