data.c 98 KB

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