data.c 81 KB

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