data.c 63 KB

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