data.c 48 KB

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