data.c 52 KB

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