data.c 108 KB

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