data.c 79 KB

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