data.c 59 KB

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