data.c 99 KB

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