data.c 83 KB

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