1
0

data.c 108 KB

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