1
0

data.c 111 KB

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