data.c 97 KB

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