data.c 67 KB

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