data.c 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979
  1. /* snac - A simple, minimalistic ActivityPub instance */
  2. /* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
  3. #include "xs.h"
  4. #include "xs_hex.h"
  5. #include "xs_io.h"
  6. #include "xs_json.h"
  7. #include "xs_openssl.h"
  8. #include "xs_glob.h"
  9. #include "xs_set.h"
  10. #include "xs_time.h"
  11. #include "xs_regex.h"
  12. #include "snac.h"
  13. #include <time.h>
  14. #include <sys/stat.h>
  15. #include <sys/file.h>
  16. #include <sys/time.h>
  17. #include <fcntl.h>
  18. #include <pthread.h>
  19. double disk_layout = 2.7;
  20. /* storage serializer */
  21. pthread_mutex_t data_mutex = {0};
  22. int snac_upgrade(xs_str **error);
  23. int srv_open(char *basedir, int auto_upgrade)
  24. /* opens a server */
  25. {
  26. int ret = 0;
  27. xs *cfg_file = NULL;
  28. FILE *f;
  29. xs_str *error = NULL;
  30. pthread_mutex_init(&data_mutex, NULL);
  31. srv_basedir = xs_str_new(basedir);
  32. if (xs_endswith(srv_basedir, "/"))
  33. srv_basedir = xs_crop_i(srv_basedir, 0, -1);
  34. cfg_file = xs_fmt("%s/server.json", basedir);
  35. if ((f = fopen(cfg_file, "r")) == NULL)
  36. error = xs_fmt("ERROR: cannot opening '%s'", cfg_file);
  37. else {
  38. /* read full config file */
  39. srv_config = xs_json_load(f);
  40. fclose(f);
  41. /* parse */
  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. xs *tmpdir = xs_fmt("%s/tmp", srv_basedir);
  79. mkdirx(tmpdir);
  80. #ifdef __APPLE__
  81. /* Apple uses st_atimespec instead of st_atim etc */
  82. #define st_atim st_atimespec
  83. #define st_ctim st_ctimespec
  84. #define st_mtim st_mtimespec
  85. #endif
  86. #ifdef __OpenBSD__
  87. char *v = xs_dict_get(srv_config, "disable_openbsd_security");
  88. if (v && xs_type(v) == XSTYPE_TRUE) {
  89. srv_debug(1, xs_dup("OpenBSD security disabled by admin"));
  90. }
  91. else {
  92. srv_debug(1, xs_fmt("Calling unveil()"));
  93. unveil(basedir, "rwc");
  94. unveil("/tmp", "rwc");
  95. unveil("/usr/sbin/sendmail", "x");
  96. unveil("/etc/resolv.conf", "r");
  97. unveil("/etc/hosts", "r");
  98. unveil("/etc/ssl/openssl.cnf", "r");
  99. unveil("/etc/ssl/cert.pem", "r");
  100. unveil("/usr/share/zoneinfo", "r");
  101. unveil(NULL, NULL);
  102. srv_debug(1, xs_fmt("Calling pledge()"));
  103. pledge("stdio rpath wpath cpath flock inet proc exec dns fattr", NULL);
  104. }
  105. #endif /* __OpenBSD__ */
  106. return ret;
  107. }
  108. void srv_free(void)
  109. {
  110. xs_free(srv_basedir);
  111. xs_free(srv_config);
  112. xs_free(srv_baseurl);
  113. pthread_mutex_destroy(&data_mutex);
  114. }
  115. void user_free(snac *snac)
  116. /* frees a user snac */
  117. {
  118. xs_free(snac->uid);
  119. xs_free(snac->basedir);
  120. xs_free(snac->config);
  121. xs_free(snac->config_o);
  122. xs_free(snac->key);
  123. xs_free(snac->links);
  124. xs_free(snac->actor);
  125. xs_free(snac->md5);
  126. }
  127. int user_open(snac *user, const char *uid)
  128. /* opens a user */
  129. {
  130. int ret = 0;
  131. *user = (snac){0};
  132. if (validate_uid(uid)) {
  133. xs *cfg_file = NULL;
  134. FILE *f;
  135. xs *t = xs_fmt("%s/user/%s", srv_basedir, uid);
  136. if (mtime(t) == 0.0) {
  137. /* user folder does not exist; try with a different case */
  138. xs *lcuid = xs_tolower_i(xs_dup(uid));
  139. xs *ulist = user_list();
  140. xs_list *p = ulist;
  141. xs_str *v;
  142. while (xs_list_iter(&p, &v)) {
  143. xs *v2 = xs_tolower_i(xs_dup(v));
  144. if (strcmp(lcuid, v2) == 0) {
  145. user->uid = xs_dup(v);
  146. break;
  147. }
  148. }
  149. }
  150. else
  151. user->uid = xs_str_new(uid);
  152. if (user->uid == NULL)
  153. return ret;
  154. user->basedir = xs_fmt("%s/user/%s", srv_basedir, user->uid);
  155. cfg_file = xs_fmt("%s/user.json", user->basedir);
  156. if ((f = fopen(cfg_file, "r")) != NULL) {
  157. /* read full config file */
  158. user->config = xs_json_load(f);
  159. fclose(f);
  160. if (user->config != NULL) {
  161. xs *key_file = xs_fmt("%s/key.json", user->basedir);
  162. if ((f = fopen(key_file, "r")) != NULL) {
  163. user->key = xs_json_load(f);
  164. fclose(f);
  165. if (user->key != NULL) {
  166. user->actor = xs_fmt("%s/%s", srv_baseurl, user->uid);
  167. user->md5 = xs_md5_hex(user->actor, strlen(user->actor));
  168. /* everything is ok right now */
  169. ret = 1;
  170. /* does it have a configuration override? */
  171. xs *cfg_file_o = xs_fmt("%s/user_o.json", user->basedir);
  172. if ((f = fopen(cfg_file_o, "r")) != NULL) {
  173. user->config_o = xs_json_load(f);
  174. fclose(f);
  175. if (user->config_o == NULL)
  176. srv_log(xs_fmt("error parsing '%s'", cfg_file_o));
  177. }
  178. if (user->config_o == NULL)
  179. user->config_o = xs_dict_new();
  180. }
  181. else
  182. srv_log(xs_fmt("error parsing '%s'", key_file));
  183. }
  184. else
  185. srv_log(xs_fmt("error opening '%s' %d", key_file, errno));
  186. }
  187. else
  188. srv_log(xs_fmt("error parsing '%s'", cfg_file));
  189. }
  190. else
  191. srv_debug(2, xs_fmt("error opening '%s' %d", cfg_file, errno));
  192. /* verified links */
  193. xs *links_file = xs_fmt("%s/links.json", user->basedir);
  194. if ((f = fopen(links_file, "r")) != NULL) {
  195. user->links = xs_json_load(f);
  196. fclose(f);
  197. }
  198. }
  199. else
  200. srv_debug(1, xs_fmt("invalid user '%s'", uid));
  201. if (!ret)
  202. user_free(user);
  203. return ret;
  204. }
  205. xs_list *user_list(void)
  206. /* returns the list of user ids */
  207. {
  208. xs *spec = xs_fmt("%s/user/" "*", srv_basedir);
  209. return xs_glob(spec, 1, 0);
  210. }
  211. int user_open_by_md5(snac *snac, const char *md5)
  212. /* iterates all users searching by md5 */
  213. {
  214. xs *ulist = user_list();
  215. xs_list *p = ulist;
  216. xs_str *v;
  217. while (xs_list_iter(&p, &v)) {
  218. user_open(snac, v);
  219. if (strcmp(snac->md5, md5) == 0)
  220. return 1;
  221. user_free(snac);
  222. }
  223. return 0;
  224. }
  225. double mtime_nl(const char *fn, int *n_link)
  226. /* returns the mtime and number of links of a file or directory, or 0.0 */
  227. {
  228. struct stat st;
  229. double r = 0.0;
  230. int n = 0;
  231. if (fn && stat(fn, &st) != -1) {
  232. r = (double) st.st_mtim.tv_sec;
  233. n = st.st_nlink;
  234. }
  235. if (n_link)
  236. *n_link = n;
  237. return r;
  238. }
  239. #define MIN(v1, v2) ((v1) < (v2) ? (v1) : (v2))
  240. double f_ctime(const char *fn)
  241. /* returns the ctime of a file or directory, or 0.0 */
  242. {
  243. struct stat st;
  244. double r = 0.0;
  245. if (fn && stat(fn, &st) != -1) {
  246. /* return the lowest of ctime and mtime;
  247. there are operations that change the ctime, like link() */
  248. r = (double) MIN(st.st_ctim.tv_sec, st.st_mtim.tv_sec);
  249. }
  250. return r;
  251. }
  252. /** database 2.1+ **/
  253. /** indexes **/
  254. int index_add_md5(const char *fn, const char *md5)
  255. /* adds an md5 to an index */
  256. {
  257. int status = 201; /* Created */
  258. FILE *f;
  259. pthread_mutex_lock(&data_mutex);
  260. if ((f = fopen(fn, "a")) != NULL) {
  261. flock(fileno(f), LOCK_EX);
  262. /* ensure the position is at the end after getting the lock */
  263. fseek(f, 0, SEEK_END);
  264. fprintf(f, "%s\n", md5);
  265. fclose(f);
  266. }
  267. else
  268. status = 500;
  269. pthread_mutex_unlock(&data_mutex);
  270. return status;
  271. }
  272. int index_add(const char *fn, const char *id)
  273. /* adds an id to an index */
  274. {
  275. xs *md5 = xs_md5_hex(id, strlen(id));
  276. return index_add_md5(fn, md5);
  277. }
  278. int index_del_md5(const char *fn, const char *md5)
  279. /* deletes an md5 from an index */
  280. {
  281. int status = 404;
  282. FILE *f;
  283. pthread_mutex_lock(&data_mutex);
  284. if ((f = fopen(fn, "r+")) != NULL) {
  285. char line[256];
  286. while (fgets(line, sizeof(line), f) != NULL) {
  287. line[32] = '\0';
  288. if (strcmp(line, md5) == 0) {
  289. /* found! just rewind, overwrite it with garbage
  290. and an eventual call to index_gc() will clean it
  291. [yes: this breaks index_len()] */
  292. fseek(f, -33, SEEK_CUR);
  293. fwrite("-", 1, 1, f);
  294. status = 200;
  295. break;
  296. }
  297. }
  298. fclose(f);
  299. }
  300. else
  301. status = 500;
  302. pthread_mutex_unlock(&data_mutex);
  303. return status;
  304. }
  305. int index_del(const char *fn, const char *id)
  306. /* deletes an id from an index */
  307. {
  308. xs *md5 = xs_md5_hex(id, strlen(id));
  309. return index_del_md5(fn, md5);
  310. }
  311. int index_gc(const char *fn)
  312. /* garbage-collects an index, deleting objects that are not here */
  313. {
  314. FILE *i, *o;
  315. int gc = -1;
  316. pthread_mutex_lock(&data_mutex);
  317. if ((i = fopen(fn, "r")) != NULL) {
  318. xs *nfn = xs_fmt("%s.new", fn);
  319. char line[256];
  320. if ((o = fopen(nfn, "w")) != NULL) {
  321. gc = 0;
  322. while (fgets(line, sizeof(line), i) != NULL) {
  323. line[32] = '\0';
  324. if (line[0] != '-' && object_here_by_md5(line))
  325. fprintf(o, "%s\n", line);
  326. else
  327. gc++;
  328. }
  329. fclose(o);
  330. xs *ofn = xs_fmt("%s.bak", fn);
  331. unlink(ofn);
  332. link(fn, ofn);
  333. rename(nfn, fn);
  334. }
  335. fclose(i);
  336. }
  337. pthread_mutex_unlock(&data_mutex);
  338. return gc;
  339. }
  340. int index_in_md5(const char *fn, const char *md5)
  341. /* checks if the md5 is already in the index */
  342. {
  343. FILE *f;
  344. int ret = 0;
  345. if ((f = fopen(fn, "r")) != NULL) {
  346. flock(fileno(f), LOCK_SH);
  347. char line[256];
  348. while (!ret && fgets(line, sizeof(line), f) != NULL) {
  349. line[32] = '\0';
  350. if (strcmp(line, md5) == 0)
  351. ret = 1;
  352. }
  353. fclose(f);
  354. }
  355. return ret;
  356. }
  357. int index_in(const char *fn, const char *id)
  358. /* checks if the object id is already in the index */
  359. {
  360. xs *md5 = xs_md5_hex(id, strlen(id));
  361. return index_in_md5(fn, md5);
  362. }
  363. int index_first(const char *fn, char *line, int size)
  364. /* reads the first entry of an index */
  365. {
  366. FILE *f;
  367. int ret = 0;
  368. if ((f = fopen(fn, "r")) != NULL) {
  369. flock(fileno(f), LOCK_SH);
  370. if (fgets(line, size, f) != NULL) {
  371. line[32] = '\0';
  372. ret = 1;
  373. }
  374. fclose(f);
  375. }
  376. return ret;
  377. }
  378. int index_len(const char *fn)
  379. /* returns the number of elements in an index */
  380. {
  381. struct stat st;
  382. int len = 0;
  383. if (stat(fn, &st) != -1)
  384. len = st.st_size / 33;
  385. return len;
  386. }
  387. xs_list *index_list(const char *fn, int max)
  388. /* returns an index as a list */
  389. {
  390. xs_list *list = xs_list_new();
  391. FILE *f;
  392. int n = 0;
  393. if ((f = fopen(fn, "r")) != NULL) {
  394. flock(fileno(f), LOCK_SH);
  395. char line[256];
  396. while (n < max && fgets(line, sizeof(line), f) != NULL) {
  397. if (line[0] != '-') {
  398. line[32] = '\0';
  399. list = xs_list_append(list, line);
  400. n++;
  401. }
  402. }
  403. fclose(f);
  404. }
  405. return list;
  406. }
  407. xs_list *index_list_desc(const char *fn, int skip, int show)
  408. /* returns an index as a list, in reverse order */
  409. {
  410. xs_list *list = xs_list_new();
  411. FILE *f;
  412. int n = 0;
  413. if ((f = fopen(fn, "r")) != NULL) {
  414. flock(fileno(f), LOCK_SH);
  415. char line[256];
  416. /* move to the end minus one entry (or more, if skipping entries) */
  417. if (!fseek(f, 0, SEEK_END) && !fseek(f, (skip + 1) * -33, SEEK_CUR)) {
  418. while (n < show && fgets(line, sizeof(line), f) != NULL) {
  419. if (line[0] != '-') {
  420. line[32] = '\0';
  421. list = xs_list_append(list, line);
  422. n++;
  423. }
  424. /* move backwards 2 entries */
  425. if (fseek(f, -66, SEEK_CUR) == -1)
  426. break;
  427. }
  428. }
  429. fclose(f);
  430. }
  431. return list;
  432. }
  433. /** objects **/
  434. static xs_str *_object_fn_by_md5(const char *md5, const char *func)
  435. {
  436. xs *bfn = xs_fmt("%s/object/%c%c", srv_basedir, md5[0], md5[1]);
  437. xs_str *ret;
  438. int ok = 1;
  439. /* an object deleted from an index; fail but don't bark */
  440. if (md5[0] == '-')
  441. ok = 0;
  442. else
  443. if (!xs_is_hex(md5) || strlen(md5) != 32) {
  444. srv_log(xs_fmt("_object_fn_by_md5() [from %s()]: bad md5 '%s'", func, md5));
  445. ok = 0;
  446. }
  447. if (ok) {
  448. mkdirx(bfn);
  449. ret = xs_fmt("%s/%s.json", bfn, md5);
  450. }
  451. else
  452. ret = xs_fmt("%s/object/invalid/invalid.json", srv_basedir);
  453. return ret;
  454. }
  455. static xs_str *_object_fn(const char *id)
  456. {
  457. xs *md5 = xs_md5_hex(id, strlen(id));
  458. return _object_fn_by_md5(md5, "_object_fn");
  459. }
  460. int object_here_by_md5(const char *id)
  461. /* checks if an object is already downloaded */
  462. {
  463. xs *fn = _object_fn_by_md5(id, "object_here_by_md5");
  464. return mtime(fn) > 0.0;
  465. }
  466. int object_here(const char *id)
  467. /* checks if an object is already downloaded */
  468. {
  469. xs *fn = _object_fn(id);
  470. return mtime(fn) > 0.0;
  471. }
  472. int object_get_by_md5(const char *md5, xs_dict **obj)
  473. /* returns a stored object, optionally of the requested type */
  474. {
  475. int status = 404;
  476. xs *fn = _object_fn_by_md5(md5, "object_get_by_md5");
  477. FILE *f;
  478. if ((f = fopen(fn, "r")) != NULL) {
  479. *obj = xs_json_load(f);
  480. fclose(f);
  481. if (*obj)
  482. status = 200;
  483. }
  484. else
  485. *obj = NULL;
  486. return status;
  487. }
  488. int object_get(const char *id, xs_dict **obj)
  489. /* returns a stored object, optionally of the requested type */
  490. {
  491. xs *md5 = xs_md5_hex(id, strlen(id));
  492. return object_get_by_md5(md5, obj);
  493. }
  494. int _object_add(const char *id, const xs_dict *obj, int ow)
  495. /* stores an object */
  496. {
  497. int status = 201; /* Created */
  498. xs *fn = _object_fn(id);
  499. FILE *f;
  500. if (mtime(fn) > 0.0) {
  501. if (!ow) {
  502. /* object already here */
  503. srv_debug(1, xs_fmt("object_add object already here %s", id));
  504. return 204; /* No content */
  505. }
  506. else
  507. status = 200;
  508. }
  509. if ((f = fopen(fn, "w")) != NULL) {
  510. flock(fileno(f), LOCK_EX);
  511. xs_json_dump(obj, 4, f);
  512. fclose(f);
  513. /* does this object has a parent? */
  514. char *in_reply_to = xs_dict_get(obj, "inReplyTo");
  515. if (!xs_is_null(in_reply_to) && *in_reply_to) {
  516. /* update the children index of the parent */
  517. xs *c_idx = _object_fn(in_reply_to);
  518. c_idx = xs_replace_i(c_idx, ".json", "_c.idx");
  519. if (!index_in(c_idx, id)) {
  520. index_add(c_idx, id);
  521. srv_debug(1, xs_fmt("object_add added child %s to %s", id, c_idx));
  522. }
  523. else
  524. srv_debug(1, xs_fmt("object_add %s child already in %s", id, c_idx));
  525. /* create a one-element index with the parent */
  526. xs *p_idx = xs_replace(fn, ".json", "_p.idx");
  527. if (mtime(p_idx) == 0.0) {
  528. index_add(p_idx, in_reply_to);
  529. srv_debug(1, xs_fmt("object_add added parent %s to %s", in_reply_to, p_idx));
  530. }
  531. }
  532. }
  533. else {
  534. srv_log(xs_fmt("object_add error writing %s (errno: %d)", fn, errno));
  535. status = 500;
  536. }
  537. srv_debug(1, xs_fmt("object_add %s %s %d", id, fn, status));
  538. return status;
  539. }
  540. int object_add(const char *id, const xs_dict *obj)
  541. /* stores an object */
  542. {
  543. return _object_add(id, obj, 0);
  544. }
  545. int object_add_ow(const char *id, const xs_dict *obj)
  546. /* stores an object (overwriting allowed) */
  547. {
  548. return _object_add(id, obj, 1);
  549. }
  550. int object_del_by_md5(const char *md5)
  551. /* deletes an object by its md5 */
  552. {
  553. int status = 404;
  554. xs *fn = _object_fn_by_md5(md5, "object_del_by_md5");
  555. if (unlink(fn) != -1) {
  556. status = 200;
  557. /* also delete associated indexes */
  558. xs *spec = xs_dup(fn);
  559. spec = xs_replace_i(spec, ".json", "*.idx");
  560. xs *files = xs_glob(spec, 0, 0);
  561. char *p, *v;
  562. p = files;
  563. while (xs_list_iter(&p, &v)) {
  564. srv_debug(1, xs_fmt("object_del index %s", v));
  565. unlink(v);
  566. }
  567. }
  568. srv_debug(1, xs_fmt("object_del %s %d", fn, status));
  569. return status;
  570. }
  571. int object_del(const char *id)
  572. /* deletes an object */
  573. {
  574. xs *md5 = xs_md5_hex(id, strlen(id));
  575. return object_del_by_md5(md5);
  576. }
  577. int object_del_if_unref(const char *id)
  578. /* deletes an object if its n_links < 2 */
  579. {
  580. xs *fn = _object_fn(id);
  581. int n_links;
  582. int ret = 0;
  583. if (mtime_nl(fn, &n_links) > 0.0 && n_links < 2)
  584. ret = object_del(id);
  585. return ret;
  586. }
  587. double object_ctime_by_md5(const char *md5)
  588. {
  589. xs *fn = _object_fn_by_md5(md5, "object_ctime_by_md5");
  590. return f_ctime(fn);
  591. }
  592. double object_ctime(const char *id)
  593. {
  594. xs *md5 = xs_md5_hex(id, strlen(id));
  595. return object_ctime_by_md5(md5);
  596. }
  597. double object_mtime_by_md5(const char *md5)
  598. {
  599. xs *fn = _object_fn_by_md5(md5, "object_mtime_by_md5");
  600. return mtime(fn);
  601. }
  602. double object_mtime(const char *id)
  603. {
  604. xs *md5 = xs_md5_hex(id, strlen(id));
  605. return object_mtime_by_md5(md5);
  606. }
  607. xs_str *_object_index_fn(const char *id, const char *idxsfx)
  608. /* returns the filename of an object's index */
  609. {
  610. xs_str *fn = _object_fn(id);
  611. return xs_replace_i(fn, ".json", idxsfx);
  612. }
  613. int object_likes_len(const char *id)
  614. /* returns the number of likes (without reading the index) */
  615. {
  616. xs *fn = _object_index_fn(id, "_l.idx");
  617. return index_len(fn);
  618. }
  619. int object_announces_len(const char *id)
  620. /* returns the number of announces (without reading the index) */
  621. {
  622. xs *fn = _object_index_fn(id, "_a.idx");
  623. return index_len(fn);
  624. }
  625. xs_list *object_children(const char *id)
  626. /* returns the list of an object's children */
  627. {
  628. xs *fn = _object_index_fn(id, "_c.idx");
  629. return index_list(fn, XS_ALL);
  630. }
  631. xs_list *object_likes(const char *id)
  632. {
  633. xs *fn = _object_index_fn(id, "_l.idx");
  634. return index_list(fn, XS_ALL);
  635. }
  636. xs_list *object_announces(const char *id)
  637. {
  638. xs *fn = _object_index_fn(id, "_a.idx");
  639. return index_list(fn, XS_ALL);
  640. }
  641. int object_parent(const char *md5, char *buf, int size)
  642. /* returns the object parent, if any */
  643. {
  644. xs *fn = _object_fn_by_md5(md5, "object_parent");
  645. fn = xs_replace_i(fn, ".json", "_p.idx");
  646. return index_first(fn, buf, size);
  647. }
  648. int object_admire(const char *id, const char *actor, int like)
  649. /* actor likes or announces this object */
  650. {
  651. int status = 200;
  652. xs *fn = _object_fn(id);
  653. fn = xs_replace_i(fn, ".json", like ? "_l.idx" : "_a.idx");
  654. if (!index_in(fn, actor)) {
  655. status = index_add(fn, actor);
  656. srv_debug(1, xs_fmt("object_admire (%s) %s %s", like ? "Like" : "Announce", actor, fn));
  657. }
  658. return status;
  659. }
  660. int object_unadmire(const char *id, const char *actor, int like)
  661. /* actor no longer likes or announces this object */
  662. {
  663. int status;
  664. xs *fn = _object_fn(id);
  665. fn = xs_replace_i(fn, ".json", like ? "_l.idx" : "_a.idx");
  666. status = index_del(fn, actor);
  667. srv_debug(0,
  668. xs_fmt("object_unadmire (%s) %s %s %d", like ? "Like" : "Announce", actor, fn, status));
  669. return status;
  670. }
  671. int _object_user_cache(snac *snac, const char *id, const char *cachedir, int del)
  672. /* adds or deletes from a user cache */
  673. {
  674. xs *ofn = _object_fn(id);
  675. xs *l = xs_split(ofn, "/");
  676. xs *cfn = xs_fmt("%s/%s/%s", snac->basedir, cachedir, xs_list_get(l, -1));
  677. xs *idx = xs_fmt("%s/%s.idx", snac->basedir, cachedir);
  678. int ret;
  679. if (del) {
  680. ret = unlink(cfn);
  681. index_del(idx, id);
  682. }
  683. else {
  684. if ((ret = link(ofn, cfn)) != -1)
  685. index_add(idx, id);
  686. }
  687. return ret;
  688. }
  689. int object_user_cache_add(snac *snac, const char *id, const char *cachedir)
  690. /* caches an object into a user cache */
  691. {
  692. return _object_user_cache(snac, id, cachedir, 0);
  693. }
  694. int object_user_cache_del(snac *snac, const char *id, const char *cachedir)
  695. /* deletes an object from a user cache */
  696. {
  697. return _object_user_cache(snac, id, cachedir, 1);
  698. }
  699. int object_user_cache_in(snac *snac, const char *id, const char *cachedir)
  700. /* checks if an object is stored in a cache */
  701. {
  702. xs *md5 = xs_md5_hex(id, strlen(id));
  703. xs *cfn = xs_fmt("%s/%s/%s.json", snac->basedir, cachedir, md5);
  704. return !!(mtime(cfn) != 0.0);
  705. }
  706. xs_list *object_user_cache_list(snac *snac, const char *cachedir, int max, int inv)
  707. /* returns the objects in a cache as a list */
  708. {
  709. xs *idx = xs_fmt("%s/%s.idx", snac->basedir, cachedir);
  710. return inv ? index_list_desc(idx, 0, max) : index_list(idx, max);
  711. }
  712. /** specialized functions **/
  713. /** followers **/
  714. int follower_add(snac *snac, const char *actor)
  715. /* adds a follower */
  716. {
  717. int ret = object_user_cache_add(snac, actor, "followers");
  718. snac_debug(snac, 2, xs_fmt("follower_add %s", actor));
  719. return ret == -1 ? 500 : 200;
  720. }
  721. int follower_del(snac *snac, const char *actor)
  722. /* deletes a follower */
  723. {
  724. int ret = object_user_cache_del(snac, actor, "followers");
  725. snac_debug(snac, 2, xs_fmt("follower_del %s", actor));
  726. return ret == -1 ? 404 : 200;
  727. }
  728. int follower_check(snac *snac, const char *actor)
  729. /* checks if someone is a follower */
  730. {
  731. return object_user_cache_in(snac, actor, "followers");
  732. }
  733. xs_list *follower_list(snac *snac)
  734. /* returns the list of followers */
  735. {
  736. xs *list = object_user_cache_list(snac, "followers", XS_ALL, 0);
  737. xs_list *fwers = xs_list_new();
  738. char *p, *v;
  739. /* resolve the list of md5 to be a list of actors */
  740. p = list;
  741. while (xs_list_iter(&p, &v)) {
  742. xs *a_obj = NULL;
  743. if (valid_status(object_get_by_md5(v, &a_obj))) {
  744. const char *actor = xs_dict_get(a_obj, "id");
  745. if (!xs_is_null(actor)) {
  746. /* check if the actor is still cached */
  747. xs *fn = xs_fmt("%s/followers/%s.json", snac->basedir, v);
  748. if (mtime(fn) > 0.0)
  749. fwers = xs_list_append(fwers, actor);
  750. }
  751. }
  752. }
  753. return fwers;
  754. }
  755. /** timeline **/
  756. double timeline_mtime(snac *snac)
  757. {
  758. xs *fn = xs_fmt("%s/private.idx", snac->basedir);
  759. return mtime(fn);
  760. }
  761. int timeline_touch(snac *snac)
  762. /* changes the date of the timeline index */
  763. {
  764. xs *fn = xs_fmt("%s/private.idx", snac->basedir);
  765. return utimes(fn, NULL);
  766. }
  767. xs_str *timeline_fn_by_md5(snac *snac, const char *md5)
  768. /* get the filename of an entry by md5 from any timeline */
  769. {
  770. xs_str *fn = xs_fmt("%s/private/%s.json", snac->basedir, md5);
  771. if (mtime(fn) == 0.0) {
  772. fn = xs_free(fn);
  773. fn = xs_fmt("%s/public/%s.json", snac->basedir, md5);
  774. if (mtime(fn) == 0.0)
  775. fn = xs_free(fn);
  776. }
  777. return fn;
  778. }
  779. int timeline_here(snac *snac, const char *md5)
  780. /* checks if an object is in the user cache */
  781. {
  782. xs *fn = timeline_fn_by_md5(snac, md5);
  783. return !(fn == NULL);
  784. }
  785. int timeline_get_by_md5(snac *snac, const char *md5, xs_dict **msg)
  786. /* gets a message from the timeline */
  787. {
  788. int status = 404;
  789. FILE *f = NULL;
  790. xs *fn = timeline_fn_by_md5(snac, md5);
  791. if (fn != NULL && (f = fopen(fn, "r")) != NULL) {
  792. *msg = xs_json_load(f);
  793. fclose(f);
  794. if (*msg != NULL)
  795. status = 200;
  796. }
  797. return status;
  798. }
  799. int timeline_del(snac *snac, char *id)
  800. /* deletes a message from the timeline */
  801. {
  802. /* delete from the user's caches */
  803. object_user_cache_del(snac, id, "public");
  804. object_user_cache_del(snac, id, "private");
  805. /* try to delete the object if it's not used elsewhere */
  806. return object_del_if_unref(id);
  807. }
  808. void timeline_update_indexes(snac *snac, const char *id)
  809. /* updates the indexes */
  810. {
  811. object_user_cache_add(snac, id, "private");
  812. if (xs_startswith(id, snac->actor)) {
  813. xs *msg = NULL;
  814. if (valid_status(object_get(id, &msg))) {
  815. /* if its ours and is public, also store in public */
  816. if (is_msg_public(msg)) {
  817. object_user_cache_add(snac, id, "public");
  818. /* also add it to the instance public timeline */
  819. xs *ipt = xs_fmt("%s/public.idx", srv_basedir);
  820. index_add(ipt, id);
  821. }
  822. }
  823. }
  824. }
  825. int timeline_add(snac *snac, const char *id, const xs_dict *o_msg)
  826. /* adds a message to the timeline */
  827. {
  828. int ret = object_add(id, o_msg);
  829. timeline_update_indexes(snac, id);
  830. tag_index(id, o_msg);
  831. snac_debug(snac, 1, xs_fmt("timeline_add %s", id));
  832. return ret;
  833. }
  834. int timeline_admire(snac *snac, const char *id, const char *admirer, int like)
  835. /* updates a timeline entry with a new admiration */
  836. {
  837. /* if we are admiring this, add to both timelines */
  838. if (!like && strcmp(admirer, snac->actor) == 0) {
  839. object_user_cache_add(snac, id, "public");
  840. object_user_cache_add(snac, id, "private");
  841. }
  842. int ret = object_admire(id, admirer, like);
  843. snac_debug(snac, 1, xs_fmt("timeline_admire (%s) %s %s",
  844. like ? "Like" : "Announce", id, admirer));
  845. return ret;
  846. }
  847. xs_list *timeline_top_level(snac *snac, xs_list *list)
  848. /* returns the top level md5 entries from this index */
  849. {
  850. xs_set seen;
  851. xs_list *p;
  852. xs_str *v;
  853. xs_set_init(&seen);
  854. p = list;
  855. while (xs_list_iter(&p, &v)) {
  856. char line[256] = "";
  857. strncpy(line, v, sizeof(line));
  858. for (;;) {
  859. char line2[256];
  860. /* if it doesn't have a parent, use this */
  861. if (!object_parent(line, line2, sizeof(line2)))
  862. break;
  863. /* well, there is a parent... but is it here? */
  864. if (!timeline_here(snac, line2))
  865. break;
  866. /* it's here! try again with its own parent */
  867. strncpy(line, line2, sizeof(line));
  868. }
  869. xs_set_add(&seen, line);
  870. }
  871. return xs_set_result(&seen);
  872. }
  873. xs_list *timeline_simple_list(snac *snac, const char *idx_name, int skip, int show)
  874. /* returns a timeline (with all entries) */
  875. {
  876. xs *idx = xs_fmt("%s/%s.idx", snac->basedir, idx_name);
  877. return index_list_desc(idx, skip, show);
  878. }
  879. xs_list *timeline_list(snac *snac, const char *idx_name, int skip, int show)
  880. /* returns a timeline (only top level entries) */
  881. {
  882. int c_max;
  883. /* maximum number of items in the timeline */
  884. c_max = xs_number_get(xs_dict_get(srv_config, "max_timeline_entries"));
  885. /* never more timeline entries than the configured maximum */
  886. if (show > c_max)
  887. show = c_max;
  888. xs *list = timeline_simple_list(snac, idx_name, skip, show);
  889. return timeline_top_level(snac, list);
  890. }
  891. xs_list *timeline_instance_list(int skip, int show)
  892. /* returns the timeline for the full instance */
  893. {
  894. xs *idx = xs_fmt("%s/public.idx", srv_basedir);
  895. return index_list_desc(idx, skip, show);
  896. }
  897. /** following **/
  898. /* this needs special treatment and cannot use the object db as is,
  899. with a link to a cached author, because we need the Follow object
  900. in case we need to unfollow (Undo + original Follow) */
  901. xs_str *_following_fn(snac *snac, const char *actor)
  902. {
  903. xs *md5 = xs_md5_hex(actor, strlen(actor));
  904. return xs_fmt("%s/following/%s.json", snac->basedir, md5);
  905. }
  906. int following_add(snac *snac, const char *actor, const xs_dict *msg)
  907. /* adds to the following list */
  908. {
  909. int ret = 201; /* created */
  910. xs *fn = _following_fn(snac, actor);
  911. FILE *f;
  912. xs *p_object = NULL;
  913. if (valid_status(following_get(snac, actor, &p_object))) {
  914. /* object already exists; if it's of type Accept,
  915. the actor is already being followed and confirmed,
  916. so do nothing */
  917. char *type = xs_dict_get(p_object, "type");
  918. if (!xs_is_null(type) && strcmp(type, "Accept") == 0) {
  919. snac_debug(snac, 1, xs_fmt("following_add actor already confirmed %s", actor));
  920. return 200;
  921. }
  922. }
  923. if ((f = fopen(fn, "w")) != NULL) {
  924. xs_json_dump(msg, 4, f);
  925. fclose(f);
  926. /* get the filename of the actor object */
  927. xs *actor_fn = _object_fn(actor);
  928. /* increase its reference count */
  929. fn = xs_replace_i(fn, ".json", "_a.json");
  930. link(actor_fn, fn);
  931. }
  932. else
  933. ret = 500;
  934. snac_debug(snac, 2, xs_fmt("following_add %s %s", actor, fn));
  935. return ret;
  936. }
  937. int following_del(snac *snac, const char *actor)
  938. /* we're not following this actor any longer */
  939. {
  940. xs *fn = _following_fn(snac, actor);
  941. snac_debug(snac, 2, xs_fmt("following_del %s %s", actor, fn));
  942. unlink(fn);
  943. /* also delete the reference to the author */
  944. fn = xs_replace_i(fn, ".json", "_a.json");
  945. unlink(fn);
  946. return 200;
  947. }
  948. int following_check(snac *snac, const char *actor)
  949. /* checks if we are following this actor */
  950. {
  951. xs *fn = _following_fn(snac, actor);
  952. return !!(mtime(fn) != 0.0);
  953. }
  954. int following_get(snac *snac, const char *actor, xs_dict **data)
  955. /* returns the 'Follow' object */
  956. {
  957. xs *fn = _following_fn(snac, actor);
  958. FILE *f;
  959. int status = 200;
  960. if ((f = fopen(fn, "r")) != NULL) {
  961. *data = xs_json_load(f);
  962. fclose(f);
  963. }
  964. else
  965. status = 404;
  966. return status;
  967. }
  968. xs_list *following_list(snac *snac)
  969. /* returns the list of people being followed */
  970. {
  971. xs *spec = xs_fmt("%s/following/" "*.json", snac->basedir);
  972. xs *glist = xs_glob(spec, 0, 0);
  973. xs_list *p;
  974. xs_str *v;
  975. xs_list *list = xs_list_new();
  976. /* iterate the list of files */
  977. p = glist;
  978. while (xs_list_iter(&p, &v)) {
  979. FILE *f;
  980. /* load the follower data */
  981. if ((f = fopen(v, "r")) != NULL) {
  982. xs *o = xs_json_load(f);
  983. fclose(f);
  984. if (o != NULL) {
  985. const char *type = xs_dict_get(o, "type");
  986. if (!xs_is_null(type) && strcmp(type, "Accept") == 0) {
  987. const char *actor = xs_dict_get(o, "actor");
  988. if (!xs_is_null(actor)) {
  989. list = xs_list_append(list, actor);
  990. /* check if there is a link to the actor object */
  991. xs *v2 = xs_replace(v, ".json", "_a.json");
  992. if (mtime(v2) == 0.0) {
  993. /* no; add a link to it */
  994. xs *actor_fn = _object_fn(actor);
  995. link(actor_fn, v2);
  996. }
  997. }
  998. }
  999. }
  1000. }
  1001. }
  1002. return list;
  1003. }
  1004. xs_str *_muted_fn(snac *snac, const char *actor)
  1005. {
  1006. xs *md5 = xs_md5_hex(actor, strlen(actor));
  1007. return xs_fmt("%s/muted/%s", snac->basedir, md5);
  1008. }
  1009. void mute(snac *snac, const char *actor)
  1010. /* mutes a moron */
  1011. {
  1012. xs *fn = _muted_fn(snac, actor);
  1013. FILE *f;
  1014. if ((f = fopen(fn, "w")) != NULL) {
  1015. fprintf(f, "%s\n", actor);
  1016. fclose(f);
  1017. snac_debug(snac, 2, xs_fmt("muted %s %s", actor, fn));
  1018. }
  1019. }
  1020. void unmute(snac *snac, const char *actor)
  1021. /* actor is no longer a moron */
  1022. {
  1023. xs *fn = _muted_fn(snac, actor);
  1024. unlink(fn);
  1025. snac_debug(snac, 2, xs_fmt("unmuted %s %s", actor, fn));
  1026. }
  1027. int is_muted(snac *snac, const char *actor)
  1028. /* check if someone is muted */
  1029. {
  1030. xs *fn = _muted_fn(snac, actor);
  1031. return !!(mtime(fn) != 0.0);
  1032. }
  1033. /** pinning **/
  1034. xs_str *_pinned_fn(snac *user, const char *id)
  1035. {
  1036. xs *md5 = xs_md5_hex(id, strlen(id));
  1037. return xs_fmt("%s/pinned/%s.json", user->basedir, md5);
  1038. }
  1039. int is_pinned(snac *user, const char *id)
  1040. /* returns true if this note is pinned */
  1041. {
  1042. xs *fn = _pinned_fn(user, id);
  1043. return !!(mtime(fn) != 0.0);
  1044. }
  1045. int is_pinned_by_md5(snac *user, const char *md5)
  1046. {
  1047. xs *fn = xs_fmt("%s/pinned/%s.json", user->basedir, md5);
  1048. return !!(mtime(fn) != 0.0);
  1049. }
  1050. int pin(snac *user, const char *id)
  1051. /* pins a message */
  1052. {
  1053. int ret = -2;
  1054. if (xs_startswith(id, user->actor)) {
  1055. if (is_pinned(user, id))
  1056. ret = -3;
  1057. else {
  1058. /* create the subfolder, if it does not exist */
  1059. xs *fn = xs_fmt("%s/pinned/", user->basedir);
  1060. mkdirx(fn);
  1061. ret = object_user_cache_add(user, id, "pinned");
  1062. }
  1063. }
  1064. return ret;
  1065. }
  1066. int unpin(snac *user, const char *id)
  1067. /* unpin a message */
  1068. {
  1069. int ret = object_user_cache_del(user, id, "pinned");
  1070. if (ret != -1) {
  1071. /* delete from the index */
  1072. xs *idx = xs_fmt("%s/pinned.idx", user->basedir);
  1073. index_del(idx, id);
  1074. }
  1075. return ret;
  1076. }
  1077. xs_list *pinned_list(snac *user)
  1078. /* return the lists of pinned posts */
  1079. {
  1080. return object_user_cache_list(user, "pinned", XS_ALL, 1);
  1081. }
  1082. xs_str *_hidden_fn(snac *snac, const char *id)
  1083. {
  1084. xs *md5 = xs_md5_hex(id, strlen(id));
  1085. return xs_fmt("%s/hidden/%s", snac->basedir, md5);
  1086. }
  1087. void hide(snac *snac, const char *id)
  1088. /* hides a message tree */
  1089. {
  1090. xs *fn = _hidden_fn(snac, id);
  1091. FILE *f;
  1092. if ((f = fopen(fn, "w")) != NULL) {
  1093. fprintf(f, "%s\n", id);
  1094. fclose(f);
  1095. snac_debug(snac, 2, xs_fmt("hidden %s %s", id, fn));
  1096. /* hide all the children */
  1097. xs *chld = object_children(id);
  1098. char *p, *v;
  1099. p = chld;
  1100. while (xs_list_iter(&p, &v)) {
  1101. xs *co = NULL;
  1102. /* resolve to get the id */
  1103. if (valid_status(object_get_by_md5(v, &co))) {
  1104. if ((v = xs_dict_get(co, "id")) != NULL)
  1105. hide(snac, v);
  1106. }
  1107. }
  1108. }
  1109. }
  1110. int is_hidden(snac *snac, const char *id)
  1111. /* check is id is hidden */
  1112. {
  1113. xs *fn = _hidden_fn(snac, id);
  1114. return !!(mtime(fn) != 0.0);
  1115. }
  1116. int actor_add(const char *actor, xs_dict *msg)
  1117. /* adds an actor */
  1118. {
  1119. return object_add_ow(actor, msg);
  1120. }
  1121. int actor_get(const char *actor, xs_dict **data)
  1122. /* returns an already downloaded actor */
  1123. {
  1124. int status = 200;
  1125. xs_dict *d = NULL;
  1126. if (xs_startswith(actor, srv_baseurl)) {
  1127. /* it's a (possible) local user */
  1128. xs *l = xs_split(actor, "/");
  1129. const char *uid = xs_list_get(l, -1);
  1130. snac user;
  1131. if (!xs_is_null(uid) && user_open(&user, uid)) {
  1132. if (data)
  1133. *data = msg_actor(&user);
  1134. user_free(&user);
  1135. return 200;
  1136. }
  1137. else
  1138. return 404;
  1139. }
  1140. /* read the object */
  1141. if (!valid_status(status = object_get(actor, &d))) {
  1142. d = xs_free(d);
  1143. return status;
  1144. }
  1145. /* if the object is corrupted, discard it */
  1146. if (xs_is_null(xs_dict_get(d, "id")) || xs_is_null(xs_dict_get(d, "type"))) {
  1147. srv_debug(1, xs_fmt("corrupted actor object %s", actor));
  1148. d = xs_free(d);
  1149. return 404;
  1150. }
  1151. if (data)
  1152. *data = d;
  1153. else
  1154. d = xs_free(d);
  1155. xs *fn = _object_fn(actor);
  1156. double max_time;
  1157. /* maximum time for the actor data to be considered stale */
  1158. max_time = 3600.0 * 36.0;
  1159. if (mtime(fn) + max_time < (double) time(NULL)) {
  1160. /* actor data exists but also stinks */
  1161. status = 205; /* "205: Reset Content" "110: Response Is Stale" */
  1162. }
  1163. return status;
  1164. }
  1165. int actor_get_refresh(snac *user, const char *actor, xs_dict **data)
  1166. /* gets an actor and requests and refresh if it's stale */
  1167. {
  1168. int status = actor_get(actor, data);
  1169. if (status == 205)
  1170. enqueue_actor_request(user, actor);
  1171. return status;
  1172. }
  1173. /** user limiting (announce blocks) **/
  1174. int limited(snac *user, const char *id, int cmd)
  1175. /* announce messages from a followed (0: check, 1: limit; 2: unlimit) */
  1176. {
  1177. int ret = 0;
  1178. xs *dir = xs_fmt("%s/limited", user->basedir);
  1179. xs *md5 = xs_md5_hex(id, strlen(id));
  1180. xs *fn = xs_fmt("%s/%s", dir, md5);
  1181. switch (cmd) {
  1182. case 0: /** check **/
  1183. ret = !!(mtime(fn) > 0.0);
  1184. break;
  1185. case 1: /** limit **/
  1186. mkdirx(dir);
  1187. if (mtime(fn) > 0.0)
  1188. ret = -1;
  1189. else {
  1190. FILE *f;
  1191. if ((f = fopen(fn, "w")) != NULL) {
  1192. fprintf(f, "%s\n", id);
  1193. fclose(f);
  1194. }
  1195. else
  1196. ret = -2;
  1197. }
  1198. break;
  1199. case 2: /** unlimit **/
  1200. if (mtime(fn) > 0.0)
  1201. ret = unlink(fn);
  1202. else
  1203. ret = -1;
  1204. break;
  1205. }
  1206. return ret;
  1207. }
  1208. /** tag indexing **/
  1209. void tag_index(const char *id, const xs_dict *obj)
  1210. /* update the tag indexes for this object */
  1211. {
  1212. xs_list *tags = xs_dict_get(obj, "tag");
  1213. if (is_msg_public(obj) && xs_type(tags) == XSTYPE_LIST && xs_list_len(tags) > 0) {
  1214. xs *g_tag_dir = xs_fmt("%s/tag", srv_basedir);
  1215. mkdirx(g_tag_dir);
  1216. xs_dict *v;
  1217. while (xs_list_iter(&tags, &v)) {
  1218. char *type = xs_dict_get(v, "type");
  1219. char *name = xs_dict_get(v, "name");
  1220. if (!xs_is_null(type) && !xs_is_null(name) && strcmp(type, "Hashtag") == 0) {
  1221. while (*name == '#' || *name == '@')
  1222. name++;
  1223. if (*name == '\0')
  1224. continue;
  1225. name = xs_tolower_i(name);
  1226. xs *md5_tag = xs_md5_hex(name, strlen(name));
  1227. xs *tag_dir = xs_fmt("%s/%c%c", g_tag_dir, md5_tag[0], md5_tag[1]);
  1228. mkdirx(tag_dir);
  1229. xs *g_tag_idx = xs_fmt("%s/%s.idx", tag_dir, md5_tag);
  1230. index_add(g_tag_idx, id);
  1231. FILE *f;
  1232. xs *g_tag_name = xs_replace(g_tag_idx, ".idx", ".tag");
  1233. if ((f = fopen(g_tag_name, "w")) != NULL) {
  1234. fprintf(f, "%s\n", name);
  1235. fclose(f);
  1236. }
  1237. srv_debug(0, xs_fmt("tagged %s #%s (#%s)", id, name, md5_tag));
  1238. }
  1239. }
  1240. }
  1241. }
  1242. xs_list *tag_search(char *tag, int skip, int show)
  1243. /* returns the list of posts tagged with tag */
  1244. {
  1245. if (*tag == '#')
  1246. tag++;
  1247. xs *lw_tag = xs_tolower_i(xs_dup(tag));
  1248. xs *md5 = xs_md5_hex(lw_tag, strlen(lw_tag));
  1249. xs *idx = xs_fmt("%s/tag/%c%c/%s.idx", srv_basedir, md5[0], md5[1], md5);
  1250. return index_list_desc(idx, skip, show);
  1251. }
  1252. /** static data **/
  1253. static int _load_raw_file(const char *fn, xs_val **data, int *size,
  1254. const char *inm, xs_str **etag)
  1255. /* loads a cached file */
  1256. {
  1257. int status = 404;
  1258. if (fn) {
  1259. double tm = mtime(fn);
  1260. if (tm > 0.0) {
  1261. /* file exists; build the etag */
  1262. xs *e = xs_fmt("W/\"snac-%.0lf\"", tm);
  1263. /* if if-none-match is set, check if it's the same */
  1264. if (!xs_is_null(inm) && strcmp(e, inm) == 0) {
  1265. /* client has the newest version */
  1266. status = 304;
  1267. }
  1268. else {
  1269. /* newer or never downloaded; read the full file */
  1270. FILE *f;
  1271. if ((f = fopen(fn, "rb")) != NULL) {
  1272. *size = XS_ALL;
  1273. *data = xs_read(f, size);
  1274. fclose(f);
  1275. status = 200;
  1276. }
  1277. }
  1278. /* if caller wants the etag, return it */
  1279. if (etag != NULL)
  1280. *etag = xs_dup(e);
  1281. srv_debug(1, xs_fmt("_load_raw_file(): %s %d", fn, status));
  1282. }
  1283. }
  1284. return status;
  1285. }
  1286. xs_str *_static_fn(snac *snac, const char *id)
  1287. /* gets the filename for a static file */
  1288. {
  1289. if (strchr(id, '/'))
  1290. return NULL;
  1291. else
  1292. return xs_fmt("%s/static/%s", snac->basedir, id);
  1293. }
  1294. int static_get(snac *snac, const char *id, xs_val **data, int *size,
  1295. const char *inm, xs_str **etag)
  1296. /* returns static content */
  1297. {
  1298. xs *fn = _static_fn(snac, id);
  1299. return _load_raw_file(fn, data, size, inm, etag);
  1300. }
  1301. void static_put(snac *snac, const char *id, const char *data, int size)
  1302. /* writes status content */
  1303. {
  1304. xs *fn = _static_fn(snac, id);
  1305. FILE *f;
  1306. if (fn && (f = fopen(fn, "wb")) != NULL) {
  1307. fwrite(data, size, 1, f);
  1308. fclose(f);
  1309. }
  1310. }
  1311. void static_put_meta(snac *snac, const char *id, const char *str)
  1312. /* puts metadata (i.e. a media description string) to id */
  1313. {
  1314. xs *fn = _static_fn(snac, id);
  1315. if (fn) {
  1316. fn = xs_str_cat(fn, ".txt");
  1317. FILE *f;
  1318. if ((f = fopen(fn, "w")) != NULL) {
  1319. fprintf(f, "%s\n", str);
  1320. fclose(f);
  1321. }
  1322. }
  1323. }
  1324. xs_str *static_get_meta(snac *snac, const char *id)
  1325. /* gets metadata from a media */
  1326. {
  1327. xs *fn = _static_fn(snac, id);
  1328. xs_str *r = NULL;
  1329. if (fn) {
  1330. fn = xs_str_cat(fn, ".txt");
  1331. FILE *f;
  1332. if ((f = fopen(fn, "r")) != NULL) {
  1333. r = xs_strip_i(xs_readline(f));
  1334. fclose(f);
  1335. }
  1336. }
  1337. else
  1338. r = xs_str_new("");
  1339. return r;
  1340. }
  1341. /** history **/
  1342. xs_str *_history_fn(snac *snac, const char *id)
  1343. /* gets the filename for the history */
  1344. {
  1345. if (strchr(id, '/'))
  1346. return NULL;
  1347. else
  1348. return xs_fmt("%s/history/%s", snac->basedir, id);
  1349. }
  1350. double history_mtime(snac *snac, const char *id)
  1351. {
  1352. double t = 0.0;
  1353. xs *fn = _history_fn(snac, id);
  1354. if (fn != NULL)
  1355. t = mtime(fn);
  1356. return t;
  1357. }
  1358. void history_add(snac *snac, const char *id, const char *content, int size,
  1359. xs_str **etag)
  1360. /* adds something to the history */
  1361. {
  1362. xs *fn = _history_fn(snac, id);
  1363. FILE *f;
  1364. if (fn && (f = fopen(fn, "w")) != NULL) {
  1365. fwrite(content, size, 1, f);
  1366. fclose(f);
  1367. if (etag) {
  1368. double tm = mtime(fn);
  1369. *etag = xs_fmt("W/\"snac-%.0lf\"", tm);
  1370. }
  1371. }
  1372. }
  1373. int history_get(snac *snac, const char *id, xs_str **content, int *size,
  1374. const char *inm, xs_str **etag)
  1375. {
  1376. xs *fn = _history_fn(snac, id);
  1377. return _load_raw_file(fn, content, size, inm, etag);
  1378. }
  1379. int history_del(snac *snac, const char *id)
  1380. {
  1381. xs *fn = _history_fn(snac, id);
  1382. if (fn)
  1383. return unlink(fn);
  1384. else
  1385. return -1;
  1386. }
  1387. xs_list *history_list(snac *snac)
  1388. {
  1389. xs *spec = xs_fmt("%s/history/" "*.html", snac->basedir);
  1390. return xs_glob(spec, 1, 1);
  1391. }
  1392. void lastlog_write(snac *snac, const char *source)
  1393. /* writes the last time the user logged in */
  1394. {
  1395. xs *fn = xs_fmt("%s/lastlog.txt", snac->basedir);
  1396. FILE *f;
  1397. if ((f = fopen(fn, "w")) != NULL) {
  1398. fprintf(f, "%lf %s\n", ftime(), source);
  1399. fclose(f);
  1400. }
  1401. }
  1402. /** inbox collection **/
  1403. void inbox_add(const char *inbox)
  1404. /* collects a shared inbox */
  1405. {
  1406. /* don't collect ourselves */
  1407. if (xs_startswith(inbox, srv_baseurl))
  1408. return;
  1409. xs *md5 = xs_md5_hex(inbox, strlen(inbox));
  1410. xs *fn = xs_fmt("%s/inbox/%s", srv_basedir, md5);
  1411. FILE *f;
  1412. if ((f = fopen(fn, "w")) != NULL) {
  1413. fprintf(f, "%s\n", inbox);
  1414. fclose(f);
  1415. }
  1416. }
  1417. void inbox_add_by_actor(const xs_dict *actor)
  1418. /* collects an actor's shared inbox, if it has one */
  1419. {
  1420. char *v;
  1421. if (!xs_is_null(v = xs_dict_get(actor, "endpoints")) &&
  1422. !xs_is_null(v = xs_dict_get(v, "sharedInbox"))) {
  1423. /* only collect this inbox if its instance is not blocked */
  1424. if (!is_instance_blocked(v))
  1425. inbox_add(v);
  1426. }
  1427. }
  1428. xs_list *inbox_list(void)
  1429. /* returns the collected inboxes as a list */
  1430. {
  1431. xs_list *ibl = xs_list_new();
  1432. xs *spec = xs_fmt("%s/inbox/" "*", srv_basedir);
  1433. xs *files = xs_glob(spec, 0, 0);
  1434. xs_list *p = files;
  1435. xs_val *v;
  1436. while (xs_list_iter(&p, &v)) {
  1437. FILE *f;
  1438. if ((f = fopen(v, "r")) != NULL) {
  1439. xs *line = xs_readline(f);
  1440. if (line) {
  1441. line = xs_strip_i(line);
  1442. ibl = xs_list_append(ibl, line);
  1443. }
  1444. fclose(f);
  1445. }
  1446. }
  1447. return ibl;
  1448. }
  1449. /** instance-wide operations **/
  1450. xs_str *_instance_block_fn(const char *instance)
  1451. {
  1452. xs *s1 = xs_replace(instance, "https:/" "/", "");
  1453. xs *l = xs_split(s1, "/");
  1454. char *p = xs_list_get(l, 0);
  1455. xs *md5 = xs_md5_hex(p, strlen(p));
  1456. return xs_fmt("%s/block/%s", srv_basedir, md5);
  1457. }
  1458. int is_instance_blocked(const char *instance)
  1459. {
  1460. xs *fn = _instance_block_fn(instance);
  1461. return !!(mtime(fn) != 0.0);
  1462. }
  1463. int instance_block(const char *instance)
  1464. /* blocks a full instance */
  1465. {
  1466. int ret;
  1467. /* create the subdir */
  1468. xs *dir = xs_fmt("%s/block/", srv_basedir);
  1469. mkdirx(dir);
  1470. if (!is_instance_blocked(instance)) {
  1471. xs *fn = _instance_block_fn(instance);
  1472. FILE *f;
  1473. if ((f = fopen(fn, "w")) != NULL) {
  1474. fprintf(f, "%s\n", instance);
  1475. fclose(f);
  1476. ret = 0;
  1477. }
  1478. else
  1479. ret = -1;
  1480. }
  1481. else
  1482. ret = -2;
  1483. return ret;
  1484. }
  1485. int instance_unblock(const char *instance)
  1486. /* unblocks a full instance */
  1487. {
  1488. int ret;
  1489. if (is_instance_blocked(instance)) {
  1490. xs *fn = _instance_block_fn(instance);
  1491. ret = unlink(fn);
  1492. }
  1493. else
  1494. ret = -2;
  1495. return ret;
  1496. }
  1497. /** content filtering **/
  1498. int content_check(const char *file, const xs_dict *msg)
  1499. /* checks if a message's content matches any of the regexes in file */
  1500. /* file format: one regex per line */
  1501. {
  1502. xs *fn = xs_fmt("%s/%s", srv_basedir, file);
  1503. FILE *f;
  1504. int r = 0;
  1505. char *v = xs_dict_get(msg, "content");
  1506. if (xs_type(v) == XSTYPE_STRING && *v) {
  1507. if ((f = fopen(fn, "r")) != NULL) {
  1508. srv_debug(1, xs_fmt("content_check: loading regexes from %s", fn));
  1509. /* massage content (strip HTML tags, etc.) */
  1510. xs *c = xs_regex_replace(v, "<[^>]+>", " ");
  1511. c = xs_regex_replace_i(c, " {2,}", " ");
  1512. c = xs_tolower_i(c);
  1513. while (!r && !feof(f)) {
  1514. xs *rx = xs_strip_i(xs_readline(f));
  1515. if (*rx) {
  1516. xs *l = xs_regex_select_n(c, rx, 1);
  1517. if (xs_list_len(l)) {
  1518. srv_debug(1, xs_fmt("content_check: match for '%s'", rx));
  1519. r = 1;
  1520. }
  1521. }
  1522. }
  1523. fclose(f);
  1524. }
  1525. }
  1526. return r;
  1527. }
  1528. /** notifications **/
  1529. xs_str *notify_check_time(snac *snac, int reset)
  1530. /* gets or resets the latest notification check time */
  1531. {
  1532. xs_str *t = NULL;
  1533. xs *fn = xs_fmt("%s/notifydate.txt", snac->basedir);
  1534. FILE *f;
  1535. if (reset) {
  1536. if ((f = fopen(fn, "w")) != NULL) {
  1537. t = tid(0);
  1538. fprintf(f, "%s\n", t);
  1539. fclose(f);
  1540. }
  1541. }
  1542. else {
  1543. if ((f = fopen(fn, "r")) != NULL) {
  1544. t = xs_readline(f);
  1545. fclose(f);
  1546. }
  1547. else
  1548. /* never set before */
  1549. t = xs_fmt("%16.6f", 0.0);
  1550. }
  1551. return t;
  1552. }
  1553. void notify_add(snac *snac, const char *type, const char *utype,
  1554. const char *actor, const char *objid)
  1555. /* adds a new notification */
  1556. {
  1557. xs *ntid = tid(0);
  1558. xs *fn = xs_fmt("%s/notify/", snac->basedir);
  1559. xs *date = xs_str_utctime(0, ISO_DATE_SPEC);
  1560. FILE *f;
  1561. /* create the directory */
  1562. mkdirx(fn);
  1563. fn = xs_str_cat(fn, ntid);
  1564. fn = xs_str_cat(fn, ".json");
  1565. xs *noti = xs_dict_new();
  1566. noti = xs_dict_append(noti, "id", ntid);
  1567. noti = xs_dict_append(noti, "type", type);
  1568. noti = xs_dict_append(noti, "utype", utype);
  1569. noti = xs_dict_append(noti, "actor", actor);
  1570. noti = xs_dict_append(noti, "date", date);
  1571. if (!xs_is_null(objid))
  1572. noti = xs_dict_append(noti, "objid", objid);
  1573. if ((f = fopen(fn, "w")) != NULL) {
  1574. xs_json_dump(noti, 4, f);
  1575. fclose(f);
  1576. }
  1577. /* add it to the index if it already exists */
  1578. xs *idx = xs_fmt("%s/notify.idx", snac->basedir);
  1579. if (mtime(idx) != 0.0) {
  1580. pthread_mutex_lock(&data_mutex);
  1581. if ((f = fopen(idx, "a")) != NULL) {
  1582. fprintf(f, "%-32s\n", ntid);
  1583. fclose(f);
  1584. }
  1585. pthread_mutex_unlock(&data_mutex);
  1586. }
  1587. }
  1588. xs_dict *notify_get(snac *snac, const char *id)
  1589. /* gets a notification */
  1590. {
  1591. /* base file */
  1592. xs *fn = xs_fmt("%s/notify/%s", snac->basedir, id);
  1593. /* strip spaces and add extension */
  1594. fn = xs_strip_i(fn);
  1595. fn = xs_str_cat(fn, ".json");
  1596. FILE *f;
  1597. xs_dict *out = NULL;
  1598. if ((f = fopen(fn, "r")) != NULL) {
  1599. out = xs_json_load(f);
  1600. fclose(f);
  1601. }
  1602. return out;
  1603. }
  1604. xs_list *notify_list(snac *snac, int skip, int show)
  1605. /* returns a list of notification ids */
  1606. {
  1607. xs *idx = xs_fmt("%s/notify.idx", snac->basedir);
  1608. if (mtime(idx) == 0.0) {
  1609. /* create the index from scratch */
  1610. FILE *f;
  1611. pthread_mutex_lock(&data_mutex);
  1612. if ((f = fopen(idx, "w")) != NULL) {
  1613. xs *spec = xs_fmt("%s/notify/" "*.json", snac->basedir);
  1614. xs *lst = xs_glob(spec, 1, 0);
  1615. xs_list *p = lst;
  1616. char *v;
  1617. while (xs_list_iter(&p, &v)) {
  1618. char *p = strrchr(v, '.');
  1619. if (p) {
  1620. *p = '\0';
  1621. fprintf(f, "%-32s\n", v);
  1622. }
  1623. }
  1624. fclose(f);
  1625. }
  1626. pthread_mutex_unlock(&data_mutex);
  1627. }
  1628. return index_list_desc(idx, skip, show);
  1629. }
  1630. int notify_new_num(snac *snac)
  1631. /* counts the number of new notifications */
  1632. {
  1633. xs *t = notify_check_time(snac, 0);
  1634. xs *lst = notify_list(snac, 0, XS_ALL);
  1635. int cnt = 0;
  1636. xs_list *p = lst;
  1637. xs_str *v;
  1638. while (xs_list_iter(&p, &v)) {
  1639. xs *id = xs_strip_i(xs_dup(v));
  1640. /* old? count no more */
  1641. if (strcmp(id, t) < 0)
  1642. break;
  1643. cnt++;
  1644. }
  1645. return cnt;
  1646. }
  1647. void notify_clear(snac *snac)
  1648. /* clears all notifications */
  1649. {
  1650. xs *spec = xs_fmt("%s/notify/" "*", snac->basedir);
  1651. xs *lst = xs_glob(spec, 0, 0);
  1652. xs_list *p = lst;
  1653. xs_str *v;
  1654. while (xs_list_iter(&p, &v))
  1655. unlink(v);
  1656. xs *idx = xs_fmt("%s/notify.idx", snac->basedir);
  1657. if (mtime(idx) != 0.0) {
  1658. pthread_mutex_lock(&data_mutex);
  1659. truncate(idx, 0);
  1660. pthread_mutex_unlock(&data_mutex);
  1661. }
  1662. }
  1663. /** the queue **/
  1664. static xs_dict *_enqueue_put(const char *fn, xs_dict *msg)
  1665. /* writes safely to the queue */
  1666. {
  1667. xs *tfn = xs_fmt("%s.tmp", fn);
  1668. FILE *f;
  1669. if ((f = fopen(tfn, "w")) != NULL) {
  1670. xs_json_dump(msg, 4, f);
  1671. fclose(f);
  1672. rename(tfn, fn);
  1673. }
  1674. return msg;
  1675. }
  1676. static xs_dict *_new_qmsg(const char *type, const xs_val *msg, int retries)
  1677. /* creates a queue message */
  1678. {
  1679. int qrt = xs_number_get(xs_dict_get(srv_config, "queue_retry_minutes"));
  1680. xs *ntid = tid(retries * 60 * qrt);
  1681. xs *rn = xs_number_new(retries);
  1682. xs_dict *qmsg = xs_dict_new();
  1683. qmsg = xs_dict_append(qmsg, "type", type);
  1684. qmsg = xs_dict_append(qmsg, "message", msg);
  1685. qmsg = xs_dict_append(qmsg, "retries", rn);
  1686. qmsg = xs_dict_append(qmsg, "ntid", ntid);
  1687. return qmsg;
  1688. }
  1689. void enqueue_input(snac *snac, const xs_dict *msg, const xs_dict *req, int retries)
  1690. /* enqueues an input message */
  1691. {
  1692. xs *qmsg = _new_qmsg("input", msg, retries);
  1693. char *ntid = xs_dict_get(qmsg, "ntid");
  1694. xs *fn = xs_fmt("%s/queue/%s.json", snac->basedir, ntid);
  1695. qmsg = xs_dict_append(qmsg, "req", req);
  1696. qmsg = _enqueue_put(fn, qmsg);
  1697. snac_debug(snac, 1, xs_fmt("enqueue_input %s", xs_dict_get(msg, "id")));
  1698. }
  1699. void enqueue_shared_input(const xs_dict *msg, const xs_dict *req, int retries)
  1700. /* enqueues an input message from the shared input */
  1701. {
  1702. xs *qmsg = _new_qmsg("input", msg, retries);
  1703. char *ntid = xs_dict_get(qmsg, "ntid");
  1704. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1705. qmsg = xs_dict_append(qmsg, "req", req);
  1706. qmsg = _enqueue_put(fn, qmsg);
  1707. srv_debug(1, xs_fmt("enqueue_shared_input %s", xs_dict_get(msg, "id")));
  1708. }
  1709. void enqueue_output_raw(const char *keyid, const char *seckey,
  1710. xs_dict *msg, xs_str *inbox, int retries, int p_status)
  1711. /* enqueues an output message to an inbox */
  1712. {
  1713. xs *qmsg = _new_qmsg("output", msg, retries);
  1714. char *ntid = xs_dict_get(qmsg, "ntid");
  1715. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1716. xs *ns = xs_number_new(p_status);
  1717. qmsg = xs_dict_append(qmsg, "p_status", ns);
  1718. qmsg = xs_dict_append(qmsg, "inbox", inbox);
  1719. qmsg = xs_dict_append(qmsg, "keyid", keyid);
  1720. qmsg = xs_dict_append(qmsg, "seckey", seckey);
  1721. /* if it's to be sent right now, bypass the disk queue and post the job */
  1722. if (retries == 0 && p_state != NULL)
  1723. job_post(qmsg, 0);
  1724. else {
  1725. qmsg = _enqueue_put(fn, qmsg);
  1726. srv_debug(1, xs_fmt("enqueue_output %s %s %d", inbox, fn, retries));
  1727. }
  1728. }
  1729. void enqueue_output(snac *snac, xs_dict *msg, xs_str *inbox, int retries, int p_status)
  1730. /* enqueues an output message to an inbox */
  1731. {
  1732. if (xs_startswith(inbox, snac->actor)) {
  1733. snac_debug(snac, 1, xs_str_new("refusing enqueue to myself"));
  1734. return;
  1735. }
  1736. char *seckey = xs_dict_get(snac->key, "secret");
  1737. enqueue_output_raw(snac->actor, seckey, msg, inbox, retries, p_status);
  1738. }
  1739. void enqueue_output_by_actor(snac *snac, xs_dict *msg, const xs_str *actor, int retries)
  1740. /* enqueues an output message for an actor */
  1741. {
  1742. xs *inbox = get_actor_inbox(actor);
  1743. if (!xs_is_null(inbox))
  1744. enqueue_output(snac, msg, inbox, retries, 0);
  1745. else
  1746. snac_log(snac, xs_fmt("enqueue_output_by_actor cannot get inbox %s", actor));
  1747. }
  1748. void enqueue_email(xs_str *msg, int retries)
  1749. /* enqueues an email message to be sent */
  1750. {
  1751. xs *qmsg = _new_qmsg("email", msg, retries);
  1752. char *ntid = xs_dict_get(qmsg, "ntid");
  1753. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1754. qmsg = _enqueue_put(fn, qmsg);
  1755. srv_debug(1, xs_fmt("enqueue_email %d", retries));
  1756. }
  1757. void enqueue_telegram(const xs_str *msg, const char *bot, const char *chat_id)
  1758. /* enqueues a message to be sent via Telegram */
  1759. {
  1760. xs *qmsg = _new_qmsg("telegram", msg, 0);
  1761. char *ntid = xs_dict_get(qmsg, "ntid");
  1762. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1763. qmsg = xs_dict_append(qmsg, "bot", bot);
  1764. qmsg = xs_dict_append(qmsg, "chat_id", chat_id);
  1765. qmsg = _enqueue_put(fn, qmsg);
  1766. srv_debug(1, xs_fmt("enqueue_telegram %s %s", bot, chat_id));
  1767. }
  1768. void enqueue_ntfy(const xs_str *msg, const char *ntfy_server, const char *ntfy_token)
  1769. /* enqueues a message to be sent via ntfy */
  1770. {
  1771. xs *qmsg = _new_qmsg("ntfy", msg, 0);
  1772. char *ntid = xs_dict_get(qmsg, "ntid");
  1773. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1774. qmsg = xs_dict_append(qmsg, "ntfy_server", ntfy_server);
  1775. qmsg = xs_dict_append(qmsg, "ntfy_token", ntfy_token);
  1776. qmsg = _enqueue_put(fn, qmsg);
  1777. srv_debug(1, xs_fmt("enqueue_ntfy %s %s", ntfy_server, ntfy_token));
  1778. }
  1779. void enqueue_message(snac *snac, const xs_dict *msg)
  1780. /* enqueues an output message */
  1781. {
  1782. xs *qmsg = _new_qmsg("message", msg, 0);
  1783. char *ntid = xs_dict_get(qmsg, "ntid");
  1784. xs *fn = xs_fmt("%s/queue/%s.json", snac->basedir, ntid);
  1785. qmsg = _enqueue_put(fn, qmsg);
  1786. snac_debug(snac, 0, xs_fmt("enqueue_message %s", xs_dict_get(msg, "id")));
  1787. }
  1788. void enqueue_close_question(snac *user, const char *id, int end_secs)
  1789. /* enqueues the closing of a question */
  1790. {
  1791. xs *qmsg = _new_qmsg("close_question", id, 0);
  1792. xs *ntid = tid(end_secs);
  1793. xs *fn = xs_fmt("%s/queue/%s.json", user->basedir, ntid);
  1794. qmsg = xs_dict_set(qmsg, "ntid", ntid);
  1795. qmsg = _enqueue_put(fn, qmsg);
  1796. snac_debug(user, 0, xs_fmt("enqueue_close_question %s", id));
  1797. }
  1798. void enqueue_verify_links(snac *user)
  1799. /* enqueues a link verification */
  1800. {
  1801. xs *qmsg = _new_qmsg("verify_links", "", 0);
  1802. char *ntid = xs_dict_get(qmsg, "ntid");
  1803. xs *fn = xs_fmt("%s/queue/%s.json", user->basedir, ntid);
  1804. qmsg = _enqueue_put(fn, qmsg);
  1805. snac_debug(user, 1, xs_fmt("enqueue_verify_links %s", user->actor));
  1806. }
  1807. void enqueue_actor_request(snac *user, const char *actor)
  1808. /* enqueues an actor request */
  1809. {
  1810. xs *qmsg = _new_qmsg("actor_request", "", 0);
  1811. char *ntid = xs_dict_get(qmsg, "ntid");
  1812. xs *fn = xs_fmt("%s/queue/%s.json", user->basedir, ntid);
  1813. qmsg = xs_dict_append(qmsg, "actor", actor);
  1814. qmsg = _enqueue_put(fn, qmsg);
  1815. snac_debug(user, 1, xs_fmt("enqueue_actor_request %s", user->actor));
  1816. }
  1817. void enqueue_request_replies(snac *user, const char *id)
  1818. /* enqueues a request for the replies of a message */
  1819. {
  1820. /* test first if this precise request is already in the queue */
  1821. xs *queue = user_queue(user);
  1822. xs_list *p = queue;
  1823. xs_str *v;
  1824. while (xs_list_iter(&p, &v)) {
  1825. xs *q_item = queue_get(v);
  1826. if (q_item != NULL) {
  1827. const char *type = xs_dict_get(q_item, "type");
  1828. const char *msg = xs_dict_get(q_item, "message");
  1829. if (type && msg && strcmp(type, "request_replies") == 0 && strcmp(msg, id) == 0) {
  1830. /* don't requeue */
  1831. snac_debug(user, 1, xs_fmt("enqueue_request_replies already here %s", id));
  1832. return;
  1833. }
  1834. }
  1835. }
  1836. /* not there; enqueue the request with a small delay */
  1837. xs *qmsg = _new_qmsg("request_replies", id, 0);
  1838. xs *ntid = tid(10);
  1839. xs *fn = xs_fmt("%s/queue/%s.json", user->basedir, ntid);
  1840. qmsg = xs_dict_set(qmsg, "ntid", ntid);
  1841. qmsg = _enqueue_put(fn, qmsg);
  1842. snac_debug(user, 2, xs_fmt("enqueue_request_replies %s", id));
  1843. }
  1844. int was_question_voted(snac *user, const char *id)
  1845. /* returns true if the user voted in this poll */
  1846. {
  1847. xs *children = object_children(id);
  1848. int voted = 0;
  1849. xs_list *p;
  1850. xs_str *md5;
  1851. p = children;
  1852. while (xs_list_iter(&p, &md5)) {
  1853. xs *obj = NULL;
  1854. if (valid_status(object_get_by_md5(md5, &obj))) {
  1855. char *atto = get_atto(obj);
  1856. if (atto && strcmp(atto, user->actor) == 0 &&
  1857. !xs_is_null(xs_dict_get(obj, "name"))) {
  1858. voted = 1;
  1859. break;
  1860. }
  1861. }
  1862. }
  1863. return voted;
  1864. }
  1865. xs_list *user_queue(snac *snac)
  1866. /* returns a list with filenames that can be dequeued */
  1867. {
  1868. xs *spec = xs_fmt("%s/queue/" "*.json", snac->basedir);
  1869. xs_list *list = xs_list_new();
  1870. time_t t = time(NULL);
  1871. xs_list *p;
  1872. xs_val *v;
  1873. xs *fns = xs_glob(spec, 0, 0);
  1874. p = fns;
  1875. while (xs_list_iter(&p, &v)) {
  1876. /* get the retry time from the basename */
  1877. char *bn = strrchr(v, '/');
  1878. time_t t2 = atol(bn + 1);
  1879. if (t2 > t)
  1880. snac_debug(snac, 2, xs_fmt("user_queue not yet time for %s [%ld]", v, t));
  1881. else {
  1882. list = xs_list_append(list, v);
  1883. snac_debug(snac, 2, xs_fmt("user_queue ready for %s", v));
  1884. }
  1885. }
  1886. return list;
  1887. }
  1888. xs_list *queue(void)
  1889. /* returns a list with filenames that can be dequeued */
  1890. {
  1891. xs *spec = xs_fmt("%s/queue/" "*.json", srv_basedir);
  1892. xs_list *list = xs_list_new();
  1893. time_t t = time(NULL);
  1894. xs_list *p;
  1895. xs_val *v;
  1896. xs *fns = xs_glob(spec, 0, 0);
  1897. p = fns;
  1898. while (xs_list_iter(&p, &v)) {
  1899. /* get the retry time from the basename */
  1900. char *bn = strrchr(v, '/');
  1901. time_t t2 = atol(bn + 1);
  1902. if (t2 > t)
  1903. srv_debug(2, xs_fmt("queue not yet time for %s [%ld]", v, t));
  1904. else {
  1905. list = xs_list_append(list, v);
  1906. srv_debug(2, xs_fmt("queue ready for %s", v));
  1907. }
  1908. }
  1909. return list;
  1910. }
  1911. xs_dict *queue_get(const char *fn)
  1912. /* gets a file from a queue */
  1913. {
  1914. FILE *f;
  1915. xs_dict *obj = NULL;
  1916. if ((f = fopen(fn, "r")) != NULL) {
  1917. obj = xs_json_load(f);
  1918. fclose(f);
  1919. }
  1920. return obj;
  1921. }
  1922. xs_dict *dequeue(const char *fn)
  1923. /* dequeues a message */
  1924. {
  1925. xs_dict *obj = queue_get(fn);
  1926. unlink(fn);
  1927. return obj;
  1928. }
  1929. /** the purge **/
  1930. static int _purge_file(const char *fn, time_t mt)
  1931. /* purge fn if it's older than days */
  1932. {
  1933. int ret = 0;
  1934. if (mtime(fn) < mt) {
  1935. /* older than the minimum time: delete it */
  1936. unlink(fn);
  1937. srv_debug(2, xs_fmt("purged %s", fn));
  1938. ret = 1;
  1939. }
  1940. return ret;
  1941. }
  1942. static void _purge_dir(const char *dir, int days)
  1943. /* purges all files in a directory older than days */
  1944. {
  1945. int cnt = 0;
  1946. if (days) {
  1947. time_t mt = time(NULL) - days * 24 * 3600;
  1948. xs *spec = xs_fmt("%s/" "*", dir);
  1949. xs *list = xs_glob(spec, 0, 0);
  1950. xs_list *p;
  1951. xs_str *v;
  1952. p = list;
  1953. while (xs_list_iter(&p, &v))
  1954. cnt += _purge_file(v, mt);
  1955. srv_debug(1, xs_fmt("purge: %s %d", dir, cnt));
  1956. }
  1957. }
  1958. static void _purge_user_subdir(snac *snac, const char *subdir, int days)
  1959. /* purges all files in a user subdir older than days */
  1960. {
  1961. xs *u_subdir = xs_fmt("%s/%s", snac->basedir, subdir);
  1962. _purge_dir(u_subdir, days);
  1963. }
  1964. void purge_server(void)
  1965. /* purge global server data */
  1966. {
  1967. xs *spec = xs_fmt("%s/object/??", srv_basedir);
  1968. xs *dirs = xs_glob(spec, 0, 0);
  1969. xs_list *p;
  1970. xs_str *v;
  1971. int cnt = 0;
  1972. int icnt = 0;
  1973. time_t mt = time(NULL) - 7 * 24 * 3600;
  1974. p = dirs;
  1975. while (xs_list_iter(&p, &v)) {
  1976. xs_list *p2;
  1977. xs_str *v2;
  1978. {
  1979. xs *spec2 = xs_fmt("%s/" "*.json", v);
  1980. xs *files = xs_glob(spec2, 0, 0);
  1981. p2 = files;
  1982. while (xs_list_iter(&p2, &v2)) {
  1983. int n_link;
  1984. /* old and with no hard links? */
  1985. if (mtime_nl(v2, &n_link) < mt && n_link < 2) {
  1986. xs *s1 = xs_replace(v2, ".json", "");
  1987. xs *l = xs_split(s1, "/");
  1988. char *md5 = xs_list_get(l, -1);
  1989. object_del_by_md5(md5);
  1990. cnt++;
  1991. }
  1992. }
  1993. }
  1994. {
  1995. /* look for stray indexes */
  1996. xs *speci = xs_fmt("%s/" "*_?.idx", v);
  1997. xs *idxfs = xs_glob(speci, 0, 0);
  1998. p2 = idxfs;
  1999. while (xs_list_iter(&p2, &v2)) {
  2000. /* old enough to consider? */
  2001. if (mtime(v2) < mt) {
  2002. /* check if the indexed object is here */
  2003. xs *o = xs_dup(v2);
  2004. char *ext = strchr(o, '_');
  2005. if (ext) {
  2006. *ext = '\0';
  2007. o = xs_str_cat(o, ".json");
  2008. if (mtime(o) == 0.0) {
  2009. /* delete */
  2010. unlink(v2);
  2011. srv_debug(1, xs_fmt("purged %s", v2));
  2012. icnt++;
  2013. }
  2014. }
  2015. }
  2016. }
  2017. }
  2018. }
  2019. /* purge collected inboxes */
  2020. xs *ib_dir = xs_fmt("%s/inbox", srv_basedir);
  2021. _purge_dir(ib_dir, 7);
  2022. /* purge the instance timeline */
  2023. xs *itl_fn = xs_fmt("%s/public.idx", srv_basedir);
  2024. int itl_gc = index_gc(itl_fn);
  2025. /* purge tag indexes */
  2026. xs *tag_spec = xs_fmt("%s/tag/??", srv_basedir);
  2027. xs *tag_dirs = xs_glob(tag_spec, 0, 0);
  2028. p = tag_dirs;
  2029. int tag_gc = 0;
  2030. while (xs_list_iter(&p, &v)) {
  2031. xs *spec2 = xs_fmt("%s/" "*.idx", v);
  2032. xs *files = xs_glob(spec2, 0, 0);
  2033. xs_list *p2;
  2034. xs_str *v2;
  2035. p2 = files;
  2036. while (xs_list_iter(&p2, &v2)) {
  2037. tag_gc += index_gc(v2);
  2038. xs *bak = xs_fmt("%s.bak", v2);
  2039. unlink(bak);
  2040. if (index_len(v2) == 0) {
  2041. /* there are no longer any entry with this tag;
  2042. purge it completely */
  2043. unlink(v2);
  2044. xs *dottag = xs_replace(v2, ".idx", ".tag");
  2045. unlink(dottag);
  2046. }
  2047. }
  2048. }
  2049. srv_debug(1, xs_fmt("purge: global "
  2050. "(obj: %d, idx: %d, itl: %d, tag: %d)", cnt, icnt, itl_gc, tag_gc));
  2051. }
  2052. void purge_user(snac *snac)
  2053. /* do the purge for this user */
  2054. {
  2055. int priv_days, pub_days, user_days = 0;
  2056. char *v;
  2057. int n;
  2058. priv_days = xs_number_get(xs_dict_get(srv_config, "timeline_purge_days"));
  2059. pub_days = xs_number_get(xs_dict_get(srv_config, "local_purge_days"));
  2060. if ((v = xs_dict_get(snac->config_o, "purge_days")) != NULL ||
  2061. (v = xs_dict_get(snac->config, "purge_days")) != NULL)
  2062. user_days = xs_number_get(v);
  2063. if (user_days) {
  2064. /* override admin settings only if they are lesser */
  2065. if (priv_days == 0 || user_days < priv_days)
  2066. priv_days = user_days;
  2067. if (pub_days == 0 || user_days < pub_days)
  2068. pub_days = user_days;
  2069. }
  2070. _purge_user_subdir(snac, "hidden", priv_days);
  2071. _purge_user_subdir(snac, "private", priv_days);
  2072. _purge_user_subdir(snac, "public", pub_days);
  2073. const char *idxs[] = { "followers.idx", "private.idx", "public.idx", "pinned.idx", NULL };
  2074. for (n = 0; idxs[n]; n++) {
  2075. xs *idx = xs_fmt("%s/%s", snac->basedir, idxs[n]);
  2076. int gc = index_gc(idx);
  2077. srv_debug(1, xs_fmt("purge: %s %d", idx, gc));
  2078. }
  2079. /* unrelated to purging, but it's a janitorial process, so what the hell */
  2080. verify_links(snac);
  2081. }
  2082. void purge_all(void)
  2083. /* purge all users */
  2084. {
  2085. snac snac;
  2086. xs *list = user_list();
  2087. char *p, *uid;
  2088. p = list;
  2089. while (xs_list_iter(&p, &uid)) {
  2090. if (user_open(&snac, uid)) {
  2091. purge_user(&snac);
  2092. user_free(&snac);
  2093. }
  2094. }
  2095. purge_server();
  2096. #ifndef NO_MASTODON_API
  2097. mastoapi_purge();
  2098. #endif
  2099. }
  2100. /** archive **/
  2101. void srv_archive(const char *direction, const char *url, xs_dict *req,
  2102. const char *payload, int p_size,
  2103. int status, xs_dict *headers,
  2104. const char *body, int b_size)
  2105. /* archives a connection */
  2106. {
  2107. /* obsessive archiving */
  2108. xs *date = tid(0);
  2109. xs *dir = xs_fmt("%s/archive/%s_%s", srv_basedir, date, direction);
  2110. FILE *f;
  2111. if (mkdirx(dir) != -1) {
  2112. xs *meta_fn = xs_fmt("%s/_META", dir);
  2113. if ((f = fopen(meta_fn, "w")) != NULL) {
  2114. xs *j1 = xs_json_dumps(req, 4);
  2115. xs *j2 = xs_json_dumps(headers, 4);
  2116. fprintf(f, "dir: %s\n", direction);
  2117. if (url)
  2118. fprintf(f, "url: %s\n", url);
  2119. fprintf(f, "req: %s\n", j1);
  2120. fprintf(f, "p_size: %d\n", p_size);
  2121. fprintf(f, "status: %d\n", status);
  2122. fprintf(f, "response: %s\n", j2);
  2123. fprintf(f, "b_size: %d\n", b_size);
  2124. fclose(f);
  2125. }
  2126. if (p_size && payload) {
  2127. xs *payload_fn = NULL;
  2128. xs *payload_fn_raw = NULL;
  2129. char *v = xs_dict_get(req, "content-type");
  2130. if (v && xs_str_in(v, "json") != -1) {
  2131. payload_fn = xs_fmt("%s/payload.json", dir);
  2132. if ((f = fopen(payload_fn, "w")) != NULL) {
  2133. xs *v1 = xs_json_loads(payload);
  2134. xs *j1 = NULL;
  2135. if (v1 != NULL)
  2136. j1 = xs_json_dumps(v1, 4);
  2137. if (j1 != NULL)
  2138. fwrite(j1, strlen(j1), 1, f);
  2139. else
  2140. fwrite(payload, p_size, 1, f);
  2141. fclose(f);
  2142. }
  2143. }
  2144. payload_fn_raw = xs_fmt("%s/payload", dir);
  2145. if ((f = fopen(payload_fn_raw, "w")) != NULL) {
  2146. fwrite(payload, p_size, 1, f);
  2147. fclose(f);
  2148. }
  2149. }
  2150. if (b_size && body) {
  2151. xs *body_fn = NULL;
  2152. char *v = xs_dict_get(headers, "content-type");
  2153. if (v && xs_str_in(v, "json") != -1) {
  2154. body_fn = xs_fmt("%s/body.json", dir);
  2155. if ((f = fopen(body_fn, "w")) != NULL) {
  2156. xs *v1 = xs_json_loads(body);
  2157. xs *j1 = NULL;
  2158. if (v1 != NULL)
  2159. j1 = xs_json_dumps(v1, 4);
  2160. if (j1 != NULL)
  2161. fwrite(j1, strlen(j1), 1, f);
  2162. else
  2163. fwrite(body, b_size, 1, f);
  2164. fclose(f);
  2165. }
  2166. }
  2167. else {
  2168. body_fn = xs_fmt("%s/body", dir);
  2169. if ((f = fopen(body_fn, "w")) != NULL) {
  2170. fwrite(body, b_size, 1, f);
  2171. fclose(f);
  2172. }
  2173. }
  2174. }
  2175. }
  2176. }
  2177. void srv_archive_error(const char *prefix, const xs_str *err,
  2178. const xs_dict *req, const xs_val *data)
  2179. /* archives an error */
  2180. {
  2181. xs *ntid = tid(0);
  2182. xs *fn = xs_fmt("%s/error/%s_%s", srv_basedir, ntid, prefix);
  2183. FILE *f;
  2184. if ((f = fopen(fn, "w")) != NULL) {
  2185. fprintf(f, "Error: %s\n", err);
  2186. if (req) {
  2187. fprintf(f, "Request headers:\n");
  2188. xs_json_dump(req, 4, f);
  2189. fprintf(f, "\n");
  2190. }
  2191. if (data) {
  2192. fprintf(f, "Data:\n");
  2193. if (xs_type(data) == XSTYPE_LIST || xs_type(data) == XSTYPE_DICT) {
  2194. xs_json_dump(data, 4, f);
  2195. }
  2196. else
  2197. fprintf(f, "%s", data);
  2198. fprintf(f, "\n");
  2199. }
  2200. fclose(f);
  2201. }
  2202. }
  2203. void srv_archive_qitem(char *prefix, xs_dict *q_item)
  2204. /* archives a q_item in the error folder */
  2205. {
  2206. xs *ntid = tid(0);
  2207. xs *fn = xs_fmt("%s/error/%s_qitem_%s", srv_basedir, ntid, prefix);
  2208. FILE *f;
  2209. if ((f = fopen(fn, "w")) != NULL) {
  2210. xs_json_dump(q_item, 4, f);
  2211. fclose(f);
  2212. }
  2213. }