data.c 67 KB

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