data.c 59 KB

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