data.c 79 KB

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