data.c 33 KB

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