data.c 118 KB

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