data.c 84 KB

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