data.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433
  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. xs_str *_object_fn_by_md5(const char *md5)
  401. {
  402. if (!xs_is_hex(md5))
  403. srv_log(xs_fmt("_object_fn_by_md5(): '%s' not hex", md5));
  404. xs *bfn = xs_fmt("%s/object/%c%c", srv_basedir, md5[0], md5[1]);
  405. mkdirx(bfn);
  406. return xs_fmt("%s/%s.json", bfn, md5);
  407. }
  408. xs_str *_object_fn(const char *id)
  409. {
  410. xs *md5 = xs_md5_hex(id, strlen(id));
  411. return _object_fn_by_md5(md5);
  412. }
  413. int object_here_by_md5(const char *id)
  414. /* checks if an object is already downloaded */
  415. {
  416. xs *fn = _object_fn_by_md5(id);
  417. return mtime(fn) > 0.0;
  418. }
  419. int object_here(const char *id)
  420. /* checks if an object is already downloaded */
  421. {
  422. xs *fn = _object_fn(id);
  423. return mtime(fn) > 0.0;
  424. }
  425. int object_get_by_md5(const char *md5, xs_dict **obj)
  426. /* returns a stored object, optionally of the requested type */
  427. {
  428. int status = 404;
  429. xs *fn = _object_fn_by_md5(md5);
  430. FILE *f;
  431. if ((f = fopen(fn, "r")) != NULL) {
  432. flock(fileno(f), LOCK_SH);
  433. xs *j = xs_readall(f);
  434. fclose(f);
  435. *obj = xs_json_loads(j);
  436. if (*obj)
  437. status = 200;
  438. }
  439. else
  440. *obj = NULL;
  441. return status;
  442. }
  443. int object_get(const char *id, xs_dict **obj)
  444. /* returns a stored object, optionally of the requested type */
  445. {
  446. xs *md5 = xs_md5_hex(id, strlen(id));
  447. return object_get_by_md5(md5, obj);
  448. }
  449. int _object_add(const char *id, const xs_dict *obj, int ow)
  450. /* stores an object */
  451. {
  452. int status = 201; /* Created */
  453. xs *fn = _object_fn(id);
  454. FILE *f;
  455. if (!ow && mtime(fn) > 0.0) {
  456. /* object already here */
  457. srv_debug(1, xs_fmt("object_add object already here %s", id));
  458. return 204; /* No content */
  459. }
  460. if ((f = fopen(fn, "w")) != NULL) {
  461. flock(fileno(f), LOCK_EX);
  462. xs *j = xs_json_dumps_pp(obj, 4);
  463. fwrite(j, strlen(j), 1, f);
  464. fclose(f);
  465. /* does this object has a parent? */
  466. char *in_reply_to = xs_dict_get(obj, "inReplyTo");
  467. if (!xs_is_null(in_reply_to) && *in_reply_to) {
  468. /* update the children index of the parent */
  469. xs *c_idx = _object_fn(in_reply_to);
  470. c_idx = xs_replace_i(c_idx, ".json", "_c.idx");
  471. if (!index_in(c_idx, id)) {
  472. index_add(c_idx, id);
  473. srv_debug(1, xs_fmt("object_add added child %s to %s", id, c_idx));
  474. }
  475. else
  476. srv_debug(1, xs_fmt("object_add %s child already in %s", id, c_idx));
  477. /* create a one-element index with the parent */
  478. xs *p_idx = xs_replace(fn, ".json", "_p.idx");
  479. if (mtime(p_idx) == 0.0) {
  480. index_add(p_idx, in_reply_to);
  481. srv_debug(1, xs_fmt("object_add added parent %s to %s", in_reply_to, p_idx));
  482. }
  483. }
  484. }
  485. else {
  486. srv_log(xs_fmt("object_add error writing %s (errno: %d)", fn, errno));
  487. status = 500;
  488. }
  489. srv_debug(1, xs_fmt("object_add %s %s %d", id, fn, status));
  490. return status;
  491. }
  492. int object_add(const char *id, const xs_dict *obj)
  493. /* stores an object */
  494. {
  495. return _object_add(id, obj, 0);
  496. }
  497. int object_add_ow(const char *id, const xs_dict *obj)
  498. /* stores an object (overwriting allowed) */
  499. {
  500. return _object_add(id, obj, 1);
  501. }
  502. int object_del_by_md5(const char *md5)
  503. /* deletes an object by its md5 */
  504. {
  505. int status = 404;
  506. xs *fn = _object_fn_by_md5(md5);
  507. if (unlink(fn) != -1) {
  508. status = 200;
  509. /* also delete associated indexes */
  510. xs *spec = xs_dup(fn);
  511. spec = xs_replace_i(spec, ".json", "*.idx");
  512. xs *files = xs_glob(spec, 0, 0);
  513. char *p, *v;
  514. p = files;
  515. while (xs_list_iter(&p, &v)) {
  516. srv_debug(1, xs_fmt("object_del index %s", v));
  517. unlink(v);
  518. }
  519. }
  520. srv_debug(1, xs_fmt("object_del %s %d", fn, status));
  521. return status;
  522. }
  523. int object_del(const char *id)
  524. /* deletes an object */
  525. {
  526. xs *md5 = xs_md5_hex(id, strlen(id));
  527. return object_del_by_md5(md5);
  528. }
  529. int object_del_if_unref(const char *id)
  530. /* deletes an object if its n_links < 2 */
  531. {
  532. xs *fn = _object_fn(id);
  533. int n_links;
  534. int ret = 0;
  535. if (mtime_nl(fn, &n_links) > 0.0 && n_links < 2)
  536. ret = object_del(id);
  537. return ret;
  538. }
  539. double object_ctime_by_md5(const char *md5)
  540. {
  541. xs *fn = _object_fn_by_md5(md5);
  542. return f_ctime(fn);
  543. }
  544. double object_ctime(const char *id)
  545. {
  546. xs *md5 = xs_md5_hex(id, strlen(id));
  547. return object_ctime_by_md5(md5);
  548. }
  549. xs_str *_object_index_fn(const char *id, const char *idxsfx)
  550. /* returns the filename of an object's index */
  551. {
  552. xs_str *fn = _object_fn(id);
  553. return xs_replace_i(fn, ".json", idxsfx);
  554. }
  555. int object_likes_len(const char *id)
  556. /* returns the number of likes (without reading the index) */
  557. {
  558. xs *fn = _object_index_fn(id, "_l.idx");
  559. return index_len(fn);
  560. }
  561. int object_announces_len(const char *id)
  562. /* returns the number of announces (without reading the index) */
  563. {
  564. xs *fn = _object_index_fn(id, "_a.idx");
  565. return index_len(fn);
  566. }
  567. xs_list *object_children(const char *id)
  568. /* returns the list of an object's children */
  569. {
  570. xs *fn = _object_index_fn(id, "_c.idx");
  571. return index_list(fn, XS_ALL);
  572. }
  573. xs_list *object_likes(const char *id)
  574. {
  575. xs *fn = _object_index_fn(id, "_l.idx");
  576. return index_list(fn, XS_ALL);
  577. }
  578. xs_list *object_announces(const char *id)
  579. {
  580. xs *fn = _object_index_fn(id, "_a.idx");
  581. return index_list(fn, XS_ALL);
  582. }
  583. int object_parent(const char *id, char *buf, int size)
  584. /* returns the object parent, if any */
  585. {
  586. xs *fn = _object_fn_by_md5(id);
  587. fn = xs_replace_i(fn, ".json", "_p.idx");
  588. return index_first(fn, buf, size);
  589. }
  590. int object_admire(const char *id, const char *actor, int like)
  591. /* actor likes or announces this object */
  592. {
  593. int status = 200;
  594. xs *fn = _object_fn(id);
  595. fn = xs_replace_i(fn, ".json", like ? "_l.idx" : "_a.idx");
  596. if (!index_in(fn, actor)) {
  597. status = index_add(fn, actor);
  598. srv_debug(1, xs_fmt("object_admire (%s) %s %s", like ? "Like" : "Announce", actor, fn));
  599. }
  600. return status;
  601. }
  602. int object_unadmire(const char *id, const char *actor, int like)
  603. /* actor no longer likes or announces this object */
  604. {
  605. int status;
  606. xs *fn = _object_fn(id);
  607. fn = xs_replace_i(fn, ".json", like ? "_l.idx" : "_a.idx");
  608. status = index_del(fn, actor);
  609. srv_debug(0,
  610. xs_fmt("object_unadmire (%s) %s %s %d", like ? "Like" : "Announce", actor, fn, status));
  611. return status;
  612. }
  613. int _object_user_cache(snac *snac, const char *id, const char *cachedir, int del)
  614. /* adds or deletes from a user cache */
  615. {
  616. xs *ofn = _object_fn(id);
  617. xs *l = xs_split(ofn, "/");
  618. xs *cfn = xs_fmt("%s/%s/%s", snac->basedir, cachedir, xs_list_get(l, -1));
  619. xs *idx = xs_fmt("%s/%s.idx", snac->basedir, cachedir);
  620. int ret;
  621. if (del) {
  622. ret = unlink(cfn);
  623. }
  624. else {
  625. if ((ret = link(ofn, cfn)) != -1)
  626. index_add(idx, id);
  627. }
  628. return ret;
  629. }
  630. int object_user_cache_add(snac *snac, const char *id, const char *cachedir)
  631. /* caches an object into a user cache */
  632. {
  633. return _object_user_cache(snac, id, cachedir, 0);
  634. }
  635. int object_user_cache_del(snac *snac, const char *id, const char *cachedir)
  636. /* deletes an object from a user cache */
  637. {
  638. return _object_user_cache(snac, id, cachedir, 1);
  639. }
  640. int object_user_cache_in(snac *snac, const char *id, const char *cachedir)
  641. /* checks if an object is stored in a cache */
  642. {
  643. xs *md5 = xs_md5_hex(id, strlen(id));
  644. xs *cfn = xs_fmt("%s/%s/%s.json", snac->basedir, cachedir, md5);
  645. return !!(mtime(cfn) != 0.0);
  646. }
  647. xs_list *object_user_cache_list(snac *snac, const char *cachedir, int max)
  648. /* returns the objects in a cache as a list */
  649. {
  650. xs *idx = xs_fmt("%s/%s.idx", snac->basedir, cachedir);
  651. return index_list(idx, max);
  652. }
  653. /** specialized functions **/
  654. /** followers **/
  655. int follower_add(snac *snac, const char *actor)
  656. /* adds a follower */
  657. {
  658. int ret = object_user_cache_add(snac, actor, "followers");
  659. snac_debug(snac, 2, xs_fmt("follower_add %s", actor));
  660. return ret == -1 ? 500 : 200;
  661. }
  662. int follower_del(snac *snac, const char *actor)
  663. /* deletes a follower */
  664. {
  665. int ret = object_user_cache_del(snac, actor, "followers");
  666. snac_debug(snac, 2, xs_fmt("follower_del %s", actor));
  667. return ret == -1 ? 404 : 200;
  668. }
  669. int follower_check(snac *snac, const char *actor)
  670. /* checks if someone is a follower */
  671. {
  672. return object_user_cache_in(snac, actor, "followers");
  673. }
  674. xs_list *follower_list(snac *snac)
  675. /* returns the list of followers */
  676. {
  677. xs *list = object_user_cache_list(snac, "followers", XS_ALL);
  678. xs_list *fwers = xs_list_new();
  679. char *p, *v;
  680. /* resolve the list of md5 to be a list of actors */
  681. p = list;
  682. while (xs_list_iter(&p, &v)) {
  683. xs *a_obj = NULL;
  684. if (valid_status(object_get_by_md5(v, &a_obj))) {
  685. const char *actor = xs_dict_get(a_obj, "id");
  686. if (!xs_is_null(actor)) {
  687. /* check if the actor is still cached */
  688. xs *fn = xs_fmt("%s/followers/%s.json", snac->basedir, v);
  689. if (mtime(fn) > 0.0)
  690. fwers = xs_list_append(fwers, actor);
  691. }
  692. }
  693. }
  694. return fwers;
  695. }
  696. /** timeline **/
  697. double timeline_mtime(snac *snac)
  698. {
  699. xs *fn = xs_fmt("%s/private.idx", snac->basedir);
  700. return mtime(fn);
  701. }
  702. int timeline_touch(snac *snac)
  703. /* changes the date of the timeline index */
  704. {
  705. xs *fn = xs_fmt("%s/private.idx", snac->basedir);
  706. return utimes(fn, NULL);
  707. }
  708. xs_str *timeline_fn_by_md5(snac *snac, const char *md5)
  709. /* get the filename of an entry by md5 from any timeline */
  710. {
  711. xs_str *fn = xs_fmt("%s/private/%s.json", snac->basedir, md5);
  712. if (mtime(fn) == 0.0) {
  713. fn = xs_free(fn);
  714. fn = xs_fmt("%s/public/%s.json", snac->basedir, md5);
  715. if (mtime(fn) == 0.0)
  716. fn = xs_free(fn);
  717. }
  718. return fn;
  719. }
  720. int timeline_here(snac *snac, const char *md5)
  721. /* checks if an object is in the user cache */
  722. {
  723. xs *fn = timeline_fn_by_md5(snac, md5);
  724. return !(fn == NULL);
  725. }
  726. int timeline_get_by_md5(snac *snac, const char *md5, xs_dict **msg)
  727. /* gets a message from the timeline */
  728. {
  729. int status = 404;
  730. FILE *f = NULL;
  731. xs *fn = timeline_fn_by_md5(snac, md5);
  732. if (fn != NULL && (f = fopen(fn, "r")) != NULL) {
  733. flock(fileno(f), LOCK_SH);
  734. xs *j = xs_readall(f);
  735. fclose(f);
  736. if ((*msg = xs_json_loads(j)) != NULL)
  737. status = 200;
  738. }
  739. return status;
  740. }
  741. int timeline_del(snac *snac, char *id)
  742. /* deletes a message from the timeline */
  743. {
  744. /* delete from the user's caches */
  745. object_user_cache_del(snac, id, "public");
  746. object_user_cache_del(snac, id, "private");
  747. /* try to delete the object if it's not used elsewhere */
  748. return object_del_if_unref(id);
  749. }
  750. void timeline_update_indexes(snac *snac, const char *id)
  751. /* updates the indexes */
  752. {
  753. object_user_cache_add(snac, id, "private");
  754. if (xs_startswith(id, snac->actor)) {
  755. xs *msg = NULL;
  756. if (valid_status(object_get(id, &msg))) {
  757. /* if its ours and is public, also store in public */
  758. if (is_msg_public(snac, msg)) {
  759. object_user_cache_add(snac, id, "public");
  760. /* also add it to the instance public timeline */
  761. xs *ipt = xs_fmt("%s/public.idx", srv_basedir);
  762. index_add(ipt, id);
  763. }
  764. }
  765. }
  766. }
  767. int timeline_add(snac *snac, char *id, char *o_msg)
  768. /* adds a message to the timeline */
  769. {
  770. int ret = object_add(id, o_msg);
  771. timeline_update_indexes(snac, id);
  772. snac_debug(snac, 1, xs_fmt("timeline_add %s", id));
  773. return ret;
  774. }
  775. void timeline_admire(snac *snac, char *id, char *admirer, int like)
  776. /* updates a timeline entry with a new admiration */
  777. {
  778. /* if we are admiring this, add to both timelines */
  779. if (!like && strcmp(admirer, snac->actor) == 0) {
  780. object_user_cache_add(snac, id, "public");
  781. object_user_cache_add(snac, id, "private");
  782. }
  783. object_admire(id, admirer, like);
  784. snac_debug(snac, 1, xs_fmt("timeline_admire (%s) %s %s",
  785. like ? "Like" : "Announce", id, admirer));
  786. }
  787. xs_list *timeline_top_level(snac *snac, xs_list *list)
  788. /* returns the top level md5 entries from this index */
  789. {
  790. xs_set seen;
  791. xs_list *p;
  792. xs_str *v;
  793. xs_set_init(&seen);
  794. p = list;
  795. while (xs_list_iter(&p, &v)) {
  796. char line[256] = "";
  797. strncpy(line, v, sizeof(line));
  798. for (;;) {
  799. char line2[256];
  800. /* if it doesn't have a parent, use this */
  801. if (!object_parent(line, line2, sizeof(line2)))
  802. break;
  803. /* well, there is a parent... but is it here? */
  804. if (!timeline_here(snac, line2))
  805. break;
  806. /* it's here! try again with its own parent */
  807. strncpy(line, line2, sizeof(line));
  808. }
  809. xs_set_add(&seen, line);
  810. }
  811. return xs_set_result(&seen);
  812. }
  813. xs_list *timeline_simple_list(snac *snac, const char *idx_name, int skip, int show)
  814. /* returns a timeline (with all entries) */
  815. {
  816. int c_max;
  817. /* maximum number of items in the timeline */
  818. c_max = xs_number_get(xs_dict_get(srv_config, "max_timeline_entries"));
  819. /* never more timeline entries than the configured maximum */
  820. if (show > c_max)
  821. show = c_max;
  822. xs *idx = xs_fmt("%s/%s.idx", snac->basedir, idx_name);
  823. return index_list_desc(idx, skip, show);
  824. }
  825. xs_list *timeline_list(snac *snac, const char *idx_name, int skip, int show)
  826. /* returns a timeline (only top level entries) */
  827. {
  828. xs *list = timeline_simple_list(snac, idx_name, skip, show);
  829. return timeline_top_level(snac, list);
  830. }
  831. xs_list *timeline_instance_list(int skip, int show)
  832. /* returns the timeline for the full instance */
  833. {
  834. xs *idx = xs_fmt("%s/public.idx", srv_basedir);
  835. return index_list_desc(idx, skip, show);
  836. }
  837. /** following **/
  838. /* this needs special treatment and cannot use the object db as is,
  839. with a link to a cached author, because we need the Follow object
  840. in case we need to unfollow (Undo + original Follow) */
  841. xs_str *_following_fn(snac *snac, const char *actor)
  842. {
  843. xs *md5 = xs_md5_hex(actor, strlen(actor));
  844. return xs_fmt("%s/following/%s.json", snac->basedir, md5);
  845. }
  846. int following_add(snac *snac, const char *actor, const xs_dict *msg)
  847. /* adds to the following list */
  848. {
  849. int ret = 201; /* created */
  850. xs *fn = _following_fn(snac, actor);
  851. FILE *f;
  852. if ((f = fopen(fn, "w")) != NULL) {
  853. xs *j = xs_json_dumps_pp(msg, 4);
  854. fwrite(j, 1, strlen(j), f);
  855. fclose(f);
  856. /* get the filename of the actor object */
  857. xs *actor_fn = _object_fn(actor);
  858. /* increase its reference count */
  859. fn = xs_replace_i(fn, ".json", "_a.json");
  860. link(actor_fn, fn);
  861. }
  862. else
  863. ret = 500;
  864. snac_debug(snac, 2, xs_fmt("following_add %s %s", actor, fn));
  865. return ret;
  866. }
  867. int following_del(snac *snac, const char *actor)
  868. /* we're not following this actor any longer */
  869. {
  870. xs *fn = _following_fn(snac, actor);
  871. snac_debug(snac, 2, xs_fmt("following_del %s %s", actor, fn));
  872. unlink(fn);
  873. /* also delete the reference to the author */
  874. fn = xs_replace_i(fn, ".json", "_a.json");
  875. unlink(fn);
  876. return 200;
  877. }
  878. int following_check(snac *snac, const char *actor)
  879. /* checks if we are following this actor */
  880. {
  881. xs *fn = _following_fn(snac, actor);
  882. return !!(mtime(fn) != 0.0);
  883. }
  884. int following_get(snac *snac, const char *actor, xs_dict **data)
  885. /* returns the 'Follow' object */
  886. {
  887. xs *fn = _following_fn(snac, actor);
  888. FILE *f;
  889. int status = 200;
  890. if ((f = fopen(fn, "r")) != NULL) {
  891. xs *j = xs_readall(f);
  892. fclose(f);
  893. *data = xs_json_loads(j);
  894. }
  895. else
  896. status = 404;
  897. return status;
  898. }
  899. xs_list *following_list(snac *snac)
  900. /* returns the list of people being followed */
  901. {
  902. xs *spec = xs_fmt("%s/following/" "*.json", snac->basedir);
  903. xs *glist = xs_glob(spec, 0, 0);
  904. xs_list *p;
  905. xs_str *v;
  906. xs_list *list = xs_list_new();
  907. /* iterate the list of files */
  908. p = glist;
  909. while (xs_list_iter(&p, &v)) {
  910. FILE *f;
  911. /* load the follower data */
  912. if ((f = fopen(v, "r")) != NULL) {
  913. xs *j = xs_readall(f);
  914. fclose(f);
  915. if (j != NULL) {
  916. xs *o = xs_json_loads(j);
  917. if (o != NULL) {
  918. const char *type = xs_dict_get(o, "type");
  919. if (!xs_is_null(type) && strcmp(type, "Accept") == 0) {
  920. const char *actor = xs_dict_get(o, "actor");
  921. if (!xs_is_null(actor)) {
  922. list = xs_list_append(list, actor);
  923. /* check if there is a link to the actor object */
  924. xs *v2 = xs_replace(v, ".json", "_a.json");
  925. if (mtime(v2) == 0.0) {
  926. /* no; add a link to it */
  927. xs *actor_fn = _object_fn(actor);
  928. link(actor_fn, v2);
  929. }
  930. }
  931. }
  932. }
  933. }
  934. }
  935. }
  936. return list;
  937. }
  938. xs_str *_muted_fn(snac *snac, const char *actor)
  939. {
  940. xs *md5 = xs_md5_hex(actor, strlen(actor));
  941. return xs_fmt("%s/muted/%s", snac->basedir, md5);
  942. }
  943. void mute(snac *snac, const char *actor)
  944. /* mutes a moron */
  945. {
  946. xs *fn = _muted_fn(snac, actor);
  947. FILE *f;
  948. if ((f = fopen(fn, "w")) != NULL) {
  949. fprintf(f, "%s\n", actor);
  950. fclose(f);
  951. snac_debug(snac, 2, xs_fmt("muted %s %s", actor, fn));
  952. }
  953. }
  954. void unmute(snac *snac, const char *actor)
  955. /* actor is no longer a moron */
  956. {
  957. xs *fn = _muted_fn(snac, actor);
  958. unlink(fn);
  959. snac_debug(snac, 2, xs_fmt("unmuted %s %s", actor, fn));
  960. }
  961. int is_muted(snac *snac, const char *actor)
  962. /* check if someone is muted */
  963. {
  964. xs *fn = _muted_fn(snac, actor);
  965. return !!(mtime(fn) != 0.0);
  966. }
  967. xs_str *_hidden_fn(snac *snac, const char *id)
  968. {
  969. xs *md5 = xs_md5_hex(id, strlen(id));
  970. return xs_fmt("%s/hidden/%s", snac->basedir, md5);
  971. }
  972. void hide(snac *snac, const char *id)
  973. /* hides a message tree */
  974. {
  975. xs *fn = _hidden_fn(snac, id);
  976. FILE *f;
  977. if ((f = fopen(fn, "w")) != NULL) {
  978. fprintf(f, "%s\n", id);
  979. fclose(f);
  980. snac_debug(snac, 2, xs_fmt("hidden %s %s", id, fn));
  981. /* hide all the children */
  982. xs *chld = object_children(id);
  983. char *p, *v;
  984. p = chld;
  985. while (xs_list_iter(&p, &v)) {
  986. xs *co = NULL;
  987. /* resolve to get the id */
  988. if (valid_status(object_get_by_md5(v, &co))) {
  989. if ((v = xs_dict_get(co, "id")) != NULL)
  990. hide(snac, v);
  991. }
  992. }
  993. }
  994. }
  995. int is_hidden(snac *snac, const char *id)
  996. /* check is id is hidden */
  997. {
  998. xs *fn = _hidden_fn(snac, id);
  999. return !!(mtime(fn) != 0.0);
  1000. }
  1001. int actor_add(const char *actor, xs_dict *msg)
  1002. /* adds an actor */
  1003. {
  1004. return object_add_ow(actor, msg);
  1005. }
  1006. int actor_get(snac *snac1, const char *actor, xs_dict **data)
  1007. /* returns an already downloaded actor */
  1008. {
  1009. int status = 200;
  1010. xs_dict *d = NULL;
  1011. if (strcmp(actor, snac1->actor) == 0) {
  1012. /* this actor */
  1013. if (data)
  1014. *data = msg_actor(snac1);
  1015. return status;
  1016. }
  1017. if (xs_startswith(actor, srv_baseurl)) {
  1018. /* it's a (possible) local user */
  1019. xs *l = xs_split(actor, "/");
  1020. const char *uid = xs_list_get(l, -1);
  1021. snac user;
  1022. if (!xs_is_null(uid) && user_open(&user, uid)) {
  1023. if (data)
  1024. *data = msg_actor(&user);
  1025. user_free(&user);
  1026. return 200;
  1027. }
  1028. else
  1029. return 404;
  1030. }
  1031. /* read the object */
  1032. if (!valid_status(status = object_get(actor, &d))) {
  1033. d = xs_free(d);
  1034. return status;
  1035. }
  1036. if (data)
  1037. *data = d;
  1038. else
  1039. d = xs_free(d);
  1040. xs *fn = _object_fn(actor);
  1041. double max_time;
  1042. /* maximum time for the actor data to be considered stale */
  1043. max_time = 3600.0 * 36.0;
  1044. if (mtime(fn) + max_time < (double) time(NULL)) {
  1045. /* actor data exists but also stinks */
  1046. /* touch the file */
  1047. utimes(fn, NULL);
  1048. status = 205; /* "205: Reset Content" "110: Response Is Stale" */
  1049. }
  1050. return status;
  1051. }
  1052. /** static data **/
  1053. xs_str *_static_fn(snac *snac, const char *id)
  1054. /* gets the filename for a static file */
  1055. {
  1056. if (strchr(id, '/'))
  1057. return NULL;
  1058. else
  1059. return xs_fmt("%s/static/%s", snac->basedir, id);
  1060. }
  1061. int static_get(snac *snac, const char *id, xs_val **data, int *size)
  1062. /* returns static content */
  1063. {
  1064. xs *fn = _static_fn(snac, id);
  1065. FILE *f;
  1066. int status = 404;
  1067. if (fn && (f = fopen(fn, "rb")) != NULL) {
  1068. *size = XS_ALL;
  1069. *data = xs_read(f, size);
  1070. fclose(f);
  1071. status = 200;
  1072. }
  1073. return status;
  1074. }
  1075. void static_put(snac *snac, const char *id, const char *data, int size)
  1076. /* writes status content */
  1077. {
  1078. xs *fn = _static_fn(snac, id);
  1079. FILE *f;
  1080. if (fn && (f = fopen(fn, "wb")) != NULL) {
  1081. fwrite(data, size, 1, f);
  1082. fclose(f);
  1083. }
  1084. }
  1085. void static_put_meta(snac *snac, const char *id, const char *str)
  1086. /* puts metadata (i.e. a media description string) to id */
  1087. {
  1088. xs *fn = _static_fn(snac, id);
  1089. if (fn) {
  1090. fn = xs_str_cat(fn, ".txt");
  1091. FILE *f;
  1092. if ((f = fopen(fn, "w")) != NULL) {
  1093. fprintf(f, "%s\n", str);
  1094. fclose(f);
  1095. }
  1096. }
  1097. }
  1098. xs_str *static_get_meta(snac *snac, const char *id)
  1099. /* gets metadata from a media */
  1100. {
  1101. xs *fn = _static_fn(snac, id);
  1102. xs_str *r = NULL;
  1103. if (fn) {
  1104. fn = xs_str_cat(fn, ".txt");
  1105. FILE *f;
  1106. if ((f = fopen(fn, "r")) != NULL) {
  1107. r = xs_strip_i(xs_readline(f));
  1108. fclose(f);
  1109. }
  1110. }
  1111. else
  1112. r = xs_str_new("");
  1113. return r;
  1114. }
  1115. /** history **/
  1116. xs_str *_history_fn(snac *snac, const char *id)
  1117. /* gets the filename for the history */
  1118. {
  1119. if (strchr(id, '/'))
  1120. return NULL;
  1121. else
  1122. return xs_fmt("%s/history/%s", snac->basedir, id);
  1123. }
  1124. double history_mtime(snac *snac, const char *id)
  1125. {
  1126. double t = 0.0;
  1127. xs *fn = _history_fn(snac, id);
  1128. if (fn != NULL)
  1129. t = mtime(fn);
  1130. return t;
  1131. }
  1132. void history_add(snac *snac, const char *id, const char *content, int size)
  1133. /* adds something to the history */
  1134. {
  1135. xs *fn = _history_fn(snac, id);
  1136. FILE *f;
  1137. if (fn && (f = fopen(fn, "w")) != NULL) {
  1138. fwrite(content, size, 1, f);
  1139. fclose(f);
  1140. }
  1141. }
  1142. xs_str *history_get(snac *snac, const char *id)
  1143. {
  1144. xs_str *content = NULL;
  1145. xs *fn = _history_fn(snac, id);
  1146. FILE *f;
  1147. if (fn && (f = fopen(fn, "r")) != NULL) {
  1148. content = xs_readall(f);
  1149. fclose(f);
  1150. }
  1151. return content;
  1152. }
  1153. int history_del(snac *snac, const char *id)
  1154. {
  1155. xs *fn = _history_fn(snac, id);
  1156. if (fn)
  1157. return unlink(fn);
  1158. else
  1159. return -1;
  1160. }
  1161. xs_list *history_list(snac *snac)
  1162. {
  1163. xs *spec = xs_fmt("%s/history/" "*.html", snac->basedir);
  1164. return xs_glob(spec, 1, 0);
  1165. }
  1166. void lastlog_write(snac *snac, const char *source)
  1167. /* writes the last time the user logged in */
  1168. {
  1169. xs *fn = xs_fmt("%s/lastlog.txt", snac->basedir);
  1170. FILE *f;
  1171. if ((f = fopen(fn, "w")) != NULL) {
  1172. fprintf(f, "%lf %s\n", ftime(), source);
  1173. fclose(f);
  1174. }
  1175. }
  1176. /** inbox collection **/
  1177. void inbox_add(const char *inbox)
  1178. /* collects a shared inbox */
  1179. {
  1180. xs *md5 = xs_md5_hex(inbox, strlen(inbox));
  1181. xs *fn = xs_fmt("%s/inbox/%s", srv_basedir, md5);
  1182. FILE *f;
  1183. if (strlen(inbox) < 256 && (f = fopen(fn, "w")) != NULL) {
  1184. pthread_mutex_lock(&data_mutex);
  1185. fprintf(f, "%s\n", inbox);
  1186. fclose(f);
  1187. pthread_mutex_unlock(&data_mutex);
  1188. }
  1189. }
  1190. void inbox_add_by_actor(const xs_dict *actor)
  1191. /* collects an actor's shared inbox, if it has one */
  1192. {
  1193. char *v;
  1194. if (!xs_is_null(v = xs_dict_get(actor, "endpoints")) &&
  1195. !xs_is_null(v = xs_dict_get(v, "sharedInbox")))
  1196. inbox_add(v);
  1197. }
  1198. xs_list *inbox_list(void)
  1199. /* returns the collected inboxes as a list */
  1200. {
  1201. xs_list *ibl = xs_list_new();
  1202. xs *spec = xs_fmt("%s/inbox/" "*", srv_basedir);
  1203. xs *files = xs_glob(spec, 0, 0);
  1204. xs_list *p = files;
  1205. xs_val *v;
  1206. while (xs_list_iter(&p, &v)) {
  1207. FILE *f;
  1208. if ((f = fopen(v, "r")) != NULL) {
  1209. char line[256];
  1210. if (fgets(line, sizeof(line), f)) {
  1211. fclose(f);
  1212. int i = strlen(line);
  1213. if (i) {
  1214. line[i - 1] = '\0';
  1215. ibl = xs_list_append(ibl, line);
  1216. }
  1217. }
  1218. }
  1219. }
  1220. return ibl;
  1221. }
  1222. /** notifications **/
  1223. xs_str *notify_check_time(snac *snac, int reset)
  1224. /* gets or resets the latest notification check time */
  1225. {
  1226. xs_str *t = NULL;
  1227. xs *fn = xs_fmt("%s/notifydate.txt", snac->basedir);
  1228. FILE *f;
  1229. if (reset) {
  1230. if ((f = fopen(fn, "w")) != NULL) {
  1231. t = tid(0);
  1232. fprintf(f, "%s\n", t);
  1233. fclose(f);
  1234. }
  1235. }
  1236. else {
  1237. if ((f = fopen(fn, "r")) != NULL) {
  1238. t = xs_readline(f);
  1239. fclose(f);
  1240. }
  1241. else
  1242. /* never set before */
  1243. t = xs_fmt("%16.6f", 0.0);
  1244. }
  1245. return t;
  1246. }
  1247. void notify_add(snac *snac, const char *type, const char *utype,
  1248. const char *actor, const char *objid)
  1249. /* adds a new notification */
  1250. {
  1251. xs *ntid = tid(0);
  1252. xs *fn = xs_fmt("%s/notify/", snac->basedir);
  1253. xs *date = xs_str_utctime(0, ISO_DATE_SPEC);
  1254. FILE *f;
  1255. /* create the directory */
  1256. mkdirx(fn);
  1257. fn = xs_str_cat(fn, ntid);
  1258. fn = xs_str_cat(fn, ".json");
  1259. xs *noti = xs_dict_new();
  1260. noti = xs_dict_append(noti, "id", ntid);
  1261. noti = xs_dict_append(noti, "type", type);
  1262. noti = xs_dict_append(noti, "utype", utype);
  1263. noti = xs_dict_append(noti, "actor", actor);
  1264. noti = xs_dict_append(noti, "date", date);
  1265. if (!xs_is_null(objid))
  1266. noti = xs_dict_append(noti, "objid", objid);
  1267. if ((f = fopen(fn, "w")) != NULL) {
  1268. xs *j = xs_json_dumps_pp(noti, 4);
  1269. fwrite(j, strlen(j), 1, f);
  1270. fclose(f);
  1271. }
  1272. }
  1273. xs_dict *notify_get(snac *snac, const char *id)
  1274. /* gets a notification */
  1275. {
  1276. xs *fn = xs_fmt("%s/notify/%s.json", snac->basedir, id);
  1277. FILE *f;
  1278. xs_dict *out = NULL;
  1279. if ((f = fopen(fn, "r")) != NULL) {
  1280. xs *j = xs_readall(f);
  1281. fclose(f);
  1282. out = xs_json_loads(j);
  1283. }
  1284. return out;
  1285. }
  1286. xs_list *notify_list(snac *snac, int new_only)
  1287. /* returns a list of notification ids, optionally only the new ones */
  1288. {
  1289. xs *t = NULL;
  1290. /* if only new ones are requested, get the last time */
  1291. if (new_only)
  1292. t = notify_check_time(snac, 0);
  1293. xs *spec = xs_fmt("%s/notify/" "*.json", snac->basedir);
  1294. xs *lst = xs_glob(spec, 1, 1);
  1295. xs_list *out = xs_list_new();
  1296. xs_list *p = lst;
  1297. xs_str *v;
  1298. while (xs_list_iter(&p, &v)) {
  1299. xs *id = xs_replace(v, ".json", "");
  1300. /* old? */
  1301. if (t != NULL && strcmp(id, t) < 0)
  1302. continue;
  1303. out = xs_list_append(out, id);
  1304. }
  1305. return out;
  1306. }
  1307. void notify_clear(snac *snac)
  1308. /* clears all notifications */
  1309. {
  1310. xs *spec = xs_fmt("%s/notify/" "*", snac->basedir);
  1311. xs *lst = xs_glob(spec, 0, 0);
  1312. xs_list *p = lst;
  1313. xs_str *v;
  1314. while (xs_list_iter(&p, &v))
  1315. unlink(v);
  1316. }
  1317. /** the queue **/
  1318. static xs_dict *_enqueue_put(const char *fn, xs_dict *msg)
  1319. /* writes safely to the queue */
  1320. {
  1321. xs *tfn = xs_fmt("%s.tmp", fn);
  1322. FILE *f;
  1323. if ((f = fopen(tfn, "w")) != NULL) {
  1324. xs *j = xs_json_dumps_pp(msg, 4);
  1325. fwrite(j, strlen(j), 1, f);
  1326. fclose(f);
  1327. rename(tfn, fn);
  1328. }
  1329. return msg;
  1330. }
  1331. static xs_dict *_new_qmsg(const char *type, const xs_val *msg, int retries)
  1332. /* creates a queue message */
  1333. {
  1334. int qrt = xs_number_get(xs_dict_get(srv_config, "queue_retry_minutes"));
  1335. xs *ntid = tid(retries * 60 * qrt);
  1336. xs *rn = xs_number_new(retries);
  1337. xs_dict *qmsg = xs_dict_new();
  1338. qmsg = xs_dict_append(qmsg, "type", type);
  1339. qmsg = xs_dict_append(qmsg, "message", msg);
  1340. qmsg = xs_dict_append(qmsg, "retries", rn);
  1341. qmsg = xs_dict_append(qmsg, "ntid", ntid);
  1342. return qmsg;
  1343. }
  1344. void enqueue_input(snac *snac, const xs_dict *msg, const xs_dict *req, int retries)
  1345. /* enqueues an input message */
  1346. {
  1347. xs *qmsg = _new_qmsg("input", msg, retries);
  1348. char *ntid = xs_dict_get(qmsg, "ntid");
  1349. xs *fn = xs_fmt("%s/queue/%s.json", snac->basedir, ntid);
  1350. qmsg = xs_dict_append(qmsg, "req", req);
  1351. qmsg = _enqueue_put(fn, qmsg);
  1352. snac_debug(snac, 1, xs_fmt("enqueue_input %s", fn));
  1353. }
  1354. void enqueue_output_raw(const char *keyid, const char *seckey,
  1355. xs_dict *msg, xs_str *inbox, int retries)
  1356. /* enqueues an output message to an inbox */
  1357. {
  1358. xs *qmsg = _new_qmsg("output", msg, retries);
  1359. char *ntid = xs_dict_get(qmsg, "ntid");
  1360. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1361. qmsg = xs_dict_append(qmsg, "inbox", inbox);
  1362. qmsg = xs_dict_append(qmsg, "keyid", keyid);
  1363. qmsg = xs_dict_append(qmsg, "seckey", seckey);
  1364. /* if it's to be sent right now, bypass the disk queue and post the job */
  1365. if (retries == 0 && job_fifo_ready())
  1366. job_post(qmsg, 0);
  1367. else {
  1368. qmsg = _enqueue_put(fn, qmsg);
  1369. srv_debug(1, xs_fmt("enqueue_output %s %s %d", inbox, fn, retries));
  1370. }
  1371. }
  1372. void enqueue_output(snac *snac, xs_dict *msg, xs_str *inbox, int retries)
  1373. /* enqueues an output message to an inbox */
  1374. {
  1375. if (xs_startswith(inbox, snac->actor)) {
  1376. snac_debug(snac, 1, xs_str_new("refusing enqueue to myself"));
  1377. return;
  1378. }
  1379. char *seckey = xs_dict_get(snac->key, "secret");
  1380. enqueue_output_raw(snac->actor, seckey, msg, inbox, retries);
  1381. }
  1382. void enqueue_output_by_actor(snac *snac, xs_dict *msg, const xs_str *actor, int retries)
  1383. /* enqueues an output message for an actor */
  1384. {
  1385. xs *inbox = get_actor_inbox(snac, actor);
  1386. if (!xs_is_null(inbox))
  1387. enqueue_output(snac, msg, inbox, retries);
  1388. else
  1389. snac_log(snac, xs_fmt("enqueue_output_by_actor cannot get inbox %s", actor));
  1390. }
  1391. void enqueue_email(xs_str *msg, int retries)
  1392. /* enqueues an email message to be sent */
  1393. {
  1394. xs *qmsg = _new_qmsg("email", msg, retries);
  1395. char *ntid = xs_dict_get(qmsg, "ntid");
  1396. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1397. qmsg = _enqueue_put(fn, qmsg);
  1398. srv_debug(1, xs_fmt("enqueue_email %d", retries));
  1399. }
  1400. void enqueue_telegram(const xs_str *msg, const char *bot, const char *chat_id)
  1401. /* enqueues a message to be sent via Telegram */
  1402. {
  1403. xs *qmsg = _new_qmsg("telegram", msg, 0);
  1404. char *ntid = xs_dict_get(qmsg, "ntid");
  1405. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1406. qmsg = xs_dict_append(qmsg, "bot", bot);
  1407. qmsg = xs_dict_append(qmsg, "chat_id", chat_id);
  1408. qmsg = _enqueue_put(fn, qmsg);
  1409. srv_debug(1, xs_fmt("enqueue_email %s %s", bot, chat_id));
  1410. }
  1411. void enqueue_message(snac *snac, xs_dict *msg)
  1412. /* enqueues an output message */
  1413. {
  1414. xs *qmsg = _new_qmsg("message", msg, 0);
  1415. char *ntid = xs_dict_get(qmsg, "ntid");
  1416. xs *fn = xs_fmt("%s/queue/%s.json", snac->basedir, ntid);
  1417. qmsg = _enqueue_put(fn, qmsg);
  1418. snac_debug(snac, 0, xs_fmt("enqueue_message %s", xs_dict_get(msg, "id")));
  1419. }
  1420. void enqueue_close_question(snac *user, const char *id, int end_secs)
  1421. /* enqueues the closing of a question */
  1422. {
  1423. xs *qmsg = _new_qmsg("close_question", id, 0);
  1424. xs *ntid = tid(end_secs);
  1425. xs *fn = xs_fmt("%s/queue/%s.json", user->basedir, ntid);
  1426. qmsg = xs_dict_set(qmsg, "ntid", ntid);
  1427. qmsg = _enqueue_put(fn, qmsg);
  1428. snac_debug(user, 0, xs_fmt("enqueue_close_question %s", id));
  1429. }
  1430. void enqueue_request_replies(snac *user, const char *id)
  1431. /* enqueues a request for the replies of a message */
  1432. {
  1433. /* test first if this precise request is already in the queue */
  1434. xs *queue = user_queue(user);
  1435. xs_list *p = queue;
  1436. xs_str *v;
  1437. while (xs_list_iter(&p, &v)) {
  1438. xs *q_item = queue_get(v);
  1439. if (q_item != NULL) {
  1440. const char *type = xs_dict_get(q_item, "type");
  1441. const char *msg = xs_dict_get(q_item, "message");
  1442. if (type && msg && strcmp(type, "request_replies") == 0 && strcmp(msg, id) == 0) {
  1443. /* don't requeue */
  1444. snac_debug(user, 1, xs_fmt("enqueue_request_replies already here %s", id));
  1445. return;
  1446. }
  1447. }
  1448. }
  1449. /* not there; enqueue the request with a small delay */
  1450. xs *qmsg = _new_qmsg("request_replies", id, 0);
  1451. xs *ntid = tid(10);
  1452. xs *fn = xs_fmt("%s/queue/%s.json", user->basedir, ntid);
  1453. qmsg = xs_dict_set(qmsg, "ntid", ntid);
  1454. qmsg = _enqueue_put(fn, qmsg);
  1455. snac_debug(user, 1, xs_fmt("enqueue_request_replies %s", id));
  1456. }
  1457. int was_question_voted(snac *user, const char *id)
  1458. /* returns true if the user voted in this poll */
  1459. {
  1460. xs *children = object_children(id);
  1461. int voted = 0;
  1462. xs_list *p;
  1463. xs_str *md5;
  1464. p = children;
  1465. while (xs_list_iter(&p, &md5)) {
  1466. xs *obj = NULL;
  1467. if (valid_status(object_get_by_md5(md5, &obj))) {
  1468. if (strcmp(xs_dict_get(obj, "attributedTo"), user->actor) == 0 &&
  1469. !xs_is_null(xs_dict_get(obj, "name"))) {
  1470. voted = 1;
  1471. break;
  1472. }
  1473. }
  1474. }
  1475. return voted;
  1476. }
  1477. xs_list *user_queue(snac *snac)
  1478. /* returns a list with filenames that can be dequeued */
  1479. {
  1480. xs *spec = xs_fmt("%s/queue/" "*.json", snac->basedir);
  1481. xs_list *list = xs_list_new();
  1482. time_t t = time(NULL);
  1483. xs_list *p;
  1484. xs_val *v;
  1485. xs *fns = xs_glob(spec, 0, 0);
  1486. p = fns;
  1487. while (xs_list_iter(&p, &v)) {
  1488. /* get the retry time from the basename */
  1489. char *bn = strrchr(v, '/');
  1490. time_t t2 = atol(bn + 1);
  1491. if (t2 > t)
  1492. snac_debug(snac, 2, xs_fmt("user_queue not yet time for %s [%ld]", v, t));
  1493. else {
  1494. list = xs_list_append(list, v);
  1495. snac_debug(snac, 2, xs_fmt("user_queue ready for %s", v));
  1496. }
  1497. }
  1498. return list;
  1499. }
  1500. xs_list *queue(void)
  1501. /* returns a list with filenames that can be dequeued */
  1502. {
  1503. xs *spec = xs_fmt("%s/queue/" "*.json", srv_basedir);
  1504. xs_list *list = xs_list_new();
  1505. time_t t = time(NULL);
  1506. xs_list *p;
  1507. xs_val *v;
  1508. xs *fns = xs_glob(spec, 0, 0);
  1509. p = fns;
  1510. while (xs_list_iter(&p, &v)) {
  1511. /* get the retry time from the basename */
  1512. char *bn = strrchr(v, '/');
  1513. time_t t2 = atol(bn + 1);
  1514. if (t2 > t)
  1515. srv_debug(2, xs_fmt("queue not yet time for %s [%ld]", v, t));
  1516. else {
  1517. list = xs_list_append(list, v);
  1518. srv_debug(2, xs_fmt("queue ready for %s", v));
  1519. }
  1520. }
  1521. return list;
  1522. }
  1523. xs_dict *queue_get(const char *fn)
  1524. /* gets a file from a queue */
  1525. {
  1526. FILE *f;
  1527. xs_dict *obj = NULL;
  1528. if ((f = fopen(fn, "r")) != NULL) {
  1529. xs *j = xs_readall(f);
  1530. obj = xs_json_loads(j);
  1531. fclose(f);
  1532. }
  1533. return obj;
  1534. }
  1535. xs_dict *dequeue(const char *fn)
  1536. /* dequeues a message */
  1537. {
  1538. xs_dict *obj = queue_get(fn);
  1539. if (obj != NULL)
  1540. unlink(fn);
  1541. return obj;
  1542. }
  1543. /** the purge **/
  1544. static int _purge_file(const char *fn, time_t mt)
  1545. /* purge fn if it's older than days */
  1546. {
  1547. int ret = 0;
  1548. if (mtime(fn) < mt) {
  1549. /* older than the minimum time: delete it */
  1550. unlink(fn);
  1551. srv_debug(2, xs_fmt("purged %s", fn));
  1552. ret = 1;
  1553. }
  1554. return ret;
  1555. }
  1556. static void _purge_dir(const char *dir, int days)
  1557. /* purges all files in a directory older than days */
  1558. {
  1559. int cnt = 0;
  1560. if (days) {
  1561. time_t mt = time(NULL) - days * 24 * 3600;
  1562. xs *spec = xs_fmt("%s/" "*", dir);
  1563. xs *list = xs_glob(spec, 0, 0);
  1564. xs_list *p;
  1565. xs_str *v;
  1566. p = list;
  1567. while (xs_list_iter(&p, &v))
  1568. cnt += _purge_file(v, mt);
  1569. srv_debug(1, xs_fmt("purge: %s %d", dir, cnt));
  1570. }
  1571. }
  1572. static void _purge_user_subdir(snac *snac, const char *subdir, int days)
  1573. /* purges all files in a user subdir older than days */
  1574. {
  1575. xs *u_subdir = xs_fmt("%s/%s", snac->basedir, subdir);
  1576. _purge_dir(u_subdir, days);
  1577. }
  1578. void purge_server(void)
  1579. /* purge global server data */
  1580. {
  1581. xs *spec = xs_fmt("%s/object/??", srv_basedir);
  1582. xs *dirs = xs_glob(spec, 0, 0);
  1583. xs_list *p;
  1584. xs_str *v;
  1585. int cnt = 0;
  1586. int icnt = 0;
  1587. time_t mt = time(NULL) - 7 * 24 * 3600;
  1588. p = dirs;
  1589. while (xs_list_iter(&p, &v)) {
  1590. xs_list *p2;
  1591. xs_str *v2;
  1592. {
  1593. xs *spec2 = xs_fmt("%s/" "*.json", v);
  1594. xs *files = xs_glob(spec2, 0, 0);
  1595. p2 = files;
  1596. while (xs_list_iter(&p2, &v2)) {
  1597. int n_link;
  1598. /* old and with no hard links? */
  1599. if (mtime_nl(v2, &n_link) < mt && n_link < 2) {
  1600. xs *s1 = xs_replace(v2, ".json", "");
  1601. xs *l = xs_split(s1, "/");
  1602. char *md5 = xs_list_get(l, -1);
  1603. object_del_by_md5(md5);
  1604. cnt++;
  1605. }
  1606. }
  1607. }
  1608. {
  1609. /* look for stray indexes */
  1610. xs *speci = xs_fmt("%s/" "*_?.idx", v);
  1611. xs *idxfs = xs_glob(speci, 0, 0);
  1612. p2 = idxfs;
  1613. while (xs_list_iter(&p2, &v2)) {
  1614. /* old enough to consider? */
  1615. if (mtime(v2) < mt) {
  1616. /* check if the indexed object is here */
  1617. xs *o = xs_dup(v2);
  1618. char *ext = strchr(o, '_');
  1619. if (ext) {
  1620. *ext = '\0';
  1621. o = xs_str_cat(o, ".json");
  1622. if (mtime(o) == 0.0) {
  1623. /* delete */
  1624. unlink(v2);
  1625. srv_debug(1, xs_fmt("purged %s", v2));
  1626. icnt++;
  1627. }
  1628. }
  1629. }
  1630. }
  1631. }
  1632. }
  1633. /* purge collected inboxes */
  1634. xs *ib_dir = xs_fmt("%s/inbox", srv_basedir);
  1635. _purge_dir(ib_dir, 7);
  1636. /* purge the instance timeline */
  1637. xs *itl_fn = xs_fmt("%s/public.idx", srv_basedir);
  1638. int itl_gc = index_gc(itl_fn);
  1639. srv_debug(1, xs_fmt("purge: global (obj: %d, idx: %d, itl: %d)", cnt, icnt, itl_gc));
  1640. }
  1641. void purge_user(snac *snac)
  1642. /* do the purge for this user */
  1643. {
  1644. int priv_days, pub_days, user_days = 0;
  1645. char *v;
  1646. int n;
  1647. priv_days = xs_number_get(xs_dict_get(srv_config, "timeline_purge_days"));
  1648. pub_days = xs_number_get(xs_dict_get(srv_config, "local_purge_days"));
  1649. if ((v = xs_dict_get(snac->config_o, "purge_days")) != NULL ||
  1650. (v = xs_dict_get(snac->config, "purge_days")) != NULL)
  1651. user_days = xs_number_get(v);
  1652. if (user_days) {
  1653. /* override admin settings only if they are lesser */
  1654. if (priv_days == 0 || user_days < priv_days)
  1655. priv_days = user_days;
  1656. if (pub_days == 0 || user_days < pub_days)
  1657. pub_days = user_days;
  1658. }
  1659. _purge_user_subdir(snac, "hidden", priv_days);
  1660. _purge_user_subdir(snac, "private", priv_days);
  1661. _purge_user_subdir(snac, "public", pub_days);
  1662. const char *idxs[] = { "followers.idx", "private.idx", "public.idx", NULL };
  1663. for (n = 0; idxs[n]; n++) {
  1664. xs *idx = xs_fmt("%s/%s", snac->basedir, idxs[n]);
  1665. int gc = index_gc(idx);
  1666. snac_debug(snac, 1, xs_fmt("purge: %s %d", idx, gc));
  1667. }
  1668. }
  1669. void purge_all(void)
  1670. /* purge all users */
  1671. {
  1672. snac snac;
  1673. xs *list = user_list();
  1674. char *p, *uid;
  1675. p = list;
  1676. while (xs_list_iter(&p, &uid)) {
  1677. if (user_open(&snac, uid)) {
  1678. purge_user(&snac);
  1679. user_free(&snac);
  1680. }
  1681. }
  1682. purge_server();
  1683. #ifndef NO_MASTODON_API
  1684. mastoapi_purge();
  1685. #endif
  1686. }
  1687. /** archive **/
  1688. void srv_archive(const char *direction, const char *url, xs_dict *req,
  1689. const char *payload, int p_size,
  1690. int status, xs_dict *headers,
  1691. const char *body, int b_size)
  1692. /* archives a connection */
  1693. {
  1694. /* obsessive archiving */
  1695. xs *date = tid(0);
  1696. xs *dir = xs_fmt("%s/archive/%s_%s", srv_basedir, date, direction);
  1697. FILE *f;
  1698. if (mkdirx(dir) != -1) {
  1699. xs *meta_fn = xs_fmt("%s/_META", dir);
  1700. if ((f = fopen(meta_fn, "w")) != NULL) {
  1701. xs *j1 = xs_json_dumps_pp(req, 4);
  1702. xs *j2 = xs_json_dumps_pp(headers, 4);
  1703. fprintf(f, "dir: %s\n", direction);
  1704. if (url)
  1705. fprintf(f, "url: %s\n", url);
  1706. fprintf(f, "req: %s\n", j1);
  1707. fprintf(f, "p_size: %d\n", p_size);
  1708. fprintf(f, "status: %d\n", status);
  1709. fprintf(f, "response: %s\n", j2);
  1710. fprintf(f, "b_size: %d\n", b_size);
  1711. fclose(f);
  1712. }
  1713. if (p_size && payload) {
  1714. xs *payload_fn = NULL;
  1715. xs *payload_fn_raw = NULL;
  1716. char *v = xs_dict_get(req, "content-type");
  1717. if (v && xs_str_in(v, "json") != -1) {
  1718. payload_fn = xs_fmt("%s/payload.json", dir);
  1719. if ((f = fopen(payload_fn, "w")) != NULL) {
  1720. xs *v1 = xs_json_loads(payload);
  1721. xs *j1 = NULL;
  1722. if (v1 != NULL)
  1723. j1 = xs_json_dumps_pp(v1, 4);
  1724. if (j1 != NULL)
  1725. fwrite(j1, strlen(j1), 1, f);
  1726. else
  1727. fwrite(payload, p_size, 1, f);
  1728. fclose(f);
  1729. }
  1730. }
  1731. payload_fn_raw = xs_fmt("%s/payload", dir);
  1732. if ((f = fopen(payload_fn_raw, "w")) != NULL) {
  1733. fwrite(payload, p_size, 1, f);
  1734. fclose(f);
  1735. }
  1736. }
  1737. if (b_size && body) {
  1738. xs *body_fn = NULL;
  1739. char *v = xs_dict_get(headers, "content-type");
  1740. if (v && xs_str_in(v, "json") != -1) {
  1741. body_fn = xs_fmt("%s/body.json", dir);
  1742. if ((f = fopen(body_fn, "w")) != NULL) {
  1743. xs *v1 = xs_json_loads(body);
  1744. xs *j1 = NULL;
  1745. if (v1 != NULL)
  1746. j1 = xs_json_dumps_pp(v1, 4);
  1747. if (j1 != NULL)
  1748. fwrite(j1, strlen(j1), 1, f);
  1749. else
  1750. fwrite(body, b_size, 1, f);
  1751. fclose(f);
  1752. }
  1753. }
  1754. else {
  1755. body_fn = xs_fmt("%s/body", dir);
  1756. if ((f = fopen(body_fn, "w")) != NULL) {
  1757. fwrite(body, b_size, 1, f);
  1758. fclose(f);
  1759. }
  1760. }
  1761. }
  1762. }
  1763. }
  1764. void srv_archive_error(const char *prefix, const xs_str *err,
  1765. const xs_dict *req, const xs_val *data)
  1766. /* archives an error */
  1767. {
  1768. xs *ntid = tid(0);
  1769. xs *fn = xs_fmt("%s/error/%s_%s", srv_basedir, prefix, ntid);
  1770. FILE *f;
  1771. if ((f = fopen(fn, "w")) != NULL) {
  1772. fprintf(f, "Error: %s\n", err);
  1773. if (req) {
  1774. fprintf(f, "Request headers:\n");
  1775. xs *j = xs_json_dumps_pp(req, 4);
  1776. fwrite(j, strlen(j), 1, f);
  1777. fprintf(f, "\n");
  1778. }
  1779. if (data) {
  1780. fprintf(f, "Data:\n");
  1781. if (xs_type(data) == XSTYPE_LIST || xs_type(data) == XSTYPE_DICT) {
  1782. xs *j = xs_json_dumps_pp(data, 4);
  1783. fwrite(j, strlen(j), 1, f);
  1784. }
  1785. else
  1786. fprintf(f, "%s", data);
  1787. fprintf(f, "\n");
  1788. }
  1789. fclose(f);
  1790. }
  1791. }