data.c 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877
  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. void 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. object_admire(id, admirer, like);
  826. snac_debug(snac, 1, xs_fmt("timeline_admire (%s) %s %s",
  827. like ? "Like" : "Announce", id, admirer));
  828. }
  829. xs_list *timeline_top_level(snac *snac, xs_list *list)
  830. /* returns the top level md5 entries from this index */
  831. {
  832. xs_set seen;
  833. xs_list *p;
  834. xs_str *v;
  835. xs_set_init(&seen);
  836. p = list;
  837. while (xs_list_iter(&p, &v)) {
  838. char line[256] = "";
  839. strncpy(line, v, sizeof(line));
  840. for (;;) {
  841. char line2[256];
  842. /* if it doesn't have a parent, use this */
  843. if (!object_parent(line, line2, sizeof(line2)))
  844. break;
  845. /* well, there is a parent... but is it here? */
  846. if (!timeline_here(snac, line2))
  847. break;
  848. /* it's here! try again with its own parent */
  849. strncpy(line, line2, sizeof(line));
  850. }
  851. xs_set_add(&seen, line);
  852. }
  853. return xs_set_result(&seen);
  854. }
  855. xs_list *timeline_simple_list(snac *snac, const char *idx_name, int skip, int show)
  856. /* returns a timeline (with all entries) */
  857. {
  858. xs *idx = xs_fmt("%s/%s.idx", snac->basedir, idx_name);
  859. return index_list_desc(idx, skip, show);
  860. }
  861. xs_list *timeline_list(snac *snac, const char *idx_name, int skip, int show)
  862. /* returns a timeline (only top level entries) */
  863. {
  864. int c_max;
  865. /* maximum number of items in the timeline */
  866. c_max = xs_number_get(xs_dict_get(srv_config, "max_timeline_entries"));
  867. /* never more timeline entries than the configured maximum */
  868. if (show > c_max)
  869. show = c_max;
  870. xs *list = timeline_simple_list(snac, idx_name, skip, show);
  871. return timeline_top_level(snac, list);
  872. }
  873. xs_list *timeline_instance_list(int skip, int show)
  874. /* returns the timeline for the full instance */
  875. {
  876. xs *idx = xs_fmt("%s/public.idx", srv_basedir);
  877. return index_list_desc(idx, skip, show);
  878. }
  879. /** following **/
  880. /* this needs special treatment and cannot use the object db as is,
  881. with a link to a cached author, because we need the Follow object
  882. in case we need to unfollow (Undo + original Follow) */
  883. xs_str *_following_fn(snac *snac, const char *actor)
  884. {
  885. xs *md5 = xs_md5_hex(actor, strlen(actor));
  886. return xs_fmt("%s/following/%s.json", snac->basedir, md5);
  887. }
  888. int following_add(snac *snac, const char *actor, const xs_dict *msg)
  889. /* adds to the following list */
  890. {
  891. int ret = 201; /* created */
  892. xs *fn = _following_fn(snac, actor);
  893. FILE *f;
  894. xs *p_object = NULL;
  895. if (valid_status(following_get(snac, actor, &p_object))) {
  896. /* object already exists; if it's of type Accept,
  897. the actor is already being followed and confirmed,
  898. so do nothing */
  899. char *type = xs_dict_get(p_object, "type");
  900. if (!xs_is_null(type) && strcmp(type, "Accept") == 0) {
  901. snac_debug(snac, 1, xs_fmt("following_add actor already confirmed %s", actor));
  902. return 200;
  903. }
  904. }
  905. if ((f = fopen(fn, "w")) != NULL) {
  906. xs_json_dump(msg, 4, f);
  907. fclose(f);
  908. /* get the filename of the actor object */
  909. xs *actor_fn = _object_fn(actor);
  910. /* increase its reference count */
  911. fn = xs_replace_i(fn, ".json", "_a.json");
  912. link(actor_fn, fn);
  913. }
  914. else
  915. ret = 500;
  916. snac_debug(snac, 2, xs_fmt("following_add %s %s", actor, fn));
  917. return ret;
  918. }
  919. int following_del(snac *snac, const char *actor)
  920. /* we're not following this actor any longer */
  921. {
  922. xs *fn = _following_fn(snac, actor);
  923. snac_debug(snac, 2, xs_fmt("following_del %s %s", actor, fn));
  924. unlink(fn);
  925. /* also delete the reference to the author */
  926. fn = xs_replace_i(fn, ".json", "_a.json");
  927. unlink(fn);
  928. return 200;
  929. }
  930. int following_check(snac *snac, const char *actor)
  931. /* checks if we are following this actor */
  932. {
  933. xs *fn = _following_fn(snac, actor);
  934. return !!(mtime(fn) != 0.0);
  935. }
  936. int following_get(snac *snac, const char *actor, xs_dict **data)
  937. /* returns the 'Follow' object */
  938. {
  939. xs *fn = _following_fn(snac, actor);
  940. FILE *f;
  941. int status = 200;
  942. if ((f = fopen(fn, "r")) != NULL) {
  943. *data = xs_json_load(f);
  944. fclose(f);
  945. }
  946. else
  947. status = 404;
  948. return status;
  949. }
  950. xs_list *following_list(snac *snac)
  951. /* returns the list of people being followed */
  952. {
  953. xs *spec = xs_fmt("%s/following/" "*.json", snac->basedir);
  954. xs *glist = xs_glob(spec, 0, 0);
  955. xs_list *p;
  956. xs_str *v;
  957. xs_list *list = xs_list_new();
  958. /* iterate the list of files */
  959. p = glist;
  960. while (xs_list_iter(&p, &v)) {
  961. FILE *f;
  962. /* load the follower data */
  963. if ((f = fopen(v, "r")) != NULL) {
  964. xs *o = xs_json_load(f);
  965. fclose(f);
  966. if (o != NULL) {
  967. const char *type = xs_dict_get(o, "type");
  968. if (!xs_is_null(type) && strcmp(type, "Accept") == 0) {
  969. const char *actor = xs_dict_get(o, "actor");
  970. if (!xs_is_null(actor)) {
  971. list = xs_list_append(list, actor);
  972. /* check if there is a link to the actor object */
  973. xs *v2 = xs_replace(v, ".json", "_a.json");
  974. if (mtime(v2) == 0.0) {
  975. /* no; add a link to it */
  976. xs *actor_fn = _object_fn(actor);
  977. link(actor_fn, v2);
  978. }
  979. }
  980. }
  981. }
  982. }
  983. }
  984. return list;
  985. }
  986. xs_str *_muted_fn(snac *snac, const char *actor)
  987. {
  988. xs *md5 = xs_md5_hex(actor, strlen(actor));
  989. return xs_fmt("%s/muted/%s", snac->basedir, md5);
  990. }
  991. void mute(snac *snac, const char *actor)
  992. /* mutes a moron */
  993. {
  994. xs *fn = _muted_fn(snac, actor);
  995. FILE *f;
  996. if ((f = fopen(fn, "w")) != NULL) {
  997. fprintf(f, "%s\n", actor);
  998. fclose(f);
  999. snac_debug(snac, 2, xs_fmt("muted %s %s", actor, fn));
  1000. }
  1001. }
  1002. void unmute(snac *snac, const char *actor)
  1003. /* actor is no longer a moron */
  1004. {
  1005. xs *fn = _muted_fn(snac, actor);
  1006. unlink(fn);
  1007. snac_debug(snac, 2, xs_fmt("unmuted %s %s", actor, fn));
  1008. }
  1009. int is_muted(snac *snac, const char *actor)
  1010. /* check if someone is muted */
  1011. {
  1012. xs *fn = _muted_fn(snac, actor);
  1013. return !!(mtime(fn) != 0.0);
  1014. }
  1015. /** pinning **/
  1016. xs_str *_pinned_fn(snac *user, const char *id)
  1017. {
  1018. xs *md5 = xs_md5_hex(id, strlen(id));
  1019. return xs_fmt("%s/pinned/%s.json", user->basedir, md5);
  1020. }
  1021. int is_pinned(snac *user, const char *id)
  1022. /* returns true if this note is pinned */
  1023. {
  1024. xs *fn = _pinned_fn(user, id);
  1025. return !!(mtime(fn) != 0.0);
  1026. }
  1027. int is_pinned_by_md5(snac *user, const char *md5)
  1028. {
  1029. xs *fn = xs_fmt("%s/pinned/%s.json", user->basedir, md5);
  1030. return !!(mtime(fn) != 0.0);
  1031. }
  1032. int pin(snac *user, const char *id)
  1033. /* pins a message */
  1034. {
  1035. int ret = -2;
  1036. if (xs_startswith(id, user->actor)) {
  1037. if (is_pinned(user, id))
  1038. ret = -3;
  1039. else {
  1040. /* create the subfolder, if it does not exist */
  1041. xs *fn = xs_fmt("%s/pinned/", user->basedir);
  1042. mkdirx(fn);
  1043. ret = object_user_cache_add(user, id, "pinned");
  1044. }
  1045. }
  1046. return ret;
  1047. }
  1048. int unpin(snac *user, const char *id)
  1049. /* unpin a message */
  1050. {
  1051. int ret = object_user_cache_del(user, id, "pinned");
  1052. if (ret != -1) {
  1053. /* delete from the index */
  1054. xs *idx = xs_fmt("%s/pinned.idx", user->basedir);
  1055. index_del(idx, id);
  1056. }
  1057. return ret;
  1058. }
  1059. xs_list *pinned_list(snac *user)
  1060. /* return the lists of pinned posts */
  1061. {
  1062. return object_user_cache_list(user, "pinned", XS_ALL, 1);
  1063. }
  1064. xs_str *_hidden_fn(snac *snac, const char *id)
  1065. {
  1066. xs *md5 = xs_md5_hex(id, strlen(id));
  1067. return xs_fmt("%s/hidden/%s", snac->basedir, md5);
  1068. }
  1069. void hide(snac *snac, const char *id)
  1070. /* hides a message tree */
  1071. {
  1072. xs *fn = _hidden_fn(snac, id);
  1073. FILE *f;
  1074. if ((f = fopen(fn, "w")) != NULL) {
  1075. fprintf(f, "%s\n", id);
  1076. fclose(f);
  1077. snac_debug(snac, 2, xs_fmt("hidden %s %s", id, fn));
  1078. /* hide all the children */
  1079. xs *chld = object_children(id);
  1080. char *p, *v;
  1081. p = chld;
  1082. while (xs_list_iter(&p, &v)) {
  1083. xs *co = NULL;
  1084. /* resolve to get the id */
  1085. if (valid_status(object_get_by_md5(v, &co))) {
  1086. if ((v = xs_dict_get(co, "id")) != NULL)
  1087. hide(snac, v);
  1088. }
  1089. }
  1090. }
  1091. }
  1092. int is_hidden(snac *snac, const char *id)
  1093. /* check is id is hidden */
  1094. {
  1095. xs *fn = _hidden_fn(snac, id);
  1096. return !!(mtime(fn) != 0.0);
  1097. }
  1098. int actor_add(const char *actor, xs_dict *msg)
  1099. /* adds an actor */
  1100. {
  1101. return object_add_ow(actor, msg);
  1102. }
  1103. int actor_get(const char *actor, xs_dict **data)
  1104. /* returns an already downloaded actor */
  1105. {
  1106. int status = 200;
  1107. xs_dict *d = NULL;
  1108. if (xs_startswith(actor, srv_baseurl)) {
  1109. /* it's a (possible) local user */
  1110. xs *l = xs_split(actor, "/");
  1111. const char *uid = xs_list_get(l, -1);
  1112. snac user;
  1113. if (!xs_is_null(uid) && user_open(&user, uid)) {
  1114. if (data)
  1115. *data = msg_actor(&user);
  1116. user_free(&user);
  1117. return 200;
  1118. }
  1119. else
  1120. return 404;
  1121. }
  1122. /* read the object */
  1123. if (!valid_status(status = object_get(actor, &d))) {
  1124. d = xs_free(d);
  1125. return status;
  1126. }
  1127. /* if the object is corrupted, discard it */
  1128. if (xs_is_null(xs_dict_get(d, "id")) || xs_is_null(xs_dict_get(d, "type"))) {
  1129. srv_debug(1, xs_fmt("corrupted actor object %s", actor));
  1130. d = xs_free(d);
  1131. return 404;
  1132. }
  1133. if (data)
  1134. *data = d;
  1135. else
  1136. d = xs_free(d);
  1137. #ifdef STALE_ACTORS
  1138. xs *fn = _object_fn(actor);
  1139. double max_time;
  1140. /* maximum time for the actor data to be considered stale */
  1141. max_time = 3600.0 * 36.0;
  1142. if (mtime(fn) + max_time < (double) time(NULL)) {
  1143. /* actor data exists but also stinks */
  1144. /* touch the file */
  1145. utimes(fn, NULL);
  1146. status = 205; /* "205: Reset Content" "110: Response Is Stale" */
  1147. }
  1148. #endif /* STALE_ACTORS */
  1149. return status;
  1150. }
  1151. /** user limiting (announce blocks) **/
  1152. int limited(snac *user, const char *id, int cmd)
  1153. /* announce messages from a followed (0: check, 1: limit; 2: unlimit) */
  1154. {
  1155. int ret = 0;
  1156. xs *dir = xs_fmt("%s/limited", user->basedir);
  1157. xs *md5 = xs_md5_hex(id, strlen(id));
  1158. xs *fn = xs_fmt("%s/%s", dir, md5);
  1159. switch (cmd) {
  1160. case 0: /** check **/
  1161. ret = !!(mtime(fn) > 0.0);
  1162. break;
  1163. case 1: /** limit **/
  1164. mkdirx(dir);
  1165. if (mtime(fn) > 0.0)
  1166. ret = -1;
  1167. else {
  1168. FILE *f;
  1169. if ((f = fopen(fn, "w")) != NULL) {
  1170. fprintf(f, "%s\n", id);
  1171. fclose(f);
  1172. }
  1173. else
  1174. ret = -2;
  1175. }
  1176. break;
  1177. case 2: /** unlimit **/
  1178. if (mtime(fn) > 0.0)
  1179. ret = unlink(fn);
  1180. else
  1181. ret = -1;
  1182. break;
  1183. }
  1184. return ret;
  1185. }
  1186. /** tag indexing **/
  1187. void tag_index(const char *id, const xs_dict *obj)
  1188. /* update the tag indexes for this object */
  1189. {
  1190. xs_list *tags = xs_dict_get(obj, "tag");
  1191. if (is_msg_public(obj) && xs_type(tags) == XSTYPE_LIST && xs_list_len(tags) > 0) {
  1192. xs *g_tag_dir = xs_fmt("%s/tag", srv_basedir);
  1193. mkdirx(g_tag_dir);
  1194. xs_dict *v;
  1195. while (xs_list_iter(&tags, &v)) {
  1196. char *type = xs_dict_get(v, "type");
  1197. char *name = xs_dict_get(v, "name");
  1198. if (!xs_is_null(type) && !xs_is_null(name) && strcmp(type, "Hashtag") == 0) {
  1199. while (*name == '#' || *name == '@')
  1200. name++;
  1201. if (*name == '\0')
  1202. continue;
  1203. name = xs_tolower_i(name);
  1204. xs *md5_tag = xs_md5_hex(name, strlen(name));
  1205. xs *tag_dir = xs_fmt("%s/%c%c", g_tag_dir, md5_tag[0], md5_tag[1]);
  1206. mkdirx(tag_dir);
  1207. xs *g_tag_idx = xs_fmt("%s/%s.idx", tag_dir, md5_tag);
  1208. index_add(g_tag_idx, id);
  1209. FILE *f;
  1210. xs *g_tag_name = xs_replace(g_tag_idx, ".idx", ".tag");
  1211. if ((f = fopen(g_tag_name, "w")) != NULL) {
  1212. fprintf(f, "%s\n", name);
  1213. fclose(f);
  1214. }
  1215. srv_debug(0, xs_fmt("tagged %s #%s (#%s)", id, name, md5_tag));
  1216. }
  1217. }
  1218. }
  1219. }
  1220. xs_list *tag_search(char *tag, int skip, int show)
  1221. /* returns the list of posts tagged with tag */
  1222. {
  1223. if (*tag == '#')
  1224. tag++;
  1225. xs *lw_tag = xs_tolower_i(xs_dup(tag));
  1226. xs *md5 = xs_md5_hex(lw_tag, strlen(lw_tag));
  1227. xs *idx = xs_fmt("%s/tag/%c%c/%s.idx", srv_basedir, md5[0], md5[1], md5);
  1228. return index_list_desc(idx, skip, show);
  1229. }
  1230. /** static data **/
  1231. static int _load_raw_file(const char *fn, xs_val **data, int *size,
  1232. const char *inm, xs_str **etag)
  1233. /* loads a cached file */
  1234. {
  1235. int status = 404;
  1236. if (fn) {
  1237. double tm = mtime(fn);
  1238. if (tm > 0.0) {
  1239. /* file exists; build the etag */
  1240. xs *e = xs_fmt("W/\"snac-%.0lf\"", tm);
  1241. /* if if-none-match is set, check if it's the same */
  1242. if (!xs_is_null(inm) && strcmp(e, inm) == 0) {
  1243. /* client has the newest version */
  1244. status = 304;
  1245. }
  1246. else {
  1247. /* newer or never downloaded; read the full file */
  1248. FILE *f;
  1249. if ((f = fopen(fn, "rb")) != NULL) {
  1250. *size = XS_ALL;
  1251. *data = xs_read(f, size);
  1252. fclose(f);
  1253. status = 200;
  1254. }
  1255. }
  1256. /* if caller wants the etag, return it */
  1257. if (etag != NULL)
  1258. *etag = xs_dup(e);
  1259. srv_debug(1, xs_fmt("_load_raw_file(): %s %d", fn, status));
  1260. }
  1261. }
  1262. return status;
  1263. }
  1264. xs_str *_static_fn(snac *snac, const char *id)
  1265. /* gets the filename for a static file */
  1266. {
  1267. if (strchr(id, '/'))
  1268. return NULL;
  1269. else
  1270. return xs_fmt("%s/static/%s", snac->basedir, id);
  1271. }
  1272. int static_get(snac *snac, const char *id, xs_val **data, int *size,
  1273. const char *inm, xs_str **etag)
  1274. /* returns static content */
  1275. {
  1276. xs *fn = _static_fn(snac, id);
  1277. return _load_raw_file(fn, data, size, inm, etag);
  1278. }
  1279. void static_put(snac *snac, const char *id, const char *data, int size)
  1280. /* writes status content */
  1281. {
  1282. xs *fn = _static_fn(snac, id);
  1283. FILE *f;
  1284. if (fn && (f = fopen(fn, "wb")) != NULL) {
  1285. fwrite(data, size, 1, f);
  1286. fclose(f);
  1287. }
  1288. }
  1289. void static_put_meta(snac *snac, const char *id, const char *str)
  1290. /* puts metadata (i.e. a media description string) to id */
  1291. {
  1292. xs *fn = _static_fn(snac, id);
  1293. if (fn) {
  1294. fn = xs_str_cat(fn, ".txt");
  1295. FILE *f;
  1296. if ((f = fopen(fn, "w")) != NULL) {
  1297. fprintf(f, "%s\n", str);
  1298. fclose(f);
  1299. }
  1300. }
  1301. }
  1302. xs_str *static_get_meta(snac *snac, const char *id)
  1303. /* gets metadata from a media */
  1304. {
  1305. xs *fn = _static_fn(snac, id);
  1306. xs_str *r = NULL;
  1307. if (fn) {
  1308. fn = xs_str_cat(fn, ".txt");
  1309. FILE *f;
  1310. if ((f = fopen(fn, "r")) != NULL) {
  1311. r = xs_strip_i(xs_readline(f));
  1312. fclose(f);
  1313. }
  1314. }
  1315. else
  1316. r = xs_str_new("");
  1317. return r;
  1318. }
  1319. /** history **/
  1320. xs_str *_history_fn(snac *snac, const char *id)
  1321. /* gets the filename for the history */
  1322. {
  1323. if (strchr(id, '/'))
  1324. return NULL;
  1325. else
  1326. return xs_fmt("%s/history/%s", snac->basedir, id);
  1327. }
  1328. double history_mtime(snac *snac, const char *id)
  1329. {
  1330. double t = 0.0;
  1331. xs *fn = _history_fn(snac, id);
  1332. if (fn != NULL)
  1333. t = mtime(fn);
  1334. return t;
  1335. }
  1336. void history_add(snac *snac, const char *id, const char *content, int size,
  1337. xs_str **etag)
  1338. /* adds something to the history */
  1339. {
  1340. xs *fn = _history_fn(snac, id);
  1341. FILE *f;
  1342. if (fn && (f = fopen(fn, "w")) != NULL) {
  1343. fwrite(content, size, 1, f);
  1344. fclose(f);
  1345. if (etag) {
  1346. double tm = mtime(fn);
  1347. *etag = xs_fmt("W/\"snac-%.0lf\"", tm);
  1348. }
  1349. }
  1350. }
  1351. int history_get(snac *snac, const char *id, xs_str **content, int *size,
  1352. const char *inm, xs_str **etag)
  1353. {
  1354. xs *fn = _history_fn(snac, id);
  1355. return _load_raw_file(fn, content, size, inm, etag);
  1356. }
  1357. int history_del(snac *snac, const char *id)
  1358. {
  1359. xs *fn = _history_fn(snac, id);
  1360. if (fn)
  1361. return unlink(fn);
  1362. else
  1363. return -1;
  1364. }
  1365. xs_list *history_list(snac *snac)
  1366. {
  1367. xs *spec = xs_fmt("%s/history/" "*.html", snac->basedir);
  1368. return xs_glob(spec, 1, 1);
  1369. }
  1370. void lastlog_write(snac *snac, const char *source)
  1371. /* writes the last time the user logged in */
  1372. {
  1373. xs *fn = xs_fmt("%s/lastlog.txt", snac->basedir);
  1374. FILE *f;
  1375. if ((f = fopen(fn, "w")) != NULL) {
  1376. fprintf(f, "%lf %s\n", ftime(), source);
  1377. fclose(f);
  1378. }
  1379. }
  1380. /** inbox collection **/
  1381. void inbox_add(const char *inbox)
  1382. /* collects a shared inbox */
  1383. {
  1384. /* don't collect ourselves */
  1385. if (xs_startswith(inbox, srv_baseurl))
  1386. return;
  1387. xs *md5 = xs_md5_hex(inbox, strlen(inbox));
  1388. xs *fn = xs_fmt("%s/inbox/%s", srv_basedir, md5);
  1389. FILE *f;
  1390. if ((f = fopen(fn, "w")) != NULL) {
  1391. fprintf(f, "%s\n", inbox);
  1392. fclose(f);
  1393. }
  1394. }
  1395. void inbox_add_by_actor(const xs_dict *actor)
  1396. /* collects an actor's shared inbox, if it has one */
  1397. {
  1398. char *v;
  1399. if (!xs_is_null(v = xs_dict_get(actor, "endpoints")) &&
  1400. !xs_is_null(v = xs_dict_get(v, "sharedInbox"))) {
  1401. /* only collect this inbox if its instance is not blocked */
  1402. if (!is_instance_blocked(v))
  1403. inbox_add(v);
  1404. }
  1405. }
  1406. xs_list *inbox_list(void)
  1407. /* returns the collected inboxes as a list */
  1408. {
  1409. xs_list *ibl = xs_list_new();
  1410. xs *spec = xs_fmt("%s/inbox/" "*", srv_basedir);
  1411. xs *files = xs_glob(spec, 0, 0);
  1412. xs_list *p = files;
  1413. xs_val *v;
  1414. while (xs_list_iter(&p, &v)) {
  1415. FILE *f;
  1416. if ((f = fopen(v, "r")) != NULL) {
  1417. xs *line = xs_readline(f);
  1418. if (line) {
  1419. line = xs_strip_i(line);
  1420. ibl = xs_list_append(ibl, line);
  1421. }
  1422. fclose(f);
  1423. }
  1424. }
  1425. return ibl;
  1426. }
  1427. /** instance-wide operations **/
  1428. xs_str *_instance_block_fn(const char *instance)
  1429. {
  1430. xs *s1 = xs_replace(instance, "https:/" "/", "");
  1431. xs *l = xs_split(s1, "/");
  1432. char *p = xs_list_get(l, 0);
  1433. xs *md5 = xs_md5_hex(p, strlen(p));
  1434. return xs_fmt("%s/block/%s", srv_basedir, md5);
  1435. }
  1436. int is_instance_blocked(const char *instance)
  1437. {
  1438. xs *fn = _instance_block_fn(instance);
  1439. return !!(mtime(fn) != 0.0);
  1440. }
  1441. int instance_block(const char *instance)
  1442. /* blocks a full instance */
  1443. {
  1444. int ret;
  1445. /* create the subdir */
  1446. xs *dir = xs_fmt("%s/block/", srv_basedir);
  1447. mkdirx(dir);
  1448. if (!is_instance_blocked(instance)) {
  1449. xs *fn = _instance_block_fn(instance);
  1450. FILE *f;
  1451. if ((f = fopen(fn, "w")) != NULL) {
  1452. fprintf(f, "%s\n", instance);
  1453. fclose(f);
  1454. ret = 0;
  1455. }
  1456. else
  1457. ret = -1;
  1458. }
  1459. else
  1460. ret = -2;
  1461. return ret;
  1462. }
  1463. int instance_unblock(const char *instance)
  1464. /* unblocks a full instance */
  1465. {
  1466. int ret;
  1467. if (is_instance_blocked(instance)) {
  1468. xs *fn = _instance_block_fn(instance);
  1469. ret = unlink(fn);
  1470. }
  1471. else
  1472. ret = -2;
  1473. return ret;
  1474. }
  1475. /** notifications **/
  1476. xs_str *notify_check_time(snac *snac, int reset)
  1477. /* gets or resets the latest notification check time */
  1478. {
  1479. xs_str *t = NULL;
  1480. xs *fn = xs_fmt("%s/notifydate.txt", snac->basedir);
  1481. FILE *f;
  1482. if (reset) {
  1483. if ((f = fopen(fn, "w")) != NULL) {
  1484. t = tid(0);
  1485. fprintf(f, "%s\n", t);
  1486. fclose(f);
  1487. }
  1488. }
  1489. else {
  1490. if ((f = fopen(fn, "r")) != NULL) {
  1491. t = xs_readline(f);
  1492. fclose(f);
  1493. }
  1494. else
  1495. /* never set before */
  1496. t = xs_fmt("%16.6f", 0.0);
  1497. }
  1498. return t;
  1499. }
  1500. void notify_add(snac *snac, const char *type, const char *utype,
  1501. const char *actor, const char *objid)
  1502. /* adds a new notification */
  1503. {
  1504. xs *ntid = tid(0);
  1505. xs *fn = xs_fmt("%s/notify/", snac->basedir);
  1506. xs *date = xs_str_utctime(0, ISO_DATE_SPEC);
  1507. FILE *f;
  1508. /* create the directory */
  1509. mkdirx(fn);
  1510. fn = xs_str_cat(fn, ntid);
  1511. fn = xs_str_cat(fn, ".json");
  1512. xs *noti = xs_dict_new();
  1513. noti = xs_dict_append(noti, "id", ntid);
  1514. noti = xs_dict_append(noti, "type", type);
  1515. noti = xs_dict_append(noti, "utype", utype);
  1516. noti = xs_dict_append(noti, "actor", actor);
  1517. noti = xs_dict_append(noti, "date", date);
  1518. if (!xs_is_null(objid))
  1519. noti = xs_dict_append(noti, "objid", objid);
  1520. if ((f = fopen(fn, "w")) != NULL) {
  1521. xs_json_dump(noti, 4, f);
  1522. fclose(f);
  1523. }
  1524. /* add it to the index if it already exists */
  1525. xs *idx = xs_fmt("%s/notify.idx", snac->basedir);
  1526. if (mtime(idx) != 0.0) {
  1527. pthread_mutex_lock(&data_mutex);
  1528. if ((f = fopen(idx, "a")) != NULL) {
  1529. fprintf(f, "%-32s\n", ntid);
  1530. fclose(f);
  1531. }
  1532. pthread_mutex_unlock(&data_mutex);
  1533. }
  1534. }
  1535. xs_dict *notify_get(snac *snac, const char *id)
  1536. /* gets a notification */
  1537. {
  1538. /* base file */
  1539. xs *fn = xs_fmt("%s/notify/%s", snac->basedir, id);
  1540. /* strip spaces and add extension */
  1541. fn = xs_strip_i(fn);
  1542. fn = xs_str_cat(fn, ".json");
  1543. FILE *f;
  1544. xs_dict *out = NULL;
  1545. if ((f = fopen(fn, "r")) != NULL) {
  1546. out = xs_json_load(f);
  1547. fclose(f);
  1548. }
  1549. return out;
  1550. }
  1551. xs_list *notify_list(snac *snac, int skip, int show)
  1552. /* returns a list of notification ids */
  1553. {
  1554. xs *idx = xs_fmt("%s/notify.idx", snac->basedir);
  1555. if (mtime(idx) == 0.0) {
  1556. /* create the index from scratch */
  1557. FILE *f;
  1558. pthread_mutex_lock(&data_mutex);
  1559. if ((f = fopen(idx, "w")) != NULL) {
  1560. xs *spec = xs_fmt("%s/notify/" "*.json", snac->basedir);
  1561. xs *lst = xs_glob(spec, 1, 0);
  1562. xs_list *p = lst;
  1563. char *v;
  1564. while (xs_list_iter(&p, &v)) {
  1565. char *p = strrchr(v, '.');
  1566. if (p) {
  1567. *p = '\0';
  1568. fprintf(f, "%-32s\n", v);
  1569. }
  1570. }
  1571. fclose(f);
  1572. }
  1573. pthread_mutex_unlock(&data_mutex);
  1574. }
  1575. return index_list_desc(idx, skip, show);
  1576. }
  1577. int notify_new_num(snac *snac)
  1578. /* counts the number of new notifications */
  1579. {
  1580. xs *t = notify_check_time(snac, 0);
  1581. xs *lst = notify_list(snac, 0, XS_ALL);
  1582. int cnt = 0;
  1583. xs_list *p = lst;
  1584. xs_str *v;
  1585. while (xs_list_iter(&p, &v)) {
  1586. xs *id = xs_strip_i(xs_dup(v));
  1587. /* old? count no more */
  1588. if (strcmp(id, t) < 0)
  1589. break;
  1590. cnt++;
  1591. }
  1592. return cnt;
  1593. }
  1594. void notify_clear(snac *snac)
  1595. /* clears all notifications */
  1596. {
  1597. xs *spec = xs_fmt("%s/notify/" "*", snac->basedir);
  1598. xs *lst = xs_glob(spec, 0, 0);
  1599. xs_list *p = lst;
  1600. xs_str *v;
  1601. while (xs_list_iter(&p, &v))
  1602. unlink(v);
  1603. xs *idx = xs_fmt("%s/notify.idx", snac->basedir);
  1604. if (mtime(idx) != 0.0) {
  1605. pthread_mutex_lock(&data_mutex);
  1606. truncate(idx, 0);
  1607. pthread_mutex_unlock(&data_mutex);
  1608. }
  1609. }
  1610. /** the queue **/
  1611. static xs_dict *_enqueue_put(const char *fn, xs_dict *msg)
  1612. /* writes safely to the queue */
  1613. {
  1614. xs *tfn = xs_fmt("%s.tmp", fn);
  1615. FILE *f;
  1616. if ((f = fopen(tfn, "w")) != NULL) {
  1617. xs_json_dump(msg, 4, f);
  1618. fclose(f);
  1619. rename(tfn, fn);
  1620. }
  1621. return msg;
  1622. }
  1623. static xs_dict *_new_qmsg(const char *type, const xs_val *msg, int retries)
  1624. /* creates a queue message */
  1625. {
  1626. int qrt = xs_number_get(xs_dict_get(srv_config, "queue_retry_minutes"));
  1627. xs *ntid = tid(retries * 60 * qrt);
  1628. xs *rn = xs_number_new(retries);
  1629. xs_dict *qmsg = xs_dict_new();
  1630. qmsg = xs_dict_append(qmsg, "type", type);
  1631. qmsg = xs_dict_append(qmsg, "message", msg);
  1632. qmsg = xs_dict_append(qmsg, "retries", rn);
  1633. qmsg = xs_dict_append(qmsg, "ntid", ntid);
  1634. return qmsg;
  1635. }
  1636. void enqueue_input(snac *snac, const xs_dict *msg, const xs_dict *req, int retries)
  1637. /* enqueues an input message */
  1638. {
  1639. xs *qmsg = _new_qmsg("input", msg, retries);
  1640. char *ntid = xs_dict_get(qmsg, "ntid");
  1641. xs *fn = xs_fmt("%s/queue/%s.json", snac->basedir, ntid);
  1642. qmsg = xs_dict_append(qmsg, "req", req);
  1643. qmsg = _enqueue_put(fn, qmsg);
  1644. snac_debug(snac, 1, xs_fmt("enqueue_input %s", fn));
  1645. }
  1646. void enqueue_shared_input(const xs_dict *msg, const xs_dict *req, int retries)
  1647. /* enqueues an input message from the shared input */
  1648. {
  1649. xs *qmsg = _new_qmsg("input", msg, retries);
  1650. char *ntid = xs_dict_get(qmsg, "ntid");
  1651. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1652. qmsg = xs_dict_append(qmsg, "req", req);
  1653. qmsg = _enqueue_put(fn, qmsg);
  1654. srv_debug(1, xs_fmt("enqueue_shared_input %s", fn));
  1655. }
  1656. void enqueue_output_raw(const char *keyid, const char *seckey,
  1657. xs_dict *msg, xs_str *inbox, int retries, int p_status)
  1658. /* enqueues an output message to an inbox */
  1659. {
  1660. xs *qmsg = _new_qmsg("output", msg, retries);
  1661. char *ntid = xs_dict_get(qmsg, "ntid");
  1662. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1663. xs *ns = xs_number_new(p_status);
  1664. qmsg = xs_dict_append(qmsg, "p_status", ns);
  1665. qmsg = xs_dict_append(qmsg, "inbox", inbox);
  1666. qmsg = xs_dict_append(qmsg, "keyid", keyid);
  1667. qmsg = xs_dict_append(qmsg, "seckey", seckey);
  1668. /* if it's to be sent right now, bypass the disk queue and post the job */
  1669. if (retries == 0 && p_state != NULL)
  1670. job_post(qmsg, 0);
  1671. else {
  1672. qmsg = _enqueue_put(fn, qmsg);
  1673. srv_debug(1, xs_fmt("enqueue_output %s %s %d", inbox, fn, retries));
  1674. }
  1675. }
  1676. void enqueue_output(snac *snac, xs_dict *msg, xs_str *inbox, int retries, int p_status)
  1677. /* enqueues an output message to an inbox */
  1678. {
  1679. if (xs_startswith(inbox, snac->actor)) {
  1680. snac_debug(snac, 1, xs_str_new("refusing enqueue to myself"));
  1681. return;
  1682. }
  1683. char *seckey = xs_dict_get(snac->key, "secret");
  1684. enqueue_output_raw(snac->actor, seckey, msg, inbox, retries, p_status);
  1685. }
  1686. void enqueue_output_by_actor(snac *snac, xs_dict *msg, const xs_str *actor, int retries)
  1687. /* enqueues an output message for an actor */
  1688. {
  1689. xs *inbox = get_actor_inbox(actor);
  1690. if (!xs_is_null(inbox))
  1691. enqueue_output(snac, msg, inbox, retries, 0);
  1692. else
  1693. snac_log(snac, xs_fmt("enqueue_output_by_actor cannot get inbox %s", actor));
  1694. }
  1695. void enqueue_email(xs_str *msg, int retries)
  1696. /* enqueues an email message to be sent */
  1697. {
  1698. xs *qmsg = _new_qmsg("email", msg, retries);
  1699. char *ntid = xs_dict_get(qmsg, "ntid");
  1700. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1701. qmsg = _enqueue_put(fn, qmsg);
  1702. srv_debug(1, xs_fmt("enqueue_email %d", retries));
  1703. }
  1704. void enqueue_telegram(const xs_str *msg, const char *bot, const char *chat_id)
  1705. /* enqueues a message to be sent via Telegram */
  1706. {
  1707. xs *qmsg = _new_qmsg("telegram", msg, 0);
  1708. char *ntid = xs_dict_get(qmsg, "ntid");
  1709. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1710. qmsg = xs_dict_append(qmsg, "bot", bot);
  1711. qmsg = xs_dict_append(qmsg, "chat_id", chat_id);
  1712. qmsg = _enqueue_put(fn, qmsg);
  1713. srv_debug(1, xs_fmt("enqueue_telegram %s %s", bot, chat_id));
  1714. }
  1715. void enqueue_ntfy(const xs_str *msg, const char *ntfy_server, const char *ntfy_token)
  1716. /* enqueues a message to be sent via ntfy */
  1717. {
  1718. xs *qmsg = _new_qmsg("ntfy", msg, 0);
  1719. char *ntid = xs_dict_get(qmsg, "ntid");
  1720. xs *fn = xs_fmt("%s/queue/%s.json", srv_basedir, ntid);
  1721. qmsg = xs_dict_append(qmsg, "ntfy_server", ntfy_server);
  1722. qmsg = xs_dict_append(qmsg, "ntfy_token", ntfy_token);
  1723. qmsg = _enqueue_put(fn, qmsg);
  1724. srv_debug(1, xs_fmt("enqueue_ntfy %s %s", ntfy_server, ntfy_token));
  1725. }
  1726. void enqueue_message(snac *snac, const xs_dict *msg)
  1727. /* enqueues an output message */
  1728. {
  1729. xs *qmsg = _new_qmsg("message", msg, 0);
  1730. char *ntid = xs_dict_get(qmsg, "ntid");
  1731. xs *fn = xs_fmt("%s/queue/%s.json", snac->basedir, ntid);
  1732. qmsg = _enqueue_put(fn, qmsg);
  1733. snac_debug(snac, 0, xs_fmt("enqueue_message %s", xs_dict_get(msg, "id")));
  1734. }
  1735. void enqueue_close_question(snac *user, const char *id, int end_secs)
  1736. /* enqueues the closing of a question */
  1737. {
  1738. xs *qmsg = _new_qmsg("close_question", id, 0);
  1739. xs *ntid = tid(end_secs);
  1740. xs *fn = xs_fmt("%s/queue/%s.json", user->basedir, ntid);
  1741. qmsg = xs_dict_set(qmsg, "ntid", ntid);
  1742. qmsg = _enqueue_put(fn, qmsg);
  1743. snac_debug(user, 0, xs_fmt("enqueue_close_question %s", id));
  1744. }
  1745. void enqueue_request_replies(snac *user, const char *id)
  1746. /* enqueues a request for the replies of a message */
  1747. {
  1748. /* test first if this precise request is already in the queue */
  1749. xs *queue = user_queue(user);
  1750. xs_list *p = queue;
  1751. xs_str *v;
  1752. while (xs_list_iter(&p, &v)) {
  1753. xs *q_item = queue_get(v);
  1754. if (q_item != NULL) {
  1755. const char *type = xs_dict_get(q_item, "type");
  1756. const char *msg = xs_dict_get(q_item, "message");
  1757. if (type && msg && strcmp(type, "request_replies") == 0 && strcmp(msg, id) == 0) {
  1758. /* don't requeue */
  1759. snac_debug(user, 1, xs_fmt("enqueue_request_replies already here %s", id));
  1760. return;
  1761. }
  1762. }
  1763. }
  1764. /* not there; enqueue the request with a small delay */
  1765. xs *qmsg = _new_qmsg("request_replies", id, 0);
  1766. xs *ntid = tid(10);
  1767. xs *fn = xs_fmt("%s/queue/%s.json", user->basedir, ntid);
  1768. qmsg = xs_dict_set(qmsg, "ntid", ntid);
  1769. qmsg = _enqueue_put(fn, qmsg);
  1770. snac_debug(user, 2, xs_fmt("enqueue_request_replies %s", id));
  1771. }
  1772. int was_question_voted(snac *user, const char *id)
  1773. /* returns true if the user voted in this poll */
  1774. {
  1775. xs *children = object_children(id);
  1776. int voted = 0;
  1777. xs_list *p;
  1778. xs_str *md5;
  1779. p = children;
  1780. while (xs_list_iter(&p, &md5)) {
  1781. xs *obj = NULL;
  1782. if (valid_status(object_get_by_md5(md5, &obj))) {
  1783. char *atto = get_atto(obj);
  1784. if (atto && strcmp(atto, user->actor) == 0 &&
  1785. !xs_is_null(xs_dict_get(obj, "name"))) {
  1786. voted = 1;
  1787. break;
  1788. }
  1789. }
  1790. }
  1791. return voted;
  1792. }
  1793. xs_list *user_queue(snac *snac)
  1794. /* returns a list with filenames that can be dequeued */
  1795. {
  1796. xs *spec = xs_fmt("%s/queue/" "*.json", snac->basedir);
  1797. xs_list *list = xs_list_new();
  1798. time_t t = time(NULL);
  1799. xs_list *p;
  1800. xs_val *v;
  1801. xs *fns = xs_glob(spec, 0, 0);
  1802. p = fns;
  1803. while (xs_list_iter(&p, &v)) {
  1804. /* get the retry time from the basename */
  1805. char *bn = strrchr(v, '/');
  1806. time_t t2 = atol(bn + 1);
  1807. if (t2 > t)
  1808. snac_debug(snac, 2, xs_fmt("user_queue not yet time for %s [%ld]", v, t));
  1809. else {
  1810. list = xs_list_append(list, v);
  1811. snac_debug(snac, 2, xs_fmt("user_queue ready for %s", v));
  1812. }
  1813. }
  1814. return list;
  1815. }
  1816. xs_list *queue(void)
  1817. /* returns a list with filenames that can be dequeued */
  1818. {
  1819. xs *spec = xs_fmt("%s/queue/" "*.json", srv_basedir);
  1820. xs_list *list = xs_list_new();
  1821. time_t t = time(NULL);
  1822. xs_list *p;
  1823. xs_val *v;
  1824. xs *fns = xs_glob(spec, 0, 0);
  1825. p = fns;
  1826. while (xs_list_iter(&p, &v)) {
  1827. /* get the retry time from the basename */
  1828. char *bn = strrchr(v, '/');
  1829. time_t t2 = atol(bn + 1);
  1830. if (t2 > t)
  1831. srv_debug(2, xs_fmt("queue not yet time for %s [%ld]", v, t));
  1832. else {
  1833. list = xs_list_append(list, v);
  1834. srv_debug(2, xs_fmt("queue ready for %s", v));
  1835. }
  1836. }
  1837. return list;
  1838. }
  1839. xs_dict *queue_get(const char *fn)
  1840. /* gets a file from a queue */
  1841. {
  1842. FILE *f;
  1843. xs_dict *obj = NULL;
  1844. if ((f = fopen(fn, "r")) != NULL) {
  1845. obj = xs_json_load(f);
  1846. fclose(f);
  1847. }
  1848. return obj;
  1849. }
  1850. xs_dict *dequeue(const char *fn)
  1851. /* dequeues a message */
  1852. {
  1853. xs_dict *obj = queue_get(fn);
  1854. unlink(fn);
  1855. return obj;
  1856. }
  1857. /** the purge **/
  1858. static int _purge_file(const char *fn, time_t mt)
  1859. /* purge fn if it's older than days */
  1860. {
  1861. int ret = 0;
  1862. if (mtime(fn) < mt) {
  1863. /* older than the minimum time: delete it */
  1864. unlink(fn);
  1865. srv_debug(2, xs_fmt("purged %s", fn));
  1866. ret = 1;
  1867. }
  1868. return ret;
  1869. }
  1870. static void _purge_dir(const char *dir, int days)
  1871. /* purges all files in a directory older than days */
  1872. {
  1873. int cnt = 0;
  1874. if (days) {
  1875. time_t mt = time(NULL) - days * 24 * 3600;
  1876. xs *spec = xs_fmt("%s/" "*", dir);
  1877. xs *list = xs_glob(spec, 0, 0);
  1878. xs_list *p;
  1879. xs_str *v;
  1880. p = list;
  1881. while (xs_list_iter(&p, &v))
  1882. cnt += _purge_file(v, mt);
  1883. srv_debug(1, xs_fmt("purge: %s %d", dir, cnt));
  1884. }
  1885. }
  1886. static void _purge_user_subdir(snac *snac, const char *subdir, int days)
  1887. /* purges all files in a user subdir older than days */
  1888. {
  1889. xs *u_subdir = xs_fmt("%s/%s", snac->basedir, subdir);
  1890. _purge_dir(u_subdir, days);
  1891. }
  1892. void purge_server(void)
  1893. /* purge global server data */
  1894. {
  1895. xs *spec = xs_fmt("%s/object/??", srv_basedir);
  1896. xs *dirs = xs_glob(spec, 0, 0);
  1897. xs_list *p;
  1898. xs_str *v;
  1899. int cnt = 0;
  1900. int icnt = 0;
  1901. time_t mt = time(NULL) - 7 * 24 * 3600;
  1902. p = dirs;
  1903. while (xs_list_iter(&p, &v)) {
  1904. xs_list *p2;
  1905. xs_str *v2;
  1906. {
  1907. xs *spec2 = xs_fmt("%s/" "*.json", v);
  1908. xs *files = xs_glob(spec2, 0, 0);
  1909. p2 = files;
  1910. while (xs_list_iter(&p2, &v2)) {
  1911. int n_link;
  1912. /* old and with no hard links? */
  1913. if (mtime_nl(v2, &n_link) < mt && n_link < 2) {
  1914. xs *s1 = xs_replace(v2, ".json", "");
  1915. xs *l = xs_split(s1, "/");
  1916. char *md5 = xs_list_get(l, -1);
  1917. object_del_by_md5(md5);
  1918. cnt++;
  1919. }
  1920. }
  1921. }
  1922. {
  1923. /* look for stray indexes */
  1924. xs *speci = xs_fmt("%s/" "*_?.idx", v);
  1925. xs *idxfs = xs_glob(speci, 0, 0);
  1926. p2 = idxfs;
  1927. while (xs_list_iter(&p2, &v2)) {
  1928. /* old enough to consider? */
  1929. if (mtime(v2) < mt) {
  1930. /* check if the indexed object is here */
  1931. xs *o = xs_dup(v2);
  1932. char *ext = strchr(o, '_');
  1933. if (ext) {
  1934. *ext = '\0';
  1935. o = xs_str_cat(o, ".json");
  1936. if (mtime(o) == 0.0) {
  1937. /* delete */
  1938. unlink(v2);
  1939. srv_debug(1, xs_fmt("purged %s", v2));
  1940. icnt++;
  1941. }
  1942. }
  1943. }
  1944. }
  1945. }
  1946. }
  1947. /* purge collected inboxes */
  1948. xs *ib_dir = xs_fmt("%s/inbox", srv_basedir);
  1949. _purge_dir(ib_dir, 7);
  1950. /* purge the instance timeline */
  1951. xs *itl_fn = xs_fmt("%s/public.idx", srv_basedir);
  1952. int itl_gc = index_gc(itl_fn);
  1953. /* purge tag indexes */
  1954. xs *tag_spec = xs_fmt("%s/tag/??", srv_basedir);
  1955. xs *tag_dirs = xs_glob(tag_spec, 0, 0);
  1956. p = tag_dirs;
  1957. int tag_gc = 0;
  1958. while (xs_list_iter(&p, &v)) {
  1959. xs *spec2 = xs_fmt("%s/" "*.idx", v);
  1960. xs *files = xs_glob(spec2, 0, 0);
  1961. xs_list *p2;
  1962. xs_str *v2;
  1963. p2 = files;
  1964. while (xs_list_iter(&p2, &v2)) {
  1965. tag_gc += index_gc(v2);
  1966. xs *bak = xs_fmt("%s.bak", v2);
  1967. unlink(bak);
  1968. if (index_len(v2) == 0) {
  1969. /* there are no longer any entry with this tag;
  1970. purge it completely */
  1971. unlink(v2);
  1972. xs *dottag = xs_replace(v2, ".idx", ".tag");
  1973. unlink(dottag);
  1974. }
  1975. }
  1976. }
  1977. srv_debug(1, xs_fmt("purge: global "
  1978. "(obj: %d, idx: %d, itl: %d, tag: %d)", cnt, icnt, itl_gc, tag_gc));
  1979. }
  1980. void purge_user(snac *snac)
  1981. /* do the purge for this user */
  1982. {
  1983. int priv_days, pub_days, user_days = 0;
  1984. char *v;
  1985. int n;
  1986. priv_days = xs_number_get(xs_dict_get(srv_config, "timeline_purge_days"));
  1987. pub_days = xs_number_get(xs_dict_get(srv_config, "local_purge_days"));
  1988. if ((v = xs_dict_get(snac->config_o, "purge_days")) != NULL ||
  1989. (v = xs_dict_get(snac->config, "purge_days")) != NULL)
  1990. user_days = xs_number_get(v);
  1991. if (user_days) {
  1992. /* override admin settings only if they are lesser */
  1993. if (priv_days == 0 || user_days < priv_days)
  1994. priv_days = user_days;
  1995. if (pub_days == 0 || user_days < pub_days)
  1996. pub_days = user_days;
  1997. }
  1998. _purge_user_subdir(snac, "hidden", priv_days);
  1999. _purge_user_subdir(snac, "private", priv_days);
  2000. _purge_user_subdir(snac, "public", pub_days);
  2001. const char *idxs[] = { "followers.idx", "private.idx", "public.idx", "pinned.idx", NULL };
  2002. for (n = 0; idxs[n]; n++) {
  2003. xs *idx = xs_fmt("%s/%s", snac->basedir, idxs[n]);
  2004. int gc = index_gc(idx);
  2005. srv_debug(1, xs_fmt("purge: %s %d", idx, gc));
  2006. }
  2007. }
  2008. void purge_all(void)
  2009. /* purge all users */
  2010. {
  2011. snac snac;
  2012. xs *list = user_list();
  2013. char *p, *uid;
  2014. p = list;
  2015. while (xs_list_iter(&p, &uid)) {
  2016. if (user_open(&snac, uid)) {
  2017. purge_user(&snac);
  2018. user_free(&snac);
  2019. }
  2020. }
  2021. purge_server();
  2022. #ifndef NO_MASTODON_API
  2023. mastoapi_purge();
  2024. #endif
  2025. }
  2026. /** archive **/
  2027. void srv_archive(const char *direction, const char *url, xs_dict *req,
  2028. const char *payload, int p_size,
  2029. int status, xs_dict *headers,
  2030. const char *body, int b_size)
  2031. /* archives a connection */
  2032. {
  2033. /* obsessive archiving */
  2034. xs *date = tid(0);
  2035. xs *dir = xs_fmt("%s/archive/%s_%s", srv_basedir, date, direction);
  2036. FILE *f;
  2037. if (mkdirx(dir) != -1) {
  2038. xs *meta_fn = xs_fmt("%s/_META", dir);
  2039. if ((f = fopen(meta_fn, "w")) != NULL) {
  2040. xs *j1 = xs_json_dumps(req, 4);
  2041. xs *j2 = xs_json_dumps(headers, 4);
  2042. fprintf(f, "dir: %s\n", direction);
  2043. if (url)
  2044. fprintf(f, "url: %s\n", url);
  2045. fprintf(f, "req: %s\n", j1);
  2046. fprintf(f, "p_size: %d\n", p_size);
  2047. fprintf(f, "status: %d\n", status);
  2048. fprintf(f, "response: %s\n", j2);
  2049. fprintf(f, "b_size: %d\n", b_size);
  2050. fclose(f);
  2051. }
  2052. if (p_size && payload) {
  2053. xs *payload_fn = NULL;
  2054. xs *payload_fn_raw = NULL;
  2055. char *v = xs_dict_get(req, "content-type");
  2056. if (v && xs_str_in(v, "json") != -1) {
  2057. payload_fn = xs_fmt("%s/payload.json", dir);
  2058. if ((f = fopen(payload_fn, "w")) != NULL) {
  2059. xs *v1 = xs_json_loads(payload);
  2060. xs *j1 = NULL;
  2061. if (v1 != NULL)
  2062. j1 = xs_json_dumps(v1, 4);
  2063. if (j1 != NULL)
  2064. fwrite(j1, strlen(j1), 1, f);
  2065. else
  2066. fwrite(payload, p_size, 1, f);
  2067. fclose(f);
  2068. }
  2069. }
  2070. payload_fn_raw = xs_fmt("%s/payload", dir);
  2071. if ((f = fopen(payload_fn_raw, "w")) != NULL) {
  2072. fwrite(payload, p_size, 1, f);
  2073. fclose(f);
  2074. }
  2075. }
  2076. if (b_size && body) {
  2077. xs *body_fn = NULL;
  2078. char *v = xs_dict_get(headers, "content-type");
  2079. if (v && xs_str_in(v, "json") != -1) {
  2080. body_fn = xs_fmt("%s/body.json", dir);
  2081. if ((f = fopen(body_fn, "w")) != NULL) {
  2082. xs *v1 = xs_json_loads(body);
  2083. xs *j1 = NULL;
  2084. if (v1 != NULL)
  2085. j1 = xs_json_dumps(v1, 4);
  2086. if (j1 != NULL)
  2087. fwrite(j1, strlen(j1), 1, f);
  2088. else
  2089. fwrite(body, b_size, 1, f);
  2090. fclose(f);
  2091. }
  2092. }
  2093. else {
  2094. body_fn = xs_fmt("%s/body", dir);
  2095. if ((f = fopen(body_fn, "w")) != NULL) {
  2096. fwrite(body, b_size, 1, f);
  2097. fclose(f);
  2098. }
  2099. }
  2100. }
  2101. }
  2102. }
  2103. void srv_archive_error(const char *prefix, const xs_str *err,
  2104. const xs_dict *req, const xs_val *data)
  2105. /* archives an error */
  2106. {
  2107. xs *ntid = tid(0);
  2108. xs *fn = xs_fmt("%s/error/%s_%s", srv_basedir, ntid, prefix);
  2109. FILE *f;
  2110. if ((f = fopen(fn, "w")) != NULL) {
  2111. fprintf(f, "Error: %s\n", err);
  2112. if (req) {
  2113. fprintf(f, "Request headers:\n");
  2114. xs_json_dump(req, 4, f);
  2115. fprintf(f, "\n");
  2116. }
  2117. if (data) {
  2118. fprintf(f, "Data:\n");
  2119. if (xs_type(data) == XSTYPE_LIST || xs_type(data) == XSTYPE_DICT) {
  2120. xs_json_dump(data, 4, f);
  2121. }
  2122. else
  2123. fprintf(f, "%s", data);
  2124. fprintf(f, "\n");
  2125. }
  2126. fclose(f);
  2127. }
  2128. }
  2129. void srv_archive_qitem(char *prefix, xs_dict *q_item)
  2130. /* archives a q_item in the error folder */
  2131. {
  2132. xs *ntid = tid(0);
  2133. xs *fn = xs_fmt("%s/error/%s_qitem_%s", srv_basedir, ntid, prefix);
  2134. FILE *f;
  2135. if ((f = fopen(fn, "w")) != NULL) {
  2136. xs_json_dump(q_item, 4, f);
  2137. fclose(f);
  2138. }
  2139. }