data.c 56 KB

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