data.c 114 KB

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