data.c 96 KB

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