data.c 73 KB

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