data.c 78 KB

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