mastoapi.c 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378
  1. /* snac - A simple, minimalistic ActivityPub instance */
  2. /* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
  3. #ifndef NO_MASTODON_API
  4. #include "xs.h"
  5. #include "xs_hex.h"
  6. #include "xs_openssl.h"
  7. #include "xs_json.h"
  8. #include "xs_io.h"
  9. #include "xs_time.h"
  10. #include "xs_glob.h"
  11. #include "xs_set.h"
  12. #include "xs_random.h"
  13. #include "xs_url.h"
  14. #include "xs_mime.h"
  15. #include "xs_match.h"
  16. #include "snac.h"
  17. static xs_str *random_str(void)
  18. /* just what is says in the tin */
  19. {
  20. unsigned int data[4] = {0};
  21. xs_rnd_buf(data, sizeof(data));
  22. return xs_hex_enc((char *)data, sizeof(data));
  23. }
  24. int app_add(const char *id, const xs_dict *app)
  25. /* stores an app */
  26. {
  27. if (!xs_is_hex(id))
  28. return HTTP_STATUS_INTERNAL_SERVER_ERROR;
  29. int status = HTTP_STATUS_CREATED;
  30. xs *fn = xs_fmt("%s/app/", srv_basedir);
  31. FILE *f;
  32. mkdirx(fn);
  33. fn = xs_str_cat(fn, id);
  34. fn = xs_str_cat(fn, ".json");
  35. if ((f = fopen(fn, "w")) != NULL) {
  36. xs_json_dump(app, 4, f);
  37. fclose(f);
  38. }
  39. else
  40. status = HTTP_STATUS_INTERNAL_SERVER_ERROR;
  41. return status;
  42. }
  43. xs_str *_app_fn(const char *id)
  44. {
  45. return xs_fmt("%s/app/%s.json", srv_basedir, id);
  46. }
  47. xs_dict *app_get(const char *id)
  48. /* gets an app */
  49. {
  50. if (!xs_is_hex(id))
  51. return NULL;
  52. xs *fn = _app_fn(id);
  53. xs_dict *app = NULL;
  54. FILE *f;
  55. if ((f = fopen(fn, "r")) != NULL) {
  56. app = xs_json_load(f);
  57. fclose(f);
  58. }
  59. return app;
  60. }
  61. int app_del(const char *id)
  62. /* deletes an app */
  63. {
  64. if (!xs_is_hex(id))
  65. return -1;
  66. xs *fn = _app_fn(id);
  67. return unlink(fn);
  68. }
  69. int token_add(const char *id, const xs_dict *token)
  70. /* stores a token */
  71. {
  72. if (!xs_is_hex(id))
  73. return HTTP_STATUS_INTERNAL_SERVER_ERROR;
  74. int status = HTTP_STATUS_CREATED;
  75. xs *fn = xs_fmt("%s/token/", srv_basedir);
  76. FILE *f;
  77. mkdirx(fn);
  78. fn = xs_str_cat(fn, id);
  79. fn = xs_str_cat(fn, ".json");
  80. if ((f = fopen(fn, "w")) != NULL) {
  81. xs_json_dump(token, 4, f);
  82. fclose(f);
  83. }
  84. else
  85. status = HTTP_STATUS_INTERNAL_SERVER_ERROR;
  86. return status;
  87. }
  88. xs_dict *token_get(const char *id)
  89. /* gets a token */
  90. {
  91. if (!xs_is_hex(id))
  92. return NULL;
  93. xs *fn = xs_fmt("%s/token/%s.json", srv_basedir, id);
  94. xs_dict *token = NULL;
  95. FILE *f;
  96. if ((f = fopen(fn, "r")) != NULL) {
  97. token = xs_json_load(f);
  98. fclose(f);
  99. }
  100. return token;
  101. }
  102. int token_del(const char *id)
  103. /* deletes a token */
  104. {
  105. if (!xs_is_hex(id))
  106. return -1;
  107. xs *fn = xs_fmt("%s/token/%s.json", srv_basedir, id);
  108. return unlink(fn);
  109. }
  110. const char *login_page = ""
  111. "<!DOCTYPE html>\n"
  112. "<html>\n"
  113. "<head>\n"
  114. "<title>%s OAuth - Snac2</title>\n"
  115. "<meta content=\"width=device-width, initial-scale=1, minimum-scale=1, user-scalable=no\" name=\"viewport\">"
  116. "<style>:root {color-scheme: light dark}</style>\n"
  117. "</head>\n"
  118. "<body><h1>%s OAuth identify</h1>\n"
  119. "<div style=\"background-color: red; color: white\">%s</div>\n"
  120. "<form method=\"post\" action=\"%s:/" "/%s/%s\">\n"
  121. "<p>Login: <input type=\"text\" name=\"login\"></p>\n"
  122. "<p>Password: <input type=\"password\" name=\"passwd\"></p>\n"
  123. "<input type=\"hidden\" name=\"redir\" value=\"%s\">\n"
  124. "<input type=\"hidden\" name=\"cid\" value=\"%s\">\n"
  125. "<input type=\"hidden\" name=\"state\" value=\"%s\">\n"
  126. "<input type=\"submit\" value=\"OK\">\n"
  127. "</form><p>%s</p></body></html>\n"
  128. "";
  129. int oauth_get_handler(const xs_dict *req, const char *q_path,
  130. char **body, int *b_size, char **ctype)
  131. {
  132. (void)b_size;
  133. if (!xs_startswith(q_path, "/oauth/"))
  134. return 0;
  135. int status = HTTP_STATUS_NOT_FOUND;
  136. const xs_dict *msg = xs_dict_get(req, "q_vars");
  137. xs *cmd = xs_replace_n(q_path, "/oauth", "", 1);
  138. srv_debug(1, xs_fmt("oauth_get_handler %s", q_path));
  139. if (strcmp(cmd, "/authorize") == 0) { /** **/
  140. const char *cid = xs_dict_get(msg, "client_id");
  141. const char *ruri = xs_dict_get(msg, "redirect_uri");
  142. const char *rtype = xs_dict_get(msg, "response_type");
  143. const char *state = xs_dict_get(msg, "state");
  144. status = HTTP_STATUS_BAD_REQUEST;
  145. if (cid && ruri && rtype && strcmp(rtype, "code") == 0) {
  146. xs *app = app_get(cid);
  147. if (app != NULL) {
  148. const char *host = xs_dict_get(srv_config, "host");
  149. const char *proto = xs_dict_get_def(srv_config, "protocol", "https");
  150. if (xs_is_null(state))
  151. state = "";
  152. *body = xs_fmt(login_page, host, host, "", proto, host, "oauth/x-snac-login",
  153. ruri, cid, state, USER_AGENT);
  154. *ctype = "text/html";
  155. status = HTTP_STATUS_OK;
  156. srv_debug(1, xs_fmt("oauth authorize: generating login page"));
  157. }
  158. else
  159. srv_debug(1, xs_fmt("oauth authorize: bad client_id %s", cid));
  160. }
  161. else
  162. srv_debug(1, xs_fmt("oauth authorize: invalid or unset arguments"));
  163. }
  164. else
  165. if (strcmp(cmd, "/x-snac-get-token") == 0) { /** **/
  166. const char *host = xs_dict_get(srv_config, "host");
  167. const char *proto = xs_dict_get_def(srv_config, "protocol", "https");
  168. *body = xs_fmt(login_page, host, host, "", proto, host, "oauth/x-snac-get-token",
  169. "", "", "", USER_AGENT);
  170. *ctype = "text/html";
  171. status = HTTP_STATUS_OK;
  172. }
  173. return status;
  174. }
  175. int oauth_post_handler(const xs_dict *req, const char *q_path,
  176. const char *payload, int p_size,
  177. char **body, int *b_size, char **ctype)
  178. {
  179. (void)p_size;
  180. (void)b_size;
  181. if (!xs_startswith(q_path, "/oauth/"))
  182. return 0;
  183. int status = HTTP_STATUS_NOT_FOUND;
  184. const char *i_ctype = xs_dict_get(req, "content-type");
  185. xs *args = NULL;
  186. if (i_ctype && xs_startswith(i_ctype, "application/json")) {
  187. if (!xs_is_null(payload))
  188. args = xs_json_loads(payload);
  189. }
  190. else
  191. if (i_ctype && xs_startswith(i_ctype, "application/x-www-form-urlencoded") && payload) {
  192. xs *upl = xs_url_dec(payload);
  193. args = xs_url_vars(upl);
  194. }
  195. else
  196. args = xs_dup(xs_dict_get(req, "p_vars"));
  197. if (args == NULL)
  198. return HTTP_STATUS_BAD_REQUEST;
  199. xs *cmd = xs_replace_n(q_path, "/oauth", "", 1);
  200. srv_debug(1, xs_fmt("oauth_post_handler %s", q_path));
  201. if (strcmp(cmd, "/x-snac-login") == 0) { /** **/
  202. const char *login = xs_dict_get(args, "login");
  203. const char *passwd = xs_dict_get(args, "passwd");
  204. const char *redir = xs_dict_get(args, "redir");
  205. const char *cid = xs_dict_get(args, "cid");
  206. const char *state = xs_dict_get(args, "state");
  207. const char *host = xs_dict_get(srv_config, "host");
  208. const char *proto = xs_dict_get_def(srv_config, "protocol", "https");
  209. /* by default, generate another login form with an error */
  210. *body = xs_fmt(login_page, host, host, "LOGIN INCORRECT", proto, host, "oauth/x-snac-login",
  211. redir, cid, state, USER_AGENT);
  212. *ctype = "text/html";
  213. status = HTTP_STATUS_OK;
  214. if (login && passwd && redir && cid) {
  215. snac snac;
  216. if (user_open(&snac, login)) {
  217. /* check the login + password */
  218. if (check_password(login, passwd, xs_dict_get(snac.config, "passwd"))) {
  219. /* success! redirect to the desired uri */
  220. xs *code = random_str();
  221. xs_free(*body);
  222. if (strcmp(redir, "urn:ietf:wg:oauth:2.0:oob") == 0) {
  223. *body = xs_dup(code);
  224. }
  225. else {
  226. if (xs_str_in(redir, "?") != -1)
  227. *body = xs_fmt("%s&code=%s", redir, code);
  228. else
  229. *body = xs_fmt("%s?code=%s", redir, code);
  230. status = HTTP_STATUS_SEE_OTHER;
  231. }
  232. /* if there is a state, add it */
  233. if (!xs_is_null(state) && *state) {
  234. *body = xs_str_cat(*body, "&state=");
  235. *body = xs_str_cat(*body, state);
  236. }
  237. srv_log(xs_fmt("oauth x-snac-login: '%s' success, redirect to %s",
  238. login, *body));
  239. /* assign the login to the app */
  240. xs *app = app_get(cid);
  241. if (app != NULL) {
  242. app = xs_dict_set(app, "uid", login);
  243. app = xs_dict_set(app, "code", code);
  244. app_add(cid, app);
  245. }
  246. else
  247. srv_log(xs_fmt("oauth x-snac-login: error getting app %s", cid));
  248. }
  249. else
  250. srv_debug(1, xs_fmt("oauth x-snac-login: login '%s' incorrect", login));
  251. user_free(&snac);
  252. }
  253. else
  254. srv_debug(1, xs_fmt("oauth x-snac-login: bad user '%s'", login));
  255. }
  256. else
  257. srv_debug(1, xs_fmt("oauth x-snac-login: invalid or unset arguments"));
  258. }
  259. else
  260. if (strcmp(cmd, "/token") == 0) { /** **/
  261. xs *wrk = NULL;
  262. const char *gtype = xs_dict_get(args, "grant_type");
  263. const char *code = xs_dict_get(args, "code");
  264. const char *cid = xs_dict_get(args, "client_id");
  265. const char *csec = xs_dict_get(args, "client_secret");
  266. const char *ruri = xs_dict_get(args, "redirect_uri");
  267. const char *scope = xs_dict_get(args, "scope");
  268. /* no client_secret? check if it's inside an authorization header
  269. (AndStatus does it this way) */
  270. if (xs_is_null(csec)) {
  271. const char *auhdr = xs_dict_get(req, "authorization");
  272. if (!xs_is_null(auhdr) && xs_startswith(auhdr, "Basic ")) {
  273. xs *s1 = xs_replace_n(auhdr, "Basic ", "", 1);
  274. int size;
  275. xs *s2 = xs_base64_dec(s1, &size);
  276. if (!xs_is_null(s2)) {
  277. xs *l1 = xs_split(s2, ":");
  278. if (xs_list_len(l1) == 2) {
  279. wrk = xs_dup(xs_list_get(l1, 1));
  280. csec = wrk;
  281. }
  282. }
  283. }
  284. }
  285. /* no code?
  286. I'm not sure of the impacts of this right now, but Subway Tooter does not
  287. provide a code so one must be generated */
  288. if (xs_is_null(code)){
  289. code = random_str();
  290. }
  291. if (gtype && code && cid && csec && ruri) {
  292. xs *app = app_get(cid);
  293. if (app == NULL) {
  294. status = HTTP_STATUS_UNAUTHORIZED;
  295. srv_log(xs_fmt("oauth token: invalid app %s", cid));
  296. }
  297. else
  298. if (strcmp(csec, xs_dict_get(app, "client_secret")) != 0) {
  299. status = HTTP_STATUS_UNAUTHORIZED;
  300. srv_log(xs_fmt("oauth token: invalid client_secret for app %s", cid));
  301. }
  302. else {
  303. xs *rsp = xs_dict_new();
  304. xs *cat = xs_number_new(time(NULL));
  305. xs *tokid = random_str();
  306. rsp = xs_dict_append(rsp, "access_token", tokid);
  307. rsp = xs_dict_append(rsp, "token_type", "Bearer");
  308. rsp = xs_dict_append(rsp, "created_at", cat);
  309. if (!xs_is_null(scope))
  310. rsp = xs_dict_append(rsp, "scope", scope);
  311. *body = xs_json_dumps(rsp, 4);
  312. *ctype = "application/json";
  313. status = HTTP_STATUS_OK;
  314. const char *uid = xs_dict_get(app, "uid");
  315. srv_debug(1, xs_fmt("oauth token: "
  316. "successful login for %s, new token %s", uid, tokid));
  317. xs *token = xs_dict_new();
  318. token = xs_dict_append(token, "token", tokid);
  319. token = xs_dict_append(token, "client_id", cid);
  320. token = xs_dict_append(token, "client_secret", csec);
  321. token = xs_dict_append(token, "uid", uid);
  322. token = xs_dict_append(token, "code", code);
  323. token_add(tokid, token);
  324. }
  325. }
  326. else {
  327. srv_debug(1, xs_fmt("oauth token: invalid or unset arguments"));
  328. status = HTTP_STATUS_BAD_REQUEST;
  329. }
  330. }
  331. else
  332. if (strcmp(cmd, "/revoke") == 0) { /** **/
  333. const char *cid = xs_dict_get(args, "client_id");
  334. const char *csec = xs_dict_get(args, "client_secret");
  335. const char *tokid = xs_dict_get(args, "token");
  336. if (cid && csec && tokid) {
  337. xs *token = token_get(tokid);
  338. *body = xs_str_new("{}");
  339. *ctype = "application/json";
  340. if (token == NULL || strcmp(csec, xs_dict_get(token, "client_secret")) != 0) {
  341. srv_debug(1, xs_fmt("oauth revoke: bad secret for token %s", tokid));
  342. status = HTTP_STATUS_FORBIDDEN;
  343. }
  344. else {
  345. token_del(tokid);
  346. srv_debug(1, xs_fmt("oauth revoke: revoked token %s", tokid));
  347. status = HTTP_STATUS_OK;
  348. /* also delete the app, as it serves no purpose from now on */
  349. app_del(cid);
  350. }
  351. }
  352. else {
  353. srv_debug(1, xs_fmt("oauth revoke: invalid or unset arguments"));
  354. status = HTTP_STATUS_FORBIDDEN;
  355. }
  356. }
  357. if (strcmp(cmd, "/x-snac-get-token") == 0) { /** **/
  358. const char *login = xs_dict_get(args, "login");
  359. const char *passwd = xs_dict_get(args, "passwd");
  360. const char *host = xs_dict_get(srv_config, "host");
  361. const char *proto = xs_dict_get_def(srv_config, "protocol", "https");
  362. /* by default, generate another login form with an error */
  363. *body = xs_fmt(login_page, host, host, "LOGIN INCORRECT", proto, host, "oauth/x-snac-get-token",
  364. "", "", "", USER_AGENT);
  365. *ctype = "text/html";
  366. status = HTTP_STATUS_OK;
  367. if (login && passwd) {
  368. snac user;
  369. if (user_open(&user, login)) {
  370. /* check the login + password */
  371. if (check_password(login, passwd, xs_dict_get(user.config, "passwd"))) {
  372. /* success! create a new token */
  373. xs *tokid = random_str();
  374. srv_debug(1, xs_fmt("x-snac-new-token: "
  375. "successful login for %s, new token %s", login, tokid));
  376. xs *token = xs_dict_new();
  377. token = xs_dict_append(token, "token", tokid);
  378. token = xs_dict_append(token, "client_id", "snac-client");
  379. token = xs_dict_append(token, "client_secret", "");
  380. token = xs_dict_append(token, "uid", login);
  381. token = xs_dict_append(token, "code", "");
  382. token_add(tokid, token);
  383. *ctype = "text/plain";
  384. xs_free(*body);
  385. *body = xs_dup(tokid);
  386. }
  387. user_free(&user);
  388. }
  389. }
  390. }
  391. return status;
  392. }
  393. xs_str *mastoapi_id(const xs_dict *msg)
  394. /* returns a somewhat Mastodon-compatible status id */
  395. {
  396. const char *id = xs_dict_get(msg, "id");
  397. xs *md5 = xs_md5_hex(id, strlen(id));
  398. return xs_fmt("%10.0f%s", object_ctime_by_md5(md5), md5);
  399. }
  400. #define MID_TO_MD5(id) (id + 10)
  401. xs_dict *mastoapi_account(const xs_dict *actor)
  402. /* converts an ActivityPub actor to a Mastodon account */
  403. {
  404. const char *id = xs_dict_get(actor, "id");
  405. const char *pub = xs_dict_get(actor, "published");
  406. if (xs_type(id) != XSTYPE_STRING)
  407. return NULL;
  408. const char *prefu = xs_dict_get(actor, "preferredUsername");
  409. const char *display_name = xs_dict_get(actor, "name");
  410. if (xs_is_null(display_name) || *display_name == '\0')
  411. display_name = prefu;
  412. xs_dict *acct = xs_dict_new();
  413. xs *acct_md5 = xs_md5_hex(id, strlen(id));
  414. acct = xs_dict_append(acct, "id", acct_md5);
  415. acct = xs_dict_append(acct, "username", prefu);
  416. acct = xs_dict_append(acct, "display_name", display_name);
  417. acct = xs_dict_append(acct, "discoverable", xs_stock(XSTYPE_TRUE));
  418. acct = xs_dict_append(acct, "group", xs_stock(XSTYPE_FALSE));
  419. acct = xs_dict_append(acct, "hide_collections", xs_stock(XSTYPE_FALSE));
  420. acct = xs_dict_append(acct, "indexable", xs_stock(XSTYPE_TRUE));
  421. acct = xs_dict_append(acct, "noindex", xs_stock(XSTYPE_FALSE));
  422. acct = xs_dict_append(acct, "roles", xs_stock(XSTYPE_LIST));
  423. {
  424. /* create the acct field as user@host */
  425. xs *l = xs_split(id, "/");
  426. xs *fquid = xs_fmt("%s@%s", prefu, xs_list_get(l, 2));
  427. acct = xs_dict_append(acct, "acct", fquid);
  428. }
  429. if (pub)
  430. acct = xs_dict_append(acct, "created_at", pub);
  431. else {
  432. /* unset created_at crashes Tusky, so lie like a mf */
  433. xs *date = xs_str_utctime(0, ISO_DATE_SPEC);
  434. acct = xs_dict_append(acct, "created_at", date);
  435. }
  436. xs *last_status_at = xs_str_utctime(0, "%Y-%m-%d");
  437. acct = xs_dict_append(acct, "last_status_at", last_status_at);
  438. const char *note = xs_dict_get(actor, "summary");
  439. if (xs_is_null(note))
  440. note = "";
  441. if (strcmp(xs_dict_get(actor, "type"), "Service") == 0)
  442. acct = xs_dict_append(acct, "bot", xs_stock(XSTYPE_TRUE));
  443. else
  444. acct = xs_dict_append(acct, "bot", xs_stock(XSTYPE_FALSE));
  445. acct = xs_dict_append(acct, "note", note);
  446. acct = xs_dict_append(acct, "url", id);
  447. acct = xs_dict_append(acct, "uri", id);
  448. xs *avatar = NULL;
  449. const xs_dict *av = xs_dict_get(actor, "icon");
  450. if (xs_type(av) == XSTYPE_DICT) {
  451. const char *url = xs_dict_get(av, "url");
  452. if (url != NULL)
  453. avatar = xs_dup(url);
  454. }
  455. if (avatar == NULL)
  456. avatar = xs_fmt("%s/susie.png", srv_baseurl);
  457. acct = xs_dict_append(acct, "avatar", avatar);
  458. acct = xs_dict_append(acct, "avatar_static", avatar);
  459. xs *header = NULL;
  460. const xs_dict *hd = xs_dict_get(actor, "image");
  461. if (xs_type(hd) == XSTYPE_DICT)
  462. header = xs_dup(xs_dict_get(hd, "url"));
  463. if (xs_is_null(header))
  464. header = xs_fmt("%s/header.png", srv_baseurl);
  465. acct = xs_dict_append(acct, "header", header);
  466. acct = xs_dict_append(acct, "header_static", header);
  467. /* emojis */
  468. const xs_list *p;
  469. if (!xs_is_null(p = xs_dict_get(actor, "tag"))) {
  470. xs *eml = xs_list_new();
  471. const xs_dict *v;
  472. int c = 0;
  473. while (xs_list_next(p, &v, &c)) {
  474. const char *type = xs_dict_get(v, "type");
  475. if (!xs_is_null(type) && strcmp(type, "Emoji") == 0) {
  476. const char *name = xs_dict_get(v, "name");
  477. const xs_dict *icon = xs_dict_get(v, "icon");
  478. if (!xs_is_null(name) && !xs_is_null(icon)) {
  479. const char *url = xs_dict_get(icon, "url");
  480. if (!xs_is_null(url)) {
  481. xs *nm = xs_strip_chars_i(xs_dup(name), ":");
  482. xs *d1 = xs_dict_new();
  483. d1 = xs_dict_append(d1, "shortcode", nm);
  484. d1 = xs_dict_append(d1, "url", url);
  485. d1 = xs_dict_append(d1, "static_url", url);
  486. d1 = xs_dict_append(d1, "visible_in_picker", xs_stock(XSTYPE_TRUE));
  487. eml = xs_list_append(eml, d1);
  488. }
  489. }
  490. }
  491. }
  492. acct = xs_dict_append(acct, "emojis", eml);
  493. }
  494. acct = xs_dict_append(acct, "locked", xs_stock(XSTYPE_FALSE));
  495. acct = xs_dict_append(acct, "followers_count", xs_stock(0));
  496. acct = xs_dict_append(acct, "following_count", xs_stock(0));
  497. acct = xs_dict_append(acct, "statuses_count", xs_stock(0));
  498. xs *fields = xs_list_new();
  499. p = xs_dict_get(actor, "attachment");
  500. const xs_dict *v;
  501. /* dict of validated links */
  502. xs_dict *val_links = NULL;
  503. const xs_dict *metadata = xs_stock(XSTYPE_DICT);
  504. snac user = {0};
  505. if (xs_startswith(id, srv_baseurl)) {
  506. /* if it's a local user, open it and pick its validated links */
  507. if (user_open(&user, prefu)) {
  508. val_links = user.links;
  509. metadata = xs_dict_get_def(user.config, "metadata", xs_stock(XSTYPE_DICT));
  510. }
  511. }
  512. if (xs_is_null(val_links))
  513. val_links = xs_stock(XSTYPE_DICT);
  514. int c = 0;
  515. while (xs_list_next(p, &v, &c)) {
  516. const char *type = xs_dict_get(v, "type");
  517. const char *name = xs_dict_get(v, "name");
  518. const char *value = xs_dict_get(v, "value");
  519. if (!xs_is_null(type) && !xs_is_null(name) &&
  520. !xs_is_null(value) && strcmp(type, "PropertyValue") == 0) {
  521. xs *val_date = NULL;
  522. const char *url = xs_dict_get(metadata, name);
  523. if (!xs_is_null(url) && xs_startswith(url, "https:/" "/")) {
  524. const xs_number *verified_time = xs_dict_get(val_links, url);
  525. if (xs_type(verified_time) == XSTYPE_NUMBER) {
  526. time_t t = xs_number_get(verified_time);
  527. if (t > 0)
  528. val_date = xs_str_utctime(t, ISO_DATE_SPEC);
  529. }
  530. }
  531. xs *d = xs_dict_new();
  532. d = xs_dict_append(d, "name", name);
  533. d = xs_dict_append(d, "value", value);
  534. d = xs_dict_append(d, "verified_at",
  535. xs_type(val_date) == XSTYPE_STRING && *val_date ?
  536. val_date : xs_stock(XSTYPE_NULL));
  537. fields = xs_list_append(fields, d);
  538. }
  539. }
  540. user_free(&user);
  541. acct = xs_dict_append(acct, "fields", fields);
  542. return acct;
  543. }
  544. xs_str *mastoapi_date(const char *date)
  545. /* converts an ISO 8601 date to whatever format Mastodon uses */
  546. {
  547. xs_str *s = xs_crop_i(xs_dup(date), 0, 19);
  548. s = xs_str_cat(s, ".000Z");
  549. return s;
  550. }
  551. xs_dict *mastoapi_poll(snac *snac, const xs_dict *msg)
  552. /* creates a mastoapi Poll object */
  553. {
  554. xs_dict *poll = xs_dict_new();
  555. xs *mid = mastoapi_id(msg);
  556. const xs_list *opts = NULL;
  557. const xs_val *v;
  558. int num_votes = 0;
  559. xs *options = xs_list_new();
  560. poll = xs_dict_append(poll, "id", mid);
  561. const char *date = xs_dict_get(msg, "endTime");
  562. if (date == NULL)
  563. date = xs_dict_get(msg, "closed");
  564. if (date == NULL)
  565. return NULL;
  566. xs *fd = mastoapi_date(date);
  567. poll = xs_dict_append(poll, "expires_at", fd);
  568. date = xs_dict_get(msg, "closed");
  569. time_t t = 0;
  570. if (date != NULL)
  571. t = xs_parse_iso_date(date, 0);
  572. poll = xs_dict_append(poll, "expired",
  573. t < time(NULL) ? xs_stock(XSTYPE_FALSE) : xs_stock(XSTYPE_TRUE));
  574. if ((opts = xs_dict_get(msg, "oneOf")) != NULL)
  575. poll = xs_dict_append(poll, "multiple", xs_stock(XSTYPE_FALSE));
  576. else {
  577. opts = xs_dict_get(msg, "anyOf");
  578. poll = xs_dict_append(poll, "multiple", xs_stock(XSTYPE_TRUE));
  579. }
  580. int c = 0;
  581. while (xs_list_next(opts, &v, &c)) {
  582. const char *title = xs_dict_get(v, "name");
  583. const char *replies = xs_dict_get(v, "replies");
  584. if (title && replies) {
  585. const char *votes_count = xs_dict_get(replies, "totalItems");
  586. if (xs_type(votes_count) == XSTYPE_NUMBER) {
  587. xs *d = xs_dict_new();
  588. d = xs_dict_append(d, "title", title);
  589. d = xs_dict_append(d, "votes_count", votes_count);
  590. options = xs_list_append(options, d);
  591. num_votes += xs_number_get(votes_count);
  592. }
  593. }
  594. }
  595. poll = xs_dict_append(poll, "options", options);
  596. xs *vc = xs_number_new(num_votes);
  597. poll = xs_dict_append(poll, "votes_count", vc);
  598. poll = xs_dict_append(poll, "emojis", xs_stock(XSTYPE_LIST));
  599. poll = xs_dict_append(poll, "voted",
  600. (snac && was_question_voted(snac, xs_dict_get(msg, "id"))) ?
  601. xs_stock(XSTYPE_TRUE) : xs_stock(XSTYPE_FALSE));
  602. return poll;
  603. }
  604. xs_dict *mastoapi_status(snac *snac, const xs_dict *msg)
  605. /* converts an ActivityPub note to a Mastodon status */
  606. {
  607. xs *actor = NULL;
  608. actor_get_refresh(snac, get_atto(msg), &actor);
  609. /* if the author is not here, discard */
  610. if (actor == NULL)
  611. return NULL;
  612. const char *type = xs_dict_get(msg, "type");
  613. const char *id = xs_dict_get(msg, "id");
  614. /* fail if it's not a valid actor */
  615. if (xs_is_null(type) || xs_is_null(id))
  616. return NULL;
  617. xs *acct = mastoapi_account(actor);
  618. if (acct == NULL)
  619. return NULL;
  620. xs *idx = NULL;
  621. xs *ixc = NULL;
  622. const char *tmp;
  623. xs *mid = mastoapi_id(msg);
  624. xs_dict *st = xs_dict_new();
  625. st = xs_dict_append(st, "id", mid);
  626. st = xs_dict_append(st, "uri", id);
  627. st = xs_dict_append(st, "url", id);
  628. st = xs_dict_append(st, "account", acct);
  629. xs *fd = mastoapi_date(xs_dict_get(msg, "published"));
  630. st = xs_dict_append(st, "created_at", fd);
  631. {
  632. const char *content = xs_dict_get(msg, "content");
  633. const char *name = xs_dict_get(msg, "name");
  634. xs *s1 = NULL;
  635. if (name && content)
  636. s1 = xs_fmt("%s<br><br>%s", name, content);
  637. else
  638. if (name)
  639. s1 = xs_dup(name);
  640. else
  641. if (content)
  642. s1 = xs_dup(content);
  643. else
  644. s1 = xs_str_new(NULL);
  645. st = xs_dict_append(st, "content", s1);
  646. }
  647. st = xs_dict_append(st, "visibility",
  648. is_msg_public(msg) ? "public" : "private");
  649. tmp = xs_dict_get(msg, "sensitive");
  650. if (xs_is_null(tmp))
  651. tmp = xs_stock(XSTYPE_FALSE);
  652. st = xs_dict_append(st, "sensitive", tmp);
  653. tmp = xs_dict_get(msg, "summary");
  654. if (xs_is_null(tmp))
  655. tmp = "";
  656. st = xs_dict_append(st, "spoiler_text", tmp);
  657. /* create the list of attachments */
  658. xs *attach = get_attachments(msg);
  659. {
  660. xs_list *p = attach;
  661. const xs_dict *v;
  662. xs *matt = xs_list_new();
  663. while (xs_list_iter(&p, &v)) {
  664. const char *type = xs_dict_get(v, "type");
  665. const char *href = xs_dict_get(v, "href");
  666. const char *name = xs_dict_get(v, "name");
  667. if (xs_match(type, "image/*|video/*|Image|Video")) { /* */
  668. xs *matteid = xs_fmt("%s_%d", id, xs_list_len(matt));
  669. xs *d = xs_dict_new();
  670. d = xs_dict_append(d, "id", matteid);
  671. d = xs_dict_append(d, "url", href);
  672. d = xs_dict_append(d, "preview_url", href);
  673. d = xs_dict_append(d, "remote_url", href);
  674. d = xs_dict_append(d, "description", name);
  675. d = xs_dict_append(d, "type", (*type == 'v' || *type == 'V') ? "video" : "image");
  676. matt = xs_list_append(matt, d);
  677. }
  678. }
  679. st = xs_dict_append(st, "media_attachments", matt);
  680. }
  681. {
  682. xs *ml = xs_list_new();
  683. xs *htl = xs_list_new();
  684. xs *eml = xs_list_new();
  685. const xs_list *tag = xs_dict_get(msg, "tag");
  686. int n = 0;
  687. xs *tag_list = NULL;
  688. if (xs_type(tag) == XSTYPE_DICT) {
  689. tag_list = xs_list_new();
  690. tag_list = xs_list_append(tag_list, tag);
  691. }
  692. else
  693. if (xs_type(tag) == XSTYPE_LIST)
  694. tag_list = xs_dup(tag);
  695. else
  696. tag_list = xs_list_new();
  697. tag = tag_list;
  698. const xs_dict *v;
  699. int c = 0;
  700. while (xs_list_next(tag, &v, &c)) {
  701. const char *type = xs_dict_get(v, "type");
  702. if (xs_is_null(type))
  703. continue;
  704. xs *d1 = xs_dict_new();
  705. if (strcmp(type, "Mention") == 0) {
  706. const char *name = xs_dict_get(v, "name");
  707. const char *href = xs_dict_get(v, "href");
  708. if (!xs_is_null(name) && !xs_is_null(href) &&
  709. (snac == NULL || strcmp(href, snac->actor) != 0)) {
  710. xs *nm = xs_strip_chars_i(xs_dup(name), "@");
  711. xs *id = xs_fmt("%d", n++);
  712. d1 = xs_dict_append(d1, "id", id);
  713. d1 = xs_dict_append(d1, "username", nm);
  714. d1 = xs_dict_append(d1, "acct", nm);
  715. d1 = xs_dict_append(d1, "url", href);
  716. ml = xs_list_append(ml, d1);
  717. }
  718. }
  719. else
  720. if (strcmp(type, "Hashtag") == 0) {
  721. const char *name = xs_dict_get(v, "name");
  722. const char *href = xs_dict_get(v, "href");
  723. if (!xs_is_null(name) && !xs_is_null(href)) {
  724. xs *nm = xs_strip_chars_i(xs_dup(name), "#");
  725. d1 = xs_dict_append(d1, "name", nm);
  726. d1 = xs_dict_append(d1, "url", href);
  727. htl = xs_list_append(htl, d1);
  728. }
  729. }
  730. else
  731. if (strcmp(type, "Emoji") == 0) {
  732. const char *name = xs_dict_get(v, "name");
  733. const xs_dict *icon = xs_dict_get(v, "icon");
  734. if (!xs_is_null(name) && !xs_is_null(icon)) {
  735. const char *url = xs_dict_get(icon, "url");
  736. if (!xs_is_null(url)) {
  737. xs *nm = xs_strip_chars_i(xs_dup(name), ":");
  738. d1 = xs_dict_append(d1, "shortcode", nm);
  739. d1 = xs_dict_append(d1, "url", url);
  740. d1 = xs_dict_append(d1, "static_url", url);
  741. d1 = xs_dict_append(d1, "visible_in_picker", xs_stock(XSTYPE_TRUE));
  742. d1 = xs_dict_append(d1, "category", "Emojis");
  743. eml = xs_list_append(eml, d1);
  744. }
  745. }
  746. }
  747. }
  748. st = xs_dict_append(st, "mentions", ml);
  749. st = xs_dict_append(st, "tags", htl);
  750. st = xs_dict_append(st, "emojis", eml);
  751. }
  752. xs_free(idx);
  753. xs_free(ixc);
  754. idx = object_likes(id);
  755. ixc = xs_number_new(xs_list_len(idx));
  756. st = xs_dict_append(st, "favourites_count", ixc);
  757. st = xs_dict_append(st, "favourited",
  758. (snac && xs_list_in(idx, snac->md5) != -1) ? xs_stock(XSTYPE_TRUE) : xs_stock(XSTYPE_FALSE));
  759. xs_free(idx);
  760. xs_free(ixc);
  761. idx = object_announces(id);
  762. ixc = xs_number_new(xs_list_len(idx));
  763. st = xs_dict_append(st, "reblogs_count", ixc);
  764. st = xs_dict_append(st, "reblogged",
  765. (snac && xs_list_in(idx, snac->md5) != -1) ? xs_stock(XSTYPE_TRUE) : xs_stock(XSTYPE_FALSE));
  766. /* get the last person who boosted this */
  767. xs *boosted_by_md5 = NULL;
  768. if (xs_list_len(idx))
  769. boosted_by_md5 = xs_dup(xs_list_get(idx, -1));
  770. xs_free(idx);
  771. xs_free(ixc);
  772. idx = object_children(id);
  773. ixc = xs_number_new(xs_list_len(idx));
  774. st = xs_dict_append(st, "replies_count", ixc);
  775. /* default in_reply_to values */
  776. st = xs_dict_append(st, "in_reply_to_id", xs_stock(XSTYPE_NULL));
  777. st = xs_dict_append(st, "in_reply_to_account_id", xs_stock(XSTYPE_NULL));
  778. tmp = xs_dict_get(msg, "inReplyTo");
  779. if (!xs_is_null(tmp)) {
  780. xs *irto = NULL;
  781. if (valid_status(object_get(tmp, &irto))) {
  782. xs *irt_mid = mastoapi_id(irto);
  783. st = xs_dict_set(st, "in_reply_to_id", irt_mid);
  784. const char *at = NULL;
  785. if (!xs_is_null(at = get_atto(irto))) {
  786. xs *at_md5 = xs_md5_hex(at, strlen(at));
  787. st = xs_dict_set(st, "in_reply_to_account_id", at_md5);
  788. }
  789. }
  790. }
  791. st = xs_dict_append(st, "reblog", xs_stock(XSTYPE_NULL));
  792. st = xs_dict_append(st, "card", xs_stock(XSTYPE_NULL));
  793. st = xs_dict_append(st, "language", "en");
  794. st = xs_dict_append(st, "filtered", xs_stock(XSTYPE_LIST));
  795. st = xs_dict_append(st, "muted", xs_stock(XSTYPE_FALSE));
  796. tmp = xs_dict_get(msg, "sourceContent");
  797. if (xs_is_null(tmp))
  798. tmp = "";
  799. st = xs_dict_append(st, "text", tmp);
  800. tmp = xs_dict_get(msg, "updated");
  801. xs *fd2 = NULL;
  802. if (xs_is_null(tmp))
  803. tmp = xs_stock(XSTYPE_NULL);
  804. else {
  805. fd2 = mastoapi_date(tmp);
  806. tmp = fd2;
  807. }
  808. st = xs_dict_append(st, "edited_at", tmp);
  809. if (strcmp(type, "Question") == 0) {
  810. xs *poll = mastoapi_poll(snac, msg);
  811. st = xs_dict_append(st, "poll", poll);
  812. }
  813. else
  814. st = xs_dict_append(st, "poll", xs_stock(XSTYPE_NULL));
  815. st = xs_dict_append(st, "bookmarked", xs_stock(XSTYPE_FALSE));
  816. st = xs_dict_append(st, "pinned",
  817. (snac && is_pinned(snac, id)) ? xs_stock(XSTYPE_TRUE) : xs_stock(XSTYPE_FALSE));
  818. /* is it a boost? */
  819. if (!xs_is_null(boosted_by_md5)) {
  820. /* create a new dummy status, using st as the 'reblog' field */
  821. xs_dict *bst = xs_dup(st);
  822. xs *b_actor = NULL;
  823. if (valid_status(object_get_by_md5(boosted_by_md5, &b_actor))) {
  824. xs *b_acct = mastoapi_account(b_actor);
  825. xs *fake_uri = NULL;
  826. if (snac)
  827. fake_uri = xs_fmt("%s/d/%s/Announce", snac->actor, mid);
  828. else
  829. fake_uri = xs_fmt("%s#%s", srv_baseurl, mid);
  830. bst = xs_dict_set(bst, "uri", fake_uri);
  831. bst = xs_dict_set(bst, "url", fake_uri);
  832. bst = xs_dict_set(bst, "account", b_acct);
  833. bst = xs_dict_set(bst, "content", "");
  834. bst = xs_dict_set(bst, "reblog", st);
  835. xs_free(st);
  836. st = bst;
  837. }
  838. }
  839. return st;
  840. }
  841. xs_dict *mastoapi_relationship(snac *snac, const char *md5)
  842. {
  843. xs_dict *rel = NULL;
  844. xs *actor_o = NULL;
  845. if (valid_status(object_get_by_md5(md5, &actor_o))) {
  846. rel = xs_dict_new();
  847. const char *actor = xs_dict_get(actor_o, "id");
  848. rel = xs_dict_append(rel, "id", md5);
  849. rel = xs_dict_append(rel, "following",
  850. following_check(snac, actor) ? xs_stock(XSTYPE_TRUE) : xs_stock(XSTYPE_FALSE));
  851. rel = xs_dict_append(rel, "showing_reblogs", xs_stock(XSTYPE_TRUE));
  852. rel = xs_dict_append(rel, "notifying", xs_stock(XSTYPE_FALSE));
  853. rel = xs_dict_append(rel, "followed_by",
  854. follower_check(snac, actor) ? xs_stock(XSTYPE_TRUE) : xs_stock(XSTYPE_FALSE));
  855. rel = xs_dict_append(rel, "blocking",
  856. is_muted(snac, actor) ? xs_stock(XSTYPE_TRUE) : xs_stock(XSTYPE_FALSE));
  857. rel = xs_dict_append(rel, "muting", xs_stock(XSTYPE_FALSE));
  858. rel = xs_dict_append(rel, "muting_notifications", xs_stock(XSTYPE_FALSE));
  859. rel = xs_dict_append(rel, "requested", xs_stock(XSTYPE_FALSE));
  860. rel = xs_dict_append(rel, "domain_blocking", xs_stock(XSTYPE_FALSE));
  861. rel = xs_dict_append(rel, "endorsed", xs_stock(XSTYPE_FALSE));
  862. rel = xs_dict_append(rel, "note", "");
  863. }
  864. return rel;
  865. }
  866. int process_auth_token(snac *snac, const xs_dict *req)
  867. /* processes an authorization token, if there is one */
  868. {
  869. int logged_in = 0;
  870. const char *v;
  871. /* if there is an authorization field, try to validate it */
  872. if (!xs_is_null(v = xs_dict_get(req, "authorization")) && xs_startswith(v, "Bearer ")) {
  873. xs *tokid = xs_replace_n(v, "Bearer ", "", 1);
  874. xs *token = token_get(tokid);
  875. if (token != NULL) {
  876. const char *uid = xs_dict_get(token, "uid");
  877. if (!xs_is_null(uid) && user_open(snac, uid)) {
  878. logged_in = 1;
  879. /* this counts as a 'login' */
  880. lastlog_write(snac, "mastoapi");
  881. srv_debug(2, xs_fmt("mastoapi auth: valid token for user '%s'", uid));
  882. }
  883. else
  884. srv_log(xs_fmt("mastoapi auth: corrupted token '%s'", tokid));
  885. }
  886. else
  887. srv_log(xs_fmt("mastoapi auth: invalid token '%s'", tokid));
  888. }
  889. return logged_in;
  890. }
  891. void credentials_get(char **body, char **ctype, int *status, snac snac)
  892. {
  893. xs *acct = xs_dict_new();
  894. acct = xs_dict_append(acct, "id", snac.md5);
  895. acct = xs_dict_append(acct, "username", xs_dict_get(snac.config, "uid"));
  896. acct = xs_dict_append(acct, "acct", xs_dict_get(snac.config, "uid"));
  897. acct = xs_dict_append(acct, "display_name", xs_dict_get(snac.config, "name"));
  898. acct = xs_dict_append(acct, "created_at", xs_dict_get(snac.config, "published"));
  899. acct = xs_dict_append(acct, "last_status_at", xs_dict_get(snac.config, "published"));
  900. acct = xs_dict_append(acct, "note", xs_dict_get(snac.config, "bio"));
  901. acct = xs_dict_append(acct, "url", snac.actor);
  902. acct = xs_dict_append(acct, "locked", xs_stock(XSTYPE_FALSE));
  903. acct = xs_dict_append(acct, "bot", xs_dict_get(snac.config, "bot"));
  904. acct = xs_dict_append(acct, "emojis", xs_stock(XSTYPE_LIST));
  905. xs *src = xs_json_loads("{\"privacy\":\"public\", \"language\":\"en\","
  906. "\"follow_requests_count\": 0,"
  907. "\"sensitive\":false,\"fields\":[],\"note\":\"\"}");
  908. /* some apps take the note from the source object */
  909. src = xs_dict_set(src, "note", xs_dict_get(snac.config, "bio"));
  910. src = xs_dict_set(src, "privacy", xs_type(xs_dict_get(snac.config, "private")) == XSTYPE_TRUE ? "private" : "public");
  911. const xs_str *cw = xs_dict_get(snac.config, "cw");
  912. src = xs_dict_set(src, "sensitive",
  913. strcmp(cw, "open") == 0 ? xs_stock(XSTYPE_TRUE) : xs_stock(XSTYPE_FALSE));
  914. src = xs_dict_set(src, "bot", xs_dict_get(snac.config, "bot"));
  915. xs *avatar = NULL;
  916. const char *av = xs_dict_get(snac.config, "avatar");
  917. if (xs_is_null(av) || *av == '\0')
  918. avatar = xs_fmt("%s/susie.png", srv_baseurl);
  919. else
  920. avatar = xs_dup(av);
  921. acct = xs_dict_append(acct, "avatar", avatar);
  922. acct = xs_dict_append(acct, "avatar_static", avatar);
  923. xs *header = NULL;
  924. const char *hd = xs_dict_get(snac.config, "header");
  925. if (!xs_is_null(hd))
  926. header = xs_dup(hd);
  927. else
  928. header = xs_fmt("%s/header.png", srv_baseurl);
  929. acct = xs_dict_append(acct, "header", header);
  930. acct = xs_dict_append(acct, "header_static", header);
  931. const xs_dict *metadata = xs_dict_get(snac.config, "metadata");
  932. if (xs_type(metadata) == XSTYPE_DICT) {
  933. xs *fields = xs_list_new();
  934. const xs_str *k;
  935. const xs_str *v;
  936. xs_dict *val_links = snac.links;
  937. if (xs_is_null(val_links))
  938. val_links = xs_stock(XSTYPE_DICT);
  939. int c = 0;
  940. while (xs_dict_next(metadata, &k, &v, &c)) {
  941. xs *val_date = NULL;
  942. const xs_number *verified_time = xs_dict_get(val_links, v);
  943. if (xs_type(verified_time) == XSTYPE_NUMBER) {
  944. time_t t = xs_number_get(verified_time);
  945. if (t > 0)
  946. val_date = xs_str_utctime(t, ISO_DATE_SPEC);
  947. }
  948. xs *d = xs_dict_new();
  949. d = xs_dict_append(d, "name", k);
  950. d = xs_dict_append(d, "value", v);
  951. d = xs_dict_append(d, "verified_at",
  952. xs_type(val_date) == XSTYPE_STRING && *val_date ? val_date : xs_stock(XSTYPE_NULL));
  953. fields = xs_list_append(fields, d);
  954. }
  955. acct = xs_dict_set(acct, "fields", fields);
  956. /* some apps take the fields from the source object */
  957. src = xs_dict_set(src, "fields", fields);
  958. }
  959. acct = xs_dict_append(acct, "source", src);
  960. acct = xs_dict_append(acct, "followers_count", xs_stock(0));
  961. acct = xs_dict_append(acct, "following_count", xs_stock(0));
  962. acct = xs_dict_append(acct, "statuses_count", xs_stock(0));
  963. *body = xs_json_dumps(acct, 4);
  964. *ctype = "application/json";
  965. *status = HTTP_STATUS_OK;
  966. }
  967. int mastoapi_get_handler(const xs_dict *req, const char *q_path,
  968. char **body, int *b_size, char **ctype)
  969. {
  970. (void)b_size;
  971. if (!xs_startswith(q_path, "/api/v1/") && !xs_startswith(q_path, "/api/v2/"))
  972. return 0;
  973. int status = HTTP_STATUS_NOT_FOUND;
  974. const xs_dict *args = xs_dict_get(req, "q_vars");
  975. xs *cmd = xs_replace_n(q_path, "/api", "", 1);
  976. snac snac1 = {0};
  977. int logged_in = process_auth_token(&snac1, req);
  978. if (strcmp(cmd, "/v1/accounts/verify_credentials") == 0) { /** **/
  979. if (logged_in) {
  980. credentials_get(body, ctype, &status, snac1);
  981. }
  982. else {
  983. status = HTTP_STATUS_UNPROCESSABLE_CONTENT; // (no login)
  984. }
  985. }
  986. else
  987. if (strcmp(cmd, "/v1/accounts/relationships") == 0) { /** **/
  988. /* find if an account is followed, blocked, etc. */
  989. /* the account to get relationships about is in args "id[]" */
  990. if (logged_in) {
  991. xs *res = xs_list_new();
  992. const char *md5 = xs_dict_get(args, "id[]");
  993. if (xs_is_null(md5))
  994. md5 = xs_dict_get(args, "id");
  995. if (!xs_is_null(md5)) {
  996. if (xs_type(md5) == XSTYPE_LIST)
  997. md5 = xs_list_get(md5, 0);
  998. xs *rel = mastoapi_relationship(&snac1, md5);
  999. if (rel != NULL)
  1000. res = xs_list_append(res, rel);
  1001. }
  1002. *body = xs_json_dumps(res, 4);
  1003. *ctype = "application/json";
  1004. status = HTTP_STATUS_OK;
  1005. }
  1006. else
  1007. status = HTTP_STATUS_UNPROCESSABLE_CONTENT;
  1008. }
  1009. else
  1010. if (strcmp(cmd, "/v1/accounts/lookup") == 0) { /** **/
  1011. /* lookup an account */
  1012. const char *acct = xs_dict_get(args, "acct");
  1013. if (!xs_is_null(acct)) {
  1014. xs *s = xs_strip_chars_i(xs_dup(acct), "@");
  1015. xs *l = xs_split_n(s, "@", 1);
  1016. const char *uid = xs_list_get(l, 0);
  1017. const char *host = xs_list_get(l, 1);
  1018. if (uid && (!host || strcmp(host, xs_dict_get(srv_config, "host")) == 0)) {
  1019. snac user;
  1020. if (user_open(&user, uid)) {
  1021. xs *actor = msg_actor(&user);
  1022. xs *macct = mastoapi_account(actor);
  1023. *body = xs_json_dumps(macct, 4);
  1024. *ctype = "application/json";
  1025. status = HTTP_STATUS_OK;
  1026. user_free(&user);
  1027. }
  1028. }
  1029. }
  1030. }
  1031. else
  1032. if (xs_startswith(cmd, "/v1/accounts/")) { /** **/
  1033. /* account-related information */
  1034. xs *l = xs_split(cmd, "/");
  1035. const char *uid = xs_list_get(l, 3);
  1036. const char *opt = xs_list_get(l, 4);
  1037. if (uid != NULL) {
  1038. snac snac2;
  1039. xs *out = NULL;
  1040. xs *actor = NULL;
  1041. if (logged_in && strcmp(uid, "search") == 0) { /** **/
  1042. /* search for accounts starting with q */
  1043. const char *aq = xs_dict_get(args, "q");
  1044. if (!xs_is_null(aq)) {
  1045. xs *q = xs_tolower_i(xs_dup(aq));
  1046. out = xs_list_new();
  1047. xs *wing = following_list(&snac1);
  1048. xs *wers = follower_list(&snac1);
  1049. xs *ulst = user_list();
  1050. xs_list *p;
  1051. const xs_str *v;
  1052. xs_set seen;
  1053. xs_set_init(&seen);
  1054. /* user relations */
  1055. xs_list *lsts[] = { wing, wers, NULL };
  1056. int n;
  1057. for (n = 0; (p = lsts[n]) != NULL; n++) {
  1058. while (xs_list_iter(&p, &v)) {
  1059. /* already seen? skip */
  1060. if (xs_set_add(&seen, v) == 0)
  1061. continue;
  1062. xs *actor = NULL;
  1063. if (valid_status(object_get(v, &actor))) {
  1064. const char *uname = xs_dict_get(actor, "preferredUsername");
  1065. if (!xs_is_null(uname)) {
  1066. xs *luname = xs_tolower_i(xs_dup(uname));
  1067. if (xs_startswith(luname, q)) {
  1068. xs *acct = mastoapi_account(actor);
  1069. out = xs_list_append(out, acct);
  1070. }
  1071. }
  1072. }
  1073. }
  1074. }
  1075. /* local users */
  1076. p = ulst;
  1077. while (xs_list_iter(&p, &v)) {
  1078. snac user;
  1079. /* skip this same user */
  1080. if (strcmp(v, xs_dict_get(snac1.config, "uid")) == 0)
  1081. continue;
  1082. /* skip if the uid does not start with the query */
  1083. xs *v2 = xs_tolower_i(xs_dup(v));
  1084. if (!xs_startswith(v2, q))
  1085. continue;
  1086. if (user_open(&user, v)) {
  1087. /* if it's not already seen, add it */
  1088. if (xs_set_add(&seen, user.actor) == 1) {
  1089. xs *actor = msg_actor(&user);
  1090. xs *acct = mastoapi_account(actor);
  1091. out = xs_list_append(out, acct);
  1092. }
  1093. user_free(&user);
  1094. }
  1095. }
  1096. xs_set_free(&seen);
  1097. }
  1098. }
  1099. else
  1100. /* is it a local user? */
  1101. if (user_open(&snac2, uid) || user_open_by_md5(&snac2, uid)) {
  1102. if (opt == NULL) {
  1103. /* account information */
  1104. actor = msg_actor(&snac2);
  1105. out = mastoapi_account(actor);
  1106. }
  1107. else
  1108. if (strcmp(opt, "statuses") == 0) { /** **/
  1109. /* the public list of posts of a user */
  1110. xs *timeline = timeline_simple_list(&snac2, "public", 0, 256);
  1111. xs_list *p = timeline;
  1112. const xs_str *v;
  1113. out = xs_list_new();
  1114. while (xs_list_iter(&p, &v)) {
  1115. xs *msg = NULL;
  1116. if (valid_status(timeline_get_by_md5(&snac2, v, &msg))) {
  1117. /* add only posts by the author */
  1118. if (strcmp(xs_dict_get(msg, "type"), "Note") == 0 &&
  1119. xs_startswith(xs_dict_get(msg, "id"), snac2.actor)) {
  1120. xs *st = mastoapi_status(&snac2, msg);
  1121. if (st)
  1122. out = xs_list_append(out, st);
  1123. }
  1124. }
  1125. }
  1126. }
  1127. else
  1128. if (strcmp(opt, "featured_tags") == 0) {
  1129. /* snac doesn't have features tags, yet? */
  1130. /* implement empty response so apps like Tokodon don't show an error */
  1131. out = xs_list_new();
  1132. }
  1133. else
  1134. if (strcmp(opt, "following") == 0) {
  1135. xs *wing = following_list(&snac1);
  1136. out = xs_list_new();
  1137. int c = 0;
  1138. const char *v;
  1139. while (xs_list_next(wing, &v, &c)) {
  1140. xs *actor = NULL;
  1141. if (valid_status(object_get(v, &actor))) {
  1142. xs *acct = mastoapi_account(actor);
  1143. out = xs_list_append(out, acct);
  1144. }
  1145. }
  1146. }
  1147. else
  1148. if (strcmp(opt, "followers") == 0) {
  1149. out = xs_list_new();
  1150. }
  1151. user_free(&snac2);
  1152. }
  1153. else {
  1154. /* try the uid as the md5 of a possibly loaded actor */
  1155. if (logged_in && valid_status(object_get_by_md5(uid, &actor))) {
  1156. if (opt == NULL) {
  1157. /* account information */
  1158. out = mastoapi_account(actor);
  1159. }
  1160. else
  1161. if (strcmp(opt, "statuses") == 0) {
  1162. /* we don't serve statuses of others; return the empty list */
  1163. out = xs_list_new();
  1164. }
  1165. else
  1166. if (strcmp(opt, "featured_tags") == 0) {
  1167. /* snac doesn't have features tags, yet? */
  1168. /* implement empty response so apps like Tokodon don't show an error */
  1169. out = xs_list_new();
  1170. }
  1171. }
  1172. }
  1173. if (out != NULL) {
  1174. *body = xs_json_dumps(out, 4);
  1175. *ctype = "application/json";
  1176. status = HTTP_STATUS_OK;
  1177. }
  1178. }
  1179. }
  1180. else
  1181. if (strcmp(cmd, "/v1/timelines/home") == 0) { /** **/
  1182. /* the private timeline */
  1183. if (logged_in) {
  1184. const char *max_id = xs_dict_get(args, "max_id");
  1185. const char *since_id = xs_dict_get(args, "since_id");
  1186. const char *min_id = xs_dict_get(args, "min_id");
  1187. const char *limit_s = xs_dict_get(args, "limit");
  1188. int limit = 0;
  1189. int cnt = 0;
  1190. if (!xs_is_null(limit_s))
  1191. limit = atoi(limit_s);
  1192. if (limit == 0)
  1193. limit = 20;
  1194. xs *timeline = timeline_simple_list(&snac1, "private", 0, 2048);
  1195. xs *out = xs_list_new();
  1196. xs_list *p = timeline;
  1197. const xs_str *v;
  1198. while (xs_list_iter(&p, &v) && cnt < limit) {
  1199. xs *msg = NULL;
  1200. /* only return entries older that max_id */
  1201. if (max_id) {
  1202. if (strcmp(v, MID_TO_MD5(max_id)) == 0)
  1203. max_id = NULL;
  1204. continue;
  1205. }
  1206. /* only returns entries newer than since_id */
  1207. if (since_id) {
  1208. if (strcmp(v, MID_TO_MD5(since_id)) == 0)
  1209. break;
  1210. }
  1211. /* only returns entries newer than min_id */
  1212. /* what does really "Return results immediately newer than ID" mean? */
  1213. if (min_id) {
  1214. if (strcmp(v, MID_TO_MD5(min_id)) == 0)
  1215. break;
  1216. }
  1217. /* get the entry */
  1218. if (!valid_status(timeline_get_by_md5(&snac1, v, &msg)))
  1219. continue;
  1220. /* discard non-Notes */
  1221. const char *id = xs_dict_get(msg, "id");
  1222. const char *type = xs_dict_get(msg, "type");
  1223. if (!xs_match(type, POSTLIKE_OBJECT_TYPE))
  1224. continue;
  1225. const char *from = NULL;
  1226. if (strcmp(type, "Page") == 0)
  1227. from = xs_dict_get(msg, "audience");
  1228. if (from == NULL)
  1229. from = get_atto(msg);
  1230. if (from == NULL)
  1231. continue;
  1232. /* is this message from a person we don't follow? */
  1233. if (strcmp(from, snac1.actor) && !following_check(&snac1, from)) {
  1234. /* discard if it was not boosted */
  1235. xs *idx = object_announces(id);
  1236. if (xs_list_len(idx) == 0)
  1237. continue;
  1238. }
  1239. /* discard notes from muted morons */
  1240. if (is_muted(&snac1, from))
  1241. continue;
  1242. /* discard hidden notes */
  1243. if (is_hidden(&snac1, id))
  1244. continue;
  1245. /* if it has a name and it's not a Page or a Video,
  1246. it's a poll vote, so discard it */
  1247. if (!xs_is_null(xs_dict_get(msg, "name")) && !xs_match(type, "Page|Video"))
  1248. continue;
  1249. /* convert the Note into a Mastodon status */
  1250. xs *st = mastoapi_status(&snac1, msg);
  1251. if (st != NULL)
  1252. out = xs_list_append(out, st);
  1253. cnt++;
  1254. }
  1255. *body = xs_json_dumps(out, 4);
  1256. *ctype = "application/json";
  1257. status = HTTP_STATUS_OK;
  1258. srv_debug(2, xs_fmt("mastoapi timeline: returned %d entries", xs_list_len(out)));
  1259. }
  1260. else {
  1261. status = HTTP_STATUS_UNAUTHORIZED;
  1262. }
  1263. }
  1264. else
  1265. if (strcmp(cmd, "/v1/timelines/public") == 0) { /** **/
  1266. /* the instance public timeline (public timelines for all users) */
  1267. const char *limit_s = xs_dict_get(args, "limit");
  1268. int limit = 0;
  1269. int cnt = 0;
  1270. if (!xs_is_null(limit_s))
  1271. limit = atoi(limit_s);
  1272. if (limit == 0)
  1273. limit = 20;
  1274. xs *timeline = timeline_instance_list(0, limit);
  1275. xs *out = xs_list_new();
  1276. xs_list *p = timeline;
  1277. const xs_str *md5;
  1278. snac *user = NULL;
  1279. if (logged_in)
  1280. user = &snac1;
  1281. while (xs_list_iter(&p, &md5) && cnt < limit) {
  1282. xs *msg = NULL;
  1283. /* get the entry */
  1284. if (!valid_status(object_get_by_md5(md5, &msg)))
  1285. continue;
  1286. /* discard non-Notes */
  1287. const char *type = xs_dict_get(msg, "type");
  1288. if (strcmp(type, "Note") != 0 && strcmp(type, "Question") != 0)
  1289. continue;
  1290. /* discard messages from private users */
  1291. if (is_msg_from_private_user(msg))
  1292. continue;
  1293. /* convert the Note into a Mastodon status */
  1294. xs *st = mastoapi_status(user, msg);
  1295. if (st != NULL) {
  1296. out = xs_list_append(out, st);
  1297. cnt++;
  1298. }
  1299. }
  1300. *body = xs_json_dumps(out, 4);
  1301. *ctype = "application/json";
  1302. status = HTTP_STATUS_OK;
  1303. }
  1304. else
  1305. if (xs_startswith(cmd, "/v1/timelines/tag/")) { /** **/
  1306. const char *limit_s = xs_dict_get(args, "limit");
  1307. int limit = 0;
  1308. int cnt = 0;
  1309. if (!xs_is_null(limit_s))
  1310. limit = atoi(limit_s);
  1311. if (limit == 0)
  1312. limit = 20;
  1313. /* get the tag */
  1314. xs *l = xs_split(cmd, "/");
  1315. const char *tag = xs_list_get(l, -1);
  1316. xs *timeline = tag_search(tag, 0, limit);
  1317. xs *out = xs_list_new();
  1318. xs_list *p = timeline;
  1319. const xs_str *md5;
  1320. while (xs_list_iter(&p, &md5) && cnt < limit) {
  1321. xs *msg = NULL;
  1322. /* get the entry */
  1323. if (!valid_status(object_get_by_md5(md5, &msg)))
  1324. continue;
  1325. /* skip non-public messages */
  1326. if (!is_msg_public(msg))
  1327. continue;
  1328. /* discard messages from private users */
  1329. if (is_msg_from_private_user(msg))
  1330. continue;
  1331. /* convert the Note into a Mastodon status */
  1332. xs *st = mastoapi_status(NULL, msg);
  1333. if (st != NULL) {
  1334. out = xs_list_append(out, st);
  1335. cnt++;
  1336. }
  1337. }
  1338. *body = xs_json_dumps(out, 4);
  1339. *ctype = "application/json";
  1340. status = HTTP_STATUS_OK;
  1341. }
  1342. else
  1343. if (xs_startswith(cmd, "/v1/timelines/list/")) { /** **/
  1344. /* get the list id */
  1345. if (logged_in) {
  1346. xs *l = xs_split(cmd, "/");
  1347. const char *list = xs_list_get(l, -1);
  1348. xs *timeline = list_timeline(&snac1, list, 0, 2048);
  1349. xs *out = xs_list_new();
  1350. int c = 0;
  1351. const char *md5;
  1352. while (xs_list_next(timeline, &md5, &c)) {
  1353. xs *msg = NULL;
  1354. /* get the entry */
  1355. if (!valid_status(timeline_get_by_md5(&snac1, md5, &msg)))
  1356. continue;
  1357. /* discard non-Notes */
  1358. const char *id = xs_dict_get(msg, "id");
  1359. const char *type = xs_dict_get(msg, "type");
  1360. if (!xs_match(type, POSTLIKE_OBJECT_TYPE))
  1361. continue;
  1362. const char *from = NULL;
  1363. if (strcmp(type, "Page") == 0)
  1364. from = xs_dict_get(msg, "audience");
  1365. if (from == NULL)
  1366. from = get_atto(msg);
  1367. if (from == NULL)
  1368. continue;
  1369. /* is this message from a person we don't follow? */
  1370. if (strcmp(from, snac1.actor) && !following_check(&snac1, from)) {
  1371. /* discard if it was not boosted */
  1372. xs *idx = object_announces(id);
  1373. if (xs_list_len(idx) == 0)
  1374. continue;
  1375. }
  1376. /* discard notes from muted morons */
  1377. if (is_muted(&snac1, from))
  1378. continue;
  1379. /* discard hidden notes */
  1380. if (is_hidden(&snac1, id))
  1381. continue;
  1382. /* if it has a name and it's not a Page or a Video,
  1383. it's a poll vote, so discard it */
  1384. if (!xs_is_null(xs_dict_get(msg, "name")) && !xs_match(type, "Page|Video"))
  1385. continue;
  1386. /* convert the Note into a Mastodon status */
  1387. xs *st = mastoapi_status(&snac1, msg);
  1388. if (st != NULL)
  1389. out = xs_list_append(out, st);
  1390. }
  1391. *body = xs_json_dumps(out, 4);
  1392. *ctype = "application/json";
  1393. status = HTTP_STATUS_OK;
  1394. }
  1395. else
  1396. status = HTTP_STATUS_MISDIRECTED_REQUEST;
  1397. }
  1398. else
  1399. if (strcmp(cmd, "/v1/conversations") == 0) { /** **/
  1400. /* TBD */
  1401. *body = xs_dup("[]");
  1402. *ctype = "application/json";
  1403. status = HTTP_STATUS_OK;
  1404. }
  1405. else
  1406. if (strcmp(cmd, "/v1/notifications") == 0) { /** **/
  1407. if (logged_in) {
  1408. xs *l = notify_list(&snac1, 0, 64);
  1409. xs *out = xs_list_new();
  1410. xs_list *p = l;
  1411. const xs_dict *v;
  1412. const xs_list *excl = xs_dict_get(args, "exclude_types[]");
  1413. while (xs_list_iter(&p, &v)) {
  1414. xs *noti = notify_get(&snac1, v);
  1415. if (noti == NULL)
  1416. continue;
  1417. const char *type = xs_dict_get(noti, "type");
  1418. const char *utype = xs_dict_get(noti, "utype");
  1419. const char *objid = xs_dict_get(noti, "objid");
  1420. xs *actor = NULL;
  1421. xs *entry = NULL;
  1422. if (!valid_status(actor_get(xs_dict_get(noti, "actor"), &actor)))
  1423. continue;
  1424. if (objid != NULL && !valid_status(object_get(objid, &entry)))
  1425. continue;
  1426. if (is_hidden(&snac1, objid))
  1427. continue;
  1428. /* convert the type */
  1429. if (strcmp(type, "Like") == 0)
  1430. type = "favourite";
  1431. else
  1432. if (strcmp(type, "Announce") == 0)
  1433. type = "reblog";
  1434. else
  1435. if (strcmp(type, "Follow") == 0)
  1436. type = "follow";
  1437. else
  1438. if (strcmp(type, "Create") == 0)
  1439. type = "mention";
  1440. else
  1441. if (strcmp(type, "Update") == 0 && strcmp(utype, "Question") == 0)
  1442. type = "poll";
  1443. else
  1444. continue;
  1445. /* excluded type? */
  1446. if (!xs_is_null(excl) && xs_list_in(excl, type) != -1)
  1447. continue;
  1448. xs *mn = xs_dict_new();
  1449. mn = xs_dict_append(mn, "type", type);
  1450. xs *id = xs_replace(xs_dict_get(noti, "id"), ".", "");
  1451. mn = xs_dict_append(mn, "id", id);
  1452. mn = xs_dict_append(mn, "created_at", xs_dict_get(noti, "date"));
  1453. xs *acct = mastoapi_account(actor);
  1454. mn = xs_dict_append(mn, "account", acct);
  1455. if (strcmp(type, "follow") != 0 && !xs_is_null(objid)) {
  1456. xs *st = mastoapi_status(&snac1, entry);
  1457. if (st)
  1458. mn = xs_dict_append(mn, "status", st);
  1459. }
  1460. out = xs_list_append(out, mn);
  1461. }
  1462. *body = xs_json_dumps(out, 4);
  1463. *ctype = "application/json";
  1464. status = HTTP_STATUS_OK;
  1465. }
  1466. else
  1467. status = HTTP_STATUS_UNAUTHORIZED;
  1468. }
  1469. else
  1470. if (strcmp(cmd, "/v1/filters") == 0) { /** **/
  1471. /* snac will never have filters */
  1472. *body = xs_dup("[]");
  1473. *ctype = "application/json";
  1474. status = HTTP_STATUS_OK;
  1475. }
  1476. else
  1477. if (strcmp(cmd, "/v2/filters") == 0) { /** **/
  1478. /* snac will never have filters
  1479. * but still, without a v2 endpoint a short delay is introduced
  1480. * in some apps */
  1481. *body = xs_dup("[]");
  1482. *ctype = "application/json";
  1483. status = HTTP_STATUS_OK;
  1484. }
  1485. else
  1486. if (strcmp(cmd, "/v1/favourites") == 0) { /** **/
  1487. /* snac will never support a list of favourites */
  1488. *body = xs_dup("[]");
  1489. *ctype = "application/json";
  1490. status = HTTP_STATUS_OK;
  1491. }
  1492. else
  1493. if (strcmp(cmd, "/v1/bookmarks") == 0) { /** **/
  1494. /* snac does not support bookmarks */
  1495. *body = xs_dup("[]");
  1496. *ctype = "application/json";
  1497. status = HTTP_STATUS_OK;
  1498. }
  1499. else
  1500. if (strcmp(cmd, "/v1/lists") == 0) { /** list of lists **/
  1501. if (logged_in) {
  1502. xs *lol = list_maint(&snac1, NULL, 0);
  1503. xs *l = xs_list_new();
  1504. int c = 0;
  1505. const xs_list *li;
  1506. while (xs_list_next(lol, &li, &c)) {
  1507. xs *d = xs_dict_new();
  1508. d = xs_dict_append(d, "id", xs_list_get(li, 0));
  1509. d = xs_dict_append(d, "title", xs_list_get(li, 1));
  1510. d = xs_dict_append(d, "replies_policy", "list");
  1511. d = xs_dict_append(d, "exclusive", xs_stock(XSTYPE_FALSE));
  1512. l = xs_list_append(l, d);
  1513. }
  1514. *body = xs_json_dumps(l, 4);
  1515. *ctype = "application/json";
  1516. status = HTTP_STATUS_OK;
  1517. }
  1518. }
  1519. else
  1520. if (xs_startswith(cmd, "/v1/lists/")) { /** list information **/
  1521. if (logged_in) {
  1522. xs *l = xs_split(cmd, "/");
  1523. const char *p = xs_list_get(l, -1);
  1524. if (p) {
  1525. if (strcmp(p, "accounts") == 0) {
  1526. p = xs_list_get(l, -2);
  1527. if (p && xs_is_hex(p)) {
  1528. xs *actors = list_content(&snac1, p, NULL, 0);
  1529. xs *out = xs_list_new();
  1530. int c = 0;
  1531. const char *v;
  1532. while (xs_list_next(actors, &v, &c)) {
  1533. xs *actor = NULL;
  1534. if (valid_status(object_get_by_md5(v, &actor))) {
  1535. xs *acct = mastoapi_account(actor);
  1536. out = xs_list_append(out, acct);
  1537. }
  1538. }
  1539. *body = xs_json_dumps(out, 4);
  1540. *ctype = "application/json";
  1541. status = HTTP_STATUS_OK;
  1542. }
  1543. }
  1544. else
  1545. if (xs_is_hex(p)) {
  1546. xs *out = xs_list_new();
  1547. xs *lol = list_maint(&snac1, NULL, 0);
  1548. int c = 0;
  1549. const xs_list *v;
  1550. while (xs_list_next(lol, &v, &c)) {
  1551. const char *id = xs_list_get(v, 0);
  1552. if (id && strcmp(id, p) == 0) {
  1553. xs *d = xs_dict_new();
  1554. d = xs_dict_append(d, "id", p);
  1555. d = xs_dict_append(d, "title", xs_list_get(v, 1));
  1556. d = xs_dict_append(d, "replies_policy", "list");
  1557. d = xs_dict_append(d, "exclusive", xs_stock(XSTYPE_FALSE));
  1558. out = xs_dup(d);
  1559. break;
  1560. }
  1561. }
  1562. *body = xs_json_dumps(out, 4);
  1563. *ctype = "application/json";
  1564. status = HTTP_STATUS_OK;
  1565. }
  1566. }
  1567. }
  1568. }
  1569. else
  1570. if (strcmp(cmd, "/v1/scheduled_statuses") == 0) { /** **/
  1571. /* snac does not schedule notes */
  1572. *body = xs_dup("[]");
  1573. *ctype = "application/json";
  1574. status = HTTP_STATUS_OK;
  1575. }
  1576. else
  1577. if (strcmp(cmd, "/v1/follow_requests") == 0) { /** **/
  1578. /* snac does not support optional follow confirmations */
  1579. *body = xs_dup("[]");
  1580. *ctype = "application/json";
  1581. status = HTTP_STATUS_OK;
  1582. }
  1583. else
  1584. if (strcmp(cmd, "/v1/announcements") == 0) { /** **/
  1585. if (logged_in) {
  1586. xs *resp = xs_list_new();
  1587. double la = 0.0;
  1588. xs *user_la = xs_dup(xs_dict_get(snac1.config, "last_announcement"));
  1589. if (user_la != NULL)
  1590. la = xs_number_get(user_la);
  1591. xs *val_date = xs_str_utctime(la, ISO_DATE_SPEC);
  1592. /* contrary to html, we always send the announcement and set the read flag instead */
  1593. const t_announcement *annce = announcement(la);
  1594. if (annce != NULL && annce->text != NULL) {
  1595. xs *an = xs_dict_new();
  1596. xs *id = xs_fmt("%d", annce->timestamp);
  1597. xs *ct = xs_fmt("<p>%s</p>", annce->text);
  1598. an = xs_dict_set(an, "id", id);
  1599. an = xs_dict_set(an, "content", ct);
  1600. an = xs_dict_set(an, "starts_at", xs_stock(XSTYPE_NULL));
  1601. an = xs_dict_set(an, "ends_at", xs_stock(XSTYPE_NULL));
  1602. an = xs_dict_set(an, "all_day", xs_stock(XSTYPE_TRUE));
  1603. an = xs_dict_set(an, "published_at", val_date);
  1604. an = xs_dict_set(an, "updated_at", val_date);
  1605. an = xs_dict_set(an, "read", (annce->timestamp >= la)
  1606. ? xs_stock(XSTYPE_FALSE) : xs_stock(XSTYPE_TRUE));
  1607. an = xs_dict_set(an, "mentions", xs_stock(XSTYPE_LIST));
  1608. an = xs_dict_set(an, "statuses", xs_stock(XSTYPE_LIST));
  1609. an = xs_dict_set(an, "tags", xs_stock(XSTYPE_LIST));
  1610. an = xs_dict_set(an, "emojis", xs_stock(XSTYPE_LIST));
  1611. an = xs_dict_set(an, "reactions", xs_stock(XSTYPE_LIST));
  1612. resp = xs_list_append(resp, an);
  1613. }
  1614. *body = xs_json_dumps(resp, 4);
  1615. *ctype = "application/json";
  1616. status = HTTP_STATUS_OK;
  1617. }
  1618. }
  1619. else
  1620. if (strcmp(cmd, "/v1/custom_emojis") == 0) { /** **/
  1621. /* are you kidding me? */
  1622. *body = xs_dup("[]");
  1623. *ctype = "application/json";
  1624. status = HTTP_STATUS_OK;
  1625. }
  1626. else
  1627. if (strcmp(cmd, "/v1/instance") == 0) { /** **/
  1628. /* returns an instance object */
  1629. xs *ins = xs_dict_new();
  1630. const char *host = xs_dict_get(srv_config, "host");
  1631. const char *title = xs_dict_get(srv_config, "title");
  1632. const char *sdesc = xs_dict_get(srv_config, "short_description");
  1633. ins = xs_dict_append(ins, "uri", host);
  1634. ins = xs_dict_append(ins, "domain", host);
  1635. ins = xs_dict_append(ins, "title", title && *title ? title : host);
  1636. ins = xs_dict_append(ins, "version", "4.0.0 (not true; really " USER_AGENT ")");
  1637. ins = xs_dict_append(ins, "source_url", WHAT_IS_SNAC_URL);
  1638. ins = xs_dict_append(ins, "description", host);
  1639. ins = xs_dict_append(ins, "short_description", sdesc && *sdesc ? sdesc : host);
  1640. xs *susie = xs_fmt("%s/susie.png", srv_baseurl);
  1641. ins = xs_dict_append(ins, "thumbnail", susie);
  1642. const char *v = xs_dict_get(srv_config, "admin_email");
  1643. if (xs_is_null(v) || *v == '\0')
  1644. v = "admin@localhost";
  1645. ins = xs_dict_append(ins, "email", v);
  1646. ins = xs_dict_append(ins, "rules", xs_stock(XSTYPE_LIST));
  1647. xs *l1 = xs_list_append(xs_list_new(), "en");
  1648. ins = xs_dict_append(ins, "languages", l1);
  1649. xs *wss = xs_fmt("wss:/" "/%s", xs_dict_get(srv_config, "host"));
  1650. xs *urls = xs_dict_new();
  1651. urls = xs_dict_append(urls, "streaming_api", wss);
  1652. ins = xs_dict_append(ins, "urls", urls);
  1653. xs *d2 = xs_dict_append(xs_dict_new(), "user_count", xs_stock(0));
  1654. d2 = xs_dict_append(d2, "status_count", xs_stock(0));
  1655. d2 = xs_dict_append(d2, "domain_count", xs_stock(0));
  1656. ins = xs_dict_append(ins, "stats", d2);
  1657. ins = xs_dict_append(ins, "registrations", xs_stock(XSTYPE_FALSE));
  1658. ins = xs_dict_append(ins, "approval_required", xs_stock(XSTYPE_FALSE));
  1659. ins = xs_dict_append(ins, "invites_enabled", xs_stock(XSTYPE_FALSE));
  1660. xs *cfg = xs_dict_new();
  1661. {
  1662. xs *d11 = xs_json_loads("{\"characters_reserved_per_url\":32,"
  1663. "\"max_characters\":100000,\"max_media_attachments\":8}");
  1664. cfg = xs_dict_append(cfg, "statuses", d11);
  1665. xs *d12 = xs_json_loads("{\"max_featured_tags\":0}");
  1666. cfg = xs_dict_append(cfg, "accounts", d12);
  1667. xs *d13 = xs_json_loads("{\"image_matrix_limit\":33177600,"
  1668. "\"image_size_limit\":16777216,"
  1669. "\"video_frame_rate_limit\":120,"
  1670. "\"video_matrix_limit\":8294400,"
  1671. "\"video_size_limit\":103809024}"
  1672. );
  1673. {
  1674. /* get the supported mime types from the internal list */
  1675. const char **p = xs_mime_types;
  1676. xs_set mtypes;
  1677. xs_set_init(&mtypes);
  1678. while (*p) {
  1679. const char *type = p[1];
  1680. if (xs_startswith(type, "image/") ||
  1681. xs_startswith(type, "video/") ||
  1682. xs_startswith(type, "audio/"))
  1683. xs_set_add(&mtypes, type);
  1684. p += 2;
  1685. }
  1686. xs *l = xs_set_result(&mtypes);
  1687. d13 = xs_dict_append(d13, "supported_mime_types", l);
  1688. }
  1689. cfg = xs_dict_append(cfg, "media_attachments", d13);
  1690. xs *d14 = xs_json_loads("{\"max_characters_per_option\":50,"
  1691. "\"max_expiration\":2629746,"
  1692. "\"max_options\":8,\"min_expiration\":300}");
  1693. cfg = xs_dict_append(cfg, "polls", d14);
  1694. }
  1695. ins = xs_dict_append(ins, "configuration", cfg);
  1696. const char *admin_account = xs_dict_get(srv_config, "admin_account");
  1697. if (!xs_is_null(admin_account) && *admin_account) {
  1698. snac admin;
  1699. if (user_open(&admin, admin_account)) {
  1700. xs *actor = msg_actor(&admin);
  1701. xs *acct = mastoapi_account(actor);
  1702. ins = xs_dict_append(ins, "contact_account", acct);
  1703. user_free(&admin);
  1704. }
  1705. }
  1706. *body = xs_json_dumps(ins, 4);
  1707. *ctype = "application/json";
  1708. status = HTTP_STATUS_OK;
  1709. }
  1710. else
  1711. if (xs_startswith(cmd, "/v1/statuses/")) { /** **/
  1712. /* information about a status */
  1713. if (logged_in) {
  1714. xs *l = xs_split(cmd, "/");
  1715. const char *id = xs_list_get(l, 3);
  1716. const char *op = xs_list_get(l, 4);
  1717. if (!xs_is_null(id)) {
  1718. xs *msg = NULL;
  1719. xs *out = NULL;
  1720. /* skip the 'fake' part of the id */
  1721. id = MID_TO_MD5(id);
  1722. if (valid_status(object_get_by_md5(id, &msg))) {
  1723. if (op == NULL) {
  1724. if (!is_muted(&snac1, get_atto(msg))) {
  1725. /* return the status itself */
  1726. out = mastoapi_status(&snac1, msg);
  1727. }
  1728. }
  1729. else
  1730. if (strcmp(op, "context") == 0) { /** **/
  1731. /* return ancestors and children */
  1732. xs *anc = xs_list_new();
  1733. xs *des = xs_list_new();
  1734. xs_list *p;
  1735. const xs_str *v;
  1736. char pid[64];
  1737. /* build the [grand]parent list, moving up */
  1738. strncpy(pid, id, sizeof(pid));
  1739. while (object_parent(pid, pid, sizeof(pid))) {
  1740. xs *m2 = NULL;
  1741. if (valid_status(timeline_get_by_md5(&snac1, pid, &m2))) {
  1742. xs *st = mastoapi_status(&snac1, m2);
  1743. if (st)
  1744. anc = xs_list_insert(anc, 0, st);
  1745. }
  1746. else
  1747. break;
  1748. }
  1749. /* build the children list */
  1750. xs *children = object_children(xs_dict_get(msg, "id"));
  1751. p = children;
  1752. while (xs_list_iter(&p, &v)) {
  1753. xs *m2 = NULL;
  1754. if (valid_status(timeline_get_by_md5(&snac1, v, &m2))) {
  1755. if (xs_is_null(xs_dict_get(m2, "name"))) {
  1756. xs *st = mastoapi_status(&snac1, m2);
  1757. if (st)
  1758. des = xs_list_append(des, st);
  1759. }
  1760. }
  1761. }
  1762. out = xs_dict_new();
  1763. out = xs_dict_append(out, "ancestors", anc);
  1764. out = xs_dict_append(out, "descendants", des);
  1765. }
  1766. else
  1767. if (strcmp(op, "reblogged_by") == 0 || /** **/
  1768. strcmp(op, "favourited_by") == 0) { /** **/
  1769. /* return the list of people who liked or boosted this */
  1770. out = xs_list_new();
  1771. xs *l = NULL;
  1772. if (op[0] == 'r')
  1773. l = object_announces(xs_dict_get(msg, "id"));
  1774. else
  1775. l = object_likes(xs_dict_get(msg, "id"));
  1776. xs_list *p = l;
  1777. const xs_str *v;
  1778. while (xs_list_iter(&p, &v)) {
  1779. xs *actor2 = NULL;
  1780. if (valid_status(object_get_by_md5(v, &actor2))) {
  1781. xs *acct2 = mastoapi_account(actor2);
  1782. out = xs_list_append(out, acct2);
  1783. }
  1784. }
  1785. }
  1786. else
  1787. if (strcmp(op, "source") == 0) { /** **/
  1788. out = xs_dict_new();
  1789. /* get the mastoapi status id */
  1790. out = xs_dict_append(out, "id", xs_list_get(l, 3));
  1791. out = xs_dict_append(out, "text", xs_dict_get(msg, "sourceContent"));
  1792. out = xs_dict_append(out, "spoiler_text", xs_dict_get(msg, "summary"));
  1793. }
  1794. }
  1795. else
  1796. srv_debug(1, xs_fmt("mastoapi status: bad id %s", id));
  1797. if (out != NULL) {
  1798. *body = xs_json_dumps(out, 4);
  1799. *ctype = "application/json";
  1800. status = HTTP_STATUS_OK;
  1801. }
  1802. }
  1803. }
  1804. else
  1805. status = HTTP_STATUS_UNAUTHORIZED;
  1806. }
  1807. else
  1808. if (strcmp(cmd, "/v1/preferences") == 0) { /** **/
  1809. *body = xs_dup("{}");
  1810. *ctype = "application/json";
  1811. status = HTTP_STATUS_OK;
  1812. }
  1813. else
  1814. if (strcmp(cmd, "/v1/markers") == 0) { /** **/
  1815. *body = xs_dup("{}");
  1816. *ctype = "application/json";
  1817. status = HTTP_STATUS_OK;
  1818. }
  1819. else
  1820. if (strcmp(cmd, "/v1/followed_tags") == 0) { /** **/
  1821. *body = xs_dup("[]");
  1822. *ctype = "application/json";
  1823. status = HTTP_STATUS_OK;
  1824. }
  1825. else
  1826. if (strcmp(cmd, "/v1/trends/tags") == 0) { /** **/
  1827. *body = xs_dup("[]");
  1828. *ctype = "application/json";
  1829. status = HTTP_STATUS_OK;
  1830. }
  1831. else
  1832. if (strcmp(cmd, "/v1/trends/statuses") == 0) { /** **/
  1833. *body = xs_dup("[]");
  1834. *ctype = "application/json";
  1835. status = HTTP_STATUS_OK;
  1836. }
  1837. else
  1838. if (strcmp(cmd, "/v2/search") == 0) { /** **/
  1839. if (logged_in) {
  1840. const char *q = xs_dict_get(args, "q");
  1841. const char *type = xs_dict_get(args, "type");
  1842. const char *offset = xs_dict_get(args, "offset");
  1843. xs *acl = xs_list_new();
  1844. xs *stl = xs_list_new();
  1845. xs *htl = xs_list_new();
  1846. xs *res = xs_dict_new();
  1847. if (xs_is_null(offset) || strcmp(offset, "0") == 0) {
  1848. /* reply something only for offset 0; otherwise,
  1849. apps like Tusky keep asking again and again */
  1850. if (!xs_is_null(q)) {
  1851. if (xs_is_null(type) || strcmp(type, "accounts") == 0) {
  1852. /* do a webfinger query */
  1853. char *actor = NULL;
  1854. char *user = NULL;
  1855. if (valid_status(webfinger_request(q, &actor, &user)) && actor) {
  1856. xs *actor_o = NULL;
  1857. if (valid_status(actor_request(&snac1, actor, &actor_o))) {
  1858. xs *acct = mastoapi_account(actor_o);
  1859. acl = xs_list_append(acl, acct);
  1860. }
  1861. }
  1862. }
  1863. if (xs_is_null(type) || strcmp(type, "hashtags") == 0) {
  1864. /* search this tag */
  1865. xs *tl = tag_search((char *)q, 0, 1);
  1866. if (xs_list_len(tl)) {
  1867. xs *d = xs_dict_new();
  1868. d = xs_dict_append(d, "name", q);
  1869. xs *url = xs_fmt("%s?t=%s", srv_baseurl, q);
  1870. d = xs_dict_append(d, "url", url);
  1871. d = xs_dict_append(d, "history", xs_stock(XSTYPE_LIST));
  1872. htl = xs_list_append(htl, d);
  1873. }
  1874. }
  1875. if (xs_is_null(type) || strcmp(type, "statuses") == 0) {
  1876. int to = 0;
  1877. int cnt = 40;
  1878. xs *tl = content_search(&snac1, q, 1, 0, cnt, 0, &to);
  1879. int c = 0;
  1880. const char *v;
  1881. while (xs_list_next(tl, &v, &c) && --cnt) {
  1882. xs *post = NULL;
  1883. if (!valid_status(timeline_get_by_md5(&snac1, v, &post)))
  1884. continue;
  1885. xs *s = mastoapi_status(&snac1, post);
  1886. if (!xs_is_null(s))
  1887. stl = xs_list_append(stl, s);
  1888. }
  1889. }
  1890. }
  1891. }
  1892. res = xs_dict_append(res, "accounts", acl);
  1893. res = xs_dict_append(res, "statuses", stl);
  1894. res = xs_dict_append(res, "hashtags", htl);
  1895. *body = xs_json_dumps(res, 4);
  1896. *ctype = "application/json";
  1897. status = HTTP_STATUS_OK;
  1898. }
  1899. else
  1900. status = HTTP_STATUS_UNAUTHORIZED;
  1901. }
  1902. /* user cleanup */
  1903. if (logged_in)
  1904. user_free(&snac1);
  1905. srv_debug(1, xs_fmt("mastoapi_get_handler %s %d", q_path, status));
  1906. return status;
  1907. }
  1908. int mastoapi_post_handler(const xs_dict *req, const char *q_path,
  1909. const char *payload, int p_size,
  1910. char **body, int *b_size, char **ctype)
  1911. {
  1912. (void)p_size;
  1913. (void)b_size;
  1914. if (!xs_startswith(q_path, "/api/v1/") && !xs_startswith(q_path, "/api/v2/"))
  1915. return 0;
  1916. int status = HTTP_STATUS_NOT_FOUND;
  1917. xs *args = NULL;
  1918. const char *i_ctype = xs_dict_get(req, "content-type");
  1919. if (i_ctype && xs_startswith(i_ctype, "application/json")) {
  1920. if (!xs_is_null(payload))
  1921. args = xs_json_loads(payload);
  1922. }
  1923. else if (i_ctype && xs_startswith(i_ctype, "application/x-www-form-urlencoded"))
  1924. {
  1925. // Some apps send form data instead of json so we should cater for those
  1926. if (!xs_is_null(payload)) {
  1927. xs *upl = xs_url_dec(payload);
  1928. args = xs_url_vars(upl);
  1929. }
  1930. }
  1931. else
  1932. args = xs_dup(xs_dict_get(req, "p_vars"));
  1933. if (args == NULL)
  1934. return HTTP_STATUS_BAD_REQUEST;
  1935. xs *cmd = xs_replace_n(q_path, "/api", "", 1);
  1936. snac snac = {0};
  1937. int logged_in = process_auth_token(&snac, req);
  1938. if (strcmp(cmd, "/v1/apps") == 0) { /** **/
  1939. const char *name = xs_dict_get(args, "client_name");
  1940. const char *ruri = xs_dict_get(args, "redirect_uris");
  1941. const char *scope = xs_dict_get(args, "scope");
  1942. /* Ice Cubes sends these values as query parameters, so try these */
  1943. if (name == NULL && ruri == NULL && scope == NULL) {
  1944. args = xs_dup(xs_dict_get(req, "q_vars"));
  1945. name = xs_dict_get(args, "client_name");
  1946. ruri = xs_dict_get(args, "redirect_uris");
  1947. scope = xs_dict_get(args, "scope");
  1948. }
  1949. if (xs_type(ruri) == XSTYPE_LIST)
  1950. ruri = xs_dict_get(ruri, 0);
  1951. if (name && ruri) {
  1952. xs *app = xs_dict_new();
  1953. xs *id = xs_replace_i(tid(0), ".", "");
  1954. xs *csec = random_str();
  1955. xs *vkey = random_str();
  1956. xs *cid = NULL;
  1957. /* pick a non-existent random cid */
  1958. for (;;) {
  1959. cid = random_str();
  1960. xs *p_app = app_get(cid);
  1961. if (p_app == NULL)
  1962. break;
  1963. xs_free(cid);
  1964. }
  1965. app = xs_dict_append(app, "name", name);
  1966. app = xs_dict_append(app, "redirect_uri", ruri);
  1967. app = xs_dict_append(app, "client_id", cid);
  1968. app = xs_dict_append(app, "client_secret", csec);
  1969. app = xs_dict_append(app, "vapid_key", vkey);
  1970. app = xs_dict_append(app, "id", id);
  1971. *body = xs_json_dumps(app, 4);
  1972. *ctype = "application/json";
  1973. status = HTTP_STATUS_OK;
  1974. app = xs_dict_append(app, "code", "");
  1975. if (scope)
  1976. app = xs_dict_append(app, "scope", scope);
  1977. app_add(cid, app);
  1978. srv_debug(1, xs_fmt("mastoapi apps: new app %s", cid));
  1979. }
  1980. }
  1981. else
  1982. if (strcmp(cmd, "/v1/statuses") == 0) { /** **/
  1983. if (logged_in) {
  1984. /* post a new Note */
  1985. const char *content = xs_dict_get(args, "status");
  1986. const char *mid = xs_dict_get(args, "in_reply_to_id");
  1987. const char *visibility = xs_dict_get(args, "visibility");
  1988. const char *summary = xs_dict_get(args, "spoiler_text");
  1989. const char *media_ids = xs_dict_get(args, "media_ids");
  1990. if (xs_is_null(media_ids))
  1991. media_ids = xs_dict_get(args, "media_ids[]");
  1992. if (xs_is_null(media_ids))
  1993. media_ids = xs_dict_get(args, "media_ids");
  1994. if (xs_is_null(visibility))
  1995. visibility = "public";
  1996. xs *attach_list = xs_list_new();
  1997. xs *irt = NULL;
  1998. /* is it a reply? */
  1999. if (mid != NULL) {
  2000. xs *r_msg = NULL;
  2001. const char *md5 = MID_TO_MD5(mid);
  2002. if (valid_status(object_get_by_md5(md5, &r_msg)))
  2003. irt = xs_dup(xs_dict_get(r_msg, "id"));
  2004. }
  2005. /* does it have attachments? */
  2006. if (!xs_is_null(media_ids)) {
  2007. xs *mi = NULL;
  2008. if (xs_type(media_ids) == XSTYPE_LIST)
  2009. mi = xs_dup(media_ids);
  2010. else {
  2011. mi = xs_list_new();
  2012. mi = xs_list_append(mi, media_ids);
  2013. }
  2014. xs_list *p = mi;
  2015. const xs_str *v;
  2016. while (xs_list_iter(&p, &v)) {
  2017. xs *l = xs_list_new();
  2018. xs *url = xs_fmt("%s/s/%s", snac.actor, v);
  2019. xs *desc = static_get_meta(&snac, v);
  2020. l = xs_list_append(l, url);
  2021. l = xs_list_append(l, desc);
  2022. attach_list = xs_list_append(attach_list, l);
  2023. }
  2024. }
  2025. /* prepare the message */
  2026. xs *msg = msg_note(&snac, content, NULL, irt, attach_list,
  2027. strcmp(visibility, "public") == 0 ? 0 : 1);
  2028. if (!xs_is_null(summary) && *summary) {
  2029. msg = xs_dict_set(msg, "sensitive", xs_stock(XSTYPE_TRUE));
  2030. msg = xs_dict_set(msg, "summary", summary);
  2031. }
  2032. /* store */
  2033. timeline_add(&snac, xs_dict_get(msg, "id"), msg);
  2034. /* 'Create' message */
  2035. xs *c_msg = msg_create(&snac, msg);
  2036. enqueue_message(&snac, c_msg);
  2037. timeline_touch(&snac);
  2038. /* convert to a mastodon status as a response code */
  2039. xs *st = mastoapi_status(&snac, msg);
  2040. *body = xs_json_dumps(st, 4);
  2041. *ctype = "application/json";
  2042. status = HTTP_STATUS_OK;
  2043. }
  2044. else
  2045. status = HTTP_STATUS_UNAUTHORIZED;
  2046. }
  2047. else
  2048. if (xs_startswith(cmd, "/v1/statuses")) { /** **/
  2049. if (logged_in) {
  2050. /* operations on a status */
  2051. xs *l = xs_split(cmd, "/");
  2052. const char *mid = xs_list_get(l, 3);
  2053. const char *op = xs_list_get(l, 4);
  2054. if (!xs_is_null(mid)) {
  2055. xs *msg = NULL;
  2056. xs *out = NULL;
  2057. /* skip the 'fake' part of the id */
  2058. mid = MID_TO_MD5(mid);
  2059. if (valid_status(timeline_get_by_md5(&snac, mid, &msg))) {
  2060. const char *id = xs_dict_get(msg, "id");
  2061. if (op == NULL) {
  2062. /* no operation (?) */
  2063. }
  2064. else
  2065. if (strcmp(op, "favourite") == 0) { /** **/
  2066. xs *n_msg = msg_admiration(&snac, id, "Like");
  2067. if (n_msg != NULL) {
  2068. enqueue_message(&snac, n_msg);
  2069. timeline_admire(&snac, xs_dict_get(n_msg, "object"), snac.actor, 1);
  2070. out = mastoapi_status(&snac, msg);
  2071. }
  2072. }
  2073. else
  2074. if (strcmp(op, "unfavourite") == 0) { /** **/
  2075. xs *n_msg = msg_repulsion(&snac, id, "Like");
  2076. if (n_msg != NULL) {
  2077. enqueue_message(&snac, n_msg);
  2078. out = mastoapi_status(&snac, msg);
  2079. }
  2080. }
  2081. else
  2082. if (strcmp(op, "reblog") == 0) { /** **/
  2083. xs *n_msg = msg_admiration(&snac, id, "Announce");
  2084. if (n_msg != NULL) {
  2085. enqueue_message(&snac, n_msg);
  2086. timeline_admire(&snac, xs_dict_get(n_msg, "object"), snac.actor, 0);
  2087. out = mastoapi_status(&snac, msg);
  2088. }
  2089. }
  2090. else
  2091. if (strcmp(op, "unreblog") == 0) { /** **/
  2092. xs *n_msg = msg_repulsion(&snac, id, "Announce");
  2093. if (n_msg != NULL) {
  2094. enqueue_message(&snac, n_msg);
  2095. out = mastoapi_status(&snac, msg);
  2096. }
  2097. }
  2098. else
  2099. if (strcmp(op, "bookmark") == 0) { /** **/
  2100. /* snac does not support bookmarks */
  2101. }
  2102. else
  2103. if (strcmp(op, "unbookmark") == 0) { /** **/
  2104. /* snac does not support bookmarks */
  2105. }
  2106. else
  2107. if (strcmp(op, "pin") == 0) { /** **/
  2108. /* pin this message */
  2109. if (pin(&snac, id))
  2110. out = mastoapi_status(&snac, msg);
  2111. else
  2112. status = HTTP_STATUS_UNPROCESSABLE_CONTENT;
  2113. }
  2114. else
  2115. if (strcmp(op, "unpin") == 0) { /** **/
  2116. /* unpin this message */
  2117. unpin(&snac, id);
  2118. out = mastoapi_status(&snac, msg);
  2119. }
  2120. else
  2121. if (strcmp(op, "mute") == 0) { /** **/
  2122. /* Mastodon's mute is snac's hide */
  2123. }
  2124. else
  2125. if (strcmp(op, "unmute") == 0) { /** **/
  2126. /* Mastodon's unmute is snac's unhide */
  2127. }
  2128. }
  2129. if (out != NULL) {
  2130. *body = xs_json_dumps(out, 4);
  2131. *ctype = "application/json";
  2132. status = HTTP_STATUS_OK;
  2133. }
  2134. }
  2135. }
  2136. else
  2137. status = HTTP_STATUS_UNAUTHORIZED;
  2138. }
  2139. else
  2140. if (strcmp(cmd, "/v1/notifications/clear") == 0) { /** **/
  2141. if (logged_in) {
  2142. notify_clear(&snac);
  2143. timeline_touch(&snac);
  2144. *body = xs_dup("{}");
  2145. *ctype = "application/json";
  2146. status = HTTP_STATUS_OK;
  2147. }
  2148. else
  2149. status = HTTP_STATUS_UNAUTHORIZED;
  2150. }
  2151. else
  2152. if (strcmp(cmd, "/v1/push/subscription") == 0) { /** **/
  2153. /* I don't know what I'm doing */
  2154. if (logged_in) {
  2155. const char *v;
  2156. xs *wpush = xs_dict_new();
  2157. wpush = xs_dict_append(wpush, "id", "1");
  2158. v = xs_dict_get(args, "data");
  2159. v = xs_dict_get(v, "alerts");
  2160. wpush = xs_dict_append(wpush, "alerts", v);
  2161. v = xs_dict_get(args, "subscription");
  2162. v = xs_dict_get(v, "endpoint");
  2163. wpush = xs_dict_append(wpush, "endpoint", v);
  2164. xs *server_key = random_str();
  2165. wpush = xs_dict_append(wpush, "server_key", server_key);
  2166. *body = xs_json_dumps(wpush, 4);
  2167. *ctype = "application/json";
  2168. status = HTTP_STATUS_OK;
  2169. }
  2170. else
  2171. status = HTTP_STATUS_UNAUTHORIZED;
  2172. }
  2173. else
  2174. if (strcmp(cmd, "/v1/media") == 0 || strcmp(cmd, "/v2/media") == 0) { /** **/
  2175. if (logged_in) {
  2176. const xs_list *file = xs_dict_get(args, "file");
  2177. const char *desc = xs_dict_get(args, "description");
  2178. if (xs_is_null(desc))
  2179. desc = "";
  2180. status = HTTP_STATUS_BAD_REQUEST;
  2181. if (xs_type(file) == XSTYPE_LIST) {
  2182. const char *fn = xs_list_get(file, 0);
  2183. if (*fn != '\0') {
  2184. char *ext = strrchr(fn, '.');
  2185. xs *hash = xs_md5_hex(fn, strlen(fn));
  2186. xs *id = xs_fmt("%s%s", hash, ext);
  2187. xs *url = xs_fmt("%s/s/%s", snac.actor, id);
  2188. int fo = xs_number_get(xs_list_get(file, 1));
  2189. int fs = xs_number_get(xs_list_get(file, 2));
  2190. /* store */
  2191. static_put(&snac, id, payload + fo, fs);
  2192. static_put_meta(&snac, id, desc);
  2193. /* prepare a response */
  2194. xs *rsp = xs_dict_new();
  2195. rsp = xs_dict_append(rsp, "id", id);
  2196. rsp = xs_dict_append(rsp, "type", "image");
  2197. rsp = xs_dict_append(rsp, "url", url);
  2198. rsp = xs_dict_append(rsp, "preview_url", url);
  2199. rsp = xs_dict_append(rsp, "remote_url", url);
  2200. rsp = xs_dict_append(rsp, "description", desc);
  2201. *body = xs_json_dumps(rsp, 4);
  2202. *ctype = "application/json";
  2203. status = HTTP_STATUS_OK;
  2204. }
  2205. }
  2206. }
  2207. else
  2208. status = HTTP_STATUS_UNAUTHORIZED;
  2209. }
  2210. else
  2211. if (xs_startswith(cmd, "/v1/accounts")) { /** **/
  2212. if (logged_in) {
  2213. /* account-related information */
  2214. xs *l = xs_split(cmd, "/");
  2215. const char *md5 = xs_list_get(l, 3);
  2216. const char *opt = xs_list_get(l, 4);
  2217. xs *rsp = NULL;
  2218. if (!xs_is_null(md5) && *md5) {
  2219. xs *actor_o = NULL;
  2220. if (xs_is_null(opt)) {
  2221. /* ? */
  2222. }
  2223. else
  2224. if (strcmp(opt, "follow") == 0) { /** **/
  2225. if (valid_status(object_get_by_md5(md5, &actor_o))) {
  2226. const char *actor = xs_dict_get(actor_o, "id");
  2227. xs *msg = msg_follow(&snac, actor);
  2228. if (msg != NULL) {
  2229. /* reload the actor from the message, in may be different */
  2230. actor = xs_dict_get(msg, "object");
  2231. following_add(&snac, actor, msg);
  2232. enqueue_output_by_actor(&snac, msg, actor, 0);
  2233. rsp = mastoapi_relationship(&snac, md5);
  2234. }
  2235. }
  2236. }
  2237. else
  2238. if (strcmp(opt, "unfollow") == 0) { /** **/
  2239. if (valid_status(object_get_by_md5(md5, &actor_o))) {
  2240. const char *actor = xs_dict_get(actor_o, "id");
  2241. /* get the following object */
  2242. xs *object = NULL;
  2243. if (valid_status(following_get(&snac, actor, &object))) {
  2244. xs *msg = msg_undo(&snac, xs_dict_get(object, "object"));
  2245. following_del(&snac, actor);
  2246. enqueue_output_by_actor(&snac, msg, actor, 0);
  2247. rsp = mastoapi_relationship(&snac, md5);
  2248. }
  2249. }
  2250. }
  2251. else
  2252. if (strcmp(opt, "block") == 0) { /** **/
  2253. if (valid_status(object_get_by_md5(md5, &actor_o))) {
  2254. const char *actor = xs_dict_get(actor_o, "id");
  2255. mute(&snac, actor);
  2256. rsp = mastoapi_relationship(&snac, md5);
  2257. }
  2258. }
  2259. else
  2260. if (strcmp(opt, "unblock") == 0) { /** **/
  2261. if (valid_status(object_get_by_md5(md5, &actor_o))) {
  2262. const char *actor = xs_dict_get(actor_o, "id");
  2263. unmute(&snac, actor);
  2264. rsp = mastoapi_relationship(&snac, md5);
  2265. }
  2266. }
  2267. }
  2268. if (rsp != NULL) {
  2269. *body = xs_json_dumps(rsp, 4);
  2270. *ctype = "application/json";
  2271. status = HTTP_STATUS_OK;
  2272. }
  2273. }
  2274. else
  2275. status = HTTP_STATUS_UNAUTHORIZED;
  2276. }
  2277. else
  2278. if (xs_startswith(cmd, "/v1/polls")) { /** **/
  2279. if (logged_in) {
  2280. /* operations on a status */
  2281. xs *l = xs_split(cmd, "/");
  2282. const char *mid = xs_list_get(l, 3);
  2283. const char *op = xs_list_get(l, 4);
  2284. if (!xs_is_null(mid)) {
  2285. xs *msg = NULL;
  2286. xs *out = NULL;
  2287. /* skip the 'fake' part of the id */
  2288. mid = MID_TO_MD5(mid);
  2289. if (valid_status(timeline_get_by_md5(&snac, mid, &msg))) {
  2290. const char *id = xs_dict_get(msg, "id");
  2291. const char *atto = get_atto(msg);
  2292. const xs_list *opts = xs_dict_get(msg, "oneOf");
  2293. if (opts == NULL)
  2294. opts = xs_dict_get(msg, "anyOf");
  2295. if (op == NULL) {
  2296. }
  2297. else
  2298. if (strcmp(op, "votes") == 0) {
  2299. const xs_list *choices = xs_dict_get(args, "choices[]");
  2300. if (xs_is_null(choices))
  2301. choices = xs_dict_get(args, "choices");
  2302. if (xs_type(choices) == XSTYPE_LIST) {
  2303. const xs_str *v;
  2304. int c = 0;
  2305. while (xs_list_next(choices, &v, &c)) {
  2306. int io = atoi(v);
  2307. const xs_dict *o = xs_list_get(opts, io);
  2308. if (o) {
  2309. const char *name = xs_dict_get(o, "name");
  2310. xs *msg = msg_note(&snac, "", atto, (char *)id, NULL, 1);
  2311. msg = xs_dict_append(msg, "name", name);
  2312. xs *c_msg = msg_create(&snac, msg);
  2313. enqueue_message(&snac, c_msg);
  2314. timeline_add(&snac, xs_dict_get(msg, "id"), msg);
  2315. }
  2316. }
  2317. out = mastoapi_poll(&snac, msg);
  2318. }
  2319. }
  2320. }
  2321. if (out != NULL) {
  2322. *body = xs_json_dumps(out, 4);
  2323. *ctype = "application/json";
  2324. status = HTTP_STATUS_OK;
  2325. }
  2326. }
  2327. }
  2328. else
  2329. status = HTTP_STATUS_UNAUTHORIZED;
  2330. }
  2331. else
  2332. if (strcmp(cmd, "/v1/lists") == 0) {
  2333. if (logged_in) {
  2334. const char *title = xs_dict_get(args, "title");
  2335. if (xs_type(title) == XSTYPE_STRING) {
  2336. /* add the list */
  2337. xs *out = xs_dict_new();
  2338. xs *lid = list_maint(&snac, title, 1);
  2339. if (!xs_is_null(lid)) {
  2340. out = xs_dict_append(out, "id", lid);
  2341. out = xs_dict_append(out, "title", title);
  2342. out = xs_dict_append(out, "replies_policy", xs_dict_get_def(args, "replies_policy", "list"));
  2343. out = xs_dict_append(out, "exclusive", xs_stock(XSTYPE_FALSE));
  2344. status = HTTP_STATUS_OK;
  2345. }
  2346. else {
  2347. out = xs_dict_append(out, "error", "cannot create list");
  2348. status = HTTP_STATUS_UNPROCESSABLE_CONTENT;
  2349. }
  2350. *body = xs_json_dumps(out, 4);
  2351. *ctype = "application/json";
  2352. }
  2353. else
  2354. status = HTTP_STATUS_UNPROCESSABLE_CONTENT;
  2355. }
  2356. }
  2357. if (xs_startswith(cmd, "/v1/lists/")) { /** list maintenance **/
  2358. if (logged_in) {
  2359. xs *l = xs_split(cmd, "/");
  2360. const char *op = xs_list_get(l, -1);
  2361. const char *id = xs_list_get(l, -2);
  2362. if (op && id && xs_is_hex(id)) {
  2363. if (strcmp(op, "accounts") == 0) {
  2364. const xs_list *accts = xs_dict_get(args, "account_ids[]");
  2365. if (xs_is_null(accts))
  2366. accts = xs_dict_get(args, "account_ids");
  2367. int c = 0;
  2368. const char *v;
  2369. while (xs_list_next(accts, &v, &c)) {
  2370. list_content(&snac, id, v, 1);
  2371. }
  2372. xs *out = xs_dict_new();
  2373. *body = xs_json_dumps(out, 4);
  2374. *ctype = "application/json";
  2375. status = HTTP_STATUS_OK;
  2376. }
  2377. }
  2378. }
  2379. else
  2380. status = HTTP_STATUS_UNPROCESSABLE_CONTENT;
  2381. }
  2382. /* user cleanup */
  2383. if (logged_in)
  2384. user_free(&snac);
  2385. srv_debug(1, xs_fmt("mastoapi_post_handler %s %d", q_path, status));
  2386. return status;
  2387. }
  2388. int mastoapi_delete_handler(const xs_dict *req, const char *q_path,
  2389. const char *payload, int p_size,
  2390. char **body, int *b_size, char **ctype)
  2391. {
  2392. (void)p_size;
  2393. (void)body;
  2394. (void)b_size;
  2395. (void)ctype;
  2396. if (!xs_startswith(q_path, "/api/v1/") && !xs_startswith(q_path, "/api/v2/"))
  2397. return 0;
  2398. int status = HTTP_STATUS_NOT_FOUND;
  2399. xs *args = NULL;
  2400. const char *i_ctype = xs_dict_get(req, "content-type");
  2401. if (i_ctype && xs_startswith(i_ctype, "application/json")) {
  2402. if (!xs_is_null(payload))
  2403. args = xs_json_loads(payload);
  2404. }
  2405. else if (i_ctype && xs_startswith(i_ctype, "application/x-www-form-urlencoded"))
  2406. {
  2407. // Some apps send form data instead of json so we should cater for those
  2408. if (!xs_is_null(payload)) {
  2409. xs *upl = xs_url_dec(payload);
  2410. args = xs_url_vars(upl);
  2411. }
  2412. }
  2413. else
  2414. args = xs_dup(xs_dict_get(req, "p_vars"));
  2415. if (args == NULL)
  2416. return HTTP_STATUS_BAD_REQUEST;
  2417. snac snac = {0};
  2418. int logged_in = process_auth_token(&snac, req);
  2419. xs *cmd = xs_replace_n(q_path, "/api", "", 1);
  2420. if (xs_startswith(cmd, "/v1/push/subscription") || xs_startswith(cmd, "/v2/push/subscription")) { /** **/
  2421. // pretend we deleted it, since it doesn't exist anyway
  2422. status = HTTP_STATUS_OK;
  2423. }
  2424. else
  2425. if (xs_startswith(cmd, "/v1/lists/")) {
  2426. if (logged_in) {
  2427. xs *l = xs_split(cmd, "/");
  2428. const char *p = xs_list_get(l, -1);
  2429. if (p) {
  2430. if (strcmp(p, "accounts") == 0) {
  2431. /* delete account from list */
  2432. p = xs_list_get(l, -2);
  2433. const xs_list *accts = xs_dict_get(args, "account_ids[]");
  2434. if (xs_is_null(accts))
  2435. accts = xs_dict_get(args, "account_ids");
  2436. int c = 0;
  2437. const char *v;
  2438. while (xs_list_next(accts, &v, &c)) {
  2439. list_content(&snac, p, v, 2);
  2440. }
  2441. }
  2442. else {
  2443. /* delete list */
  2444. if (xs_is_hex(p)) {
  2445. list_maint(&snac, p, 2);
  2446. }
  2447. }
  2448. }
  2449. *ctype = "application/json";
  2450. status = HTTP_STATUS_OK;
  2451. }
  2452. else
  2453. status = HTTP_STATUS_UNAUTHORIZED;
  2454. }
  2455. /* user cleanup */
  2456. if (logged_in)
  2457. user_free(&snac);
  2458. srv_debug(1, xs_fmt("mastoapi_delete_handler %s %d", q_path, status));
  2459. return status;
  2460. }
  2461. int mastoapi_put_handler(const xs_dict *req, const char *q_path,
  2462. const char *payload, int p_size,
  2463. char **body, int *b_size, char **ctype)
  2464. {
  2465. (void)p_size;
  2466. (void)b_size;
  2467. if (!xs_startswith(q_path, "/api/v1/") && !xs_startswith(q_path, "/api/v2/"))
  2468. return 0;
  2469. int status = HTTP_STATUS_NOT_FOUND;
  2470. xs *args = NULL;
  2471. const char *i_ctype = xs_dict_get(req, "content-type");
  2472. if (i_ctype && xs_startswith(i_ctype, "application/json")) {
  2473. if (!xs_is_null(payload))
  2474. args = xs_json_loads(payload);
  2475. }
  2476. else
  2477. args = xs_dup(xs_dict_get(req, "p_vars"));
  2478. if (args == NULL)
  2479. return HTTP_STATUS_BAD_REQUEST;
  2480. xs *cmd = xs_replace_n(q_path, "/api", "", 1);
  2481. snac snac = {0};
  2482. int logged_in = process_auth_token(&snac, req);
  2483. if (xs_startswith(cmd, "/v1/media") || xs_startswith(cmd, "/v2/media")) { /** **/
  2484. if (logged_in) {
  2485. xs *l = xs_split(cmd, "/");
  2486. const char *stid = xs_list_get(l, 3);
  2487. if (!xs_is_null(stid)) {
  2488. const char *desc = xs_dict_get(args, "description");
  2489. /* set the image metadata */
  2490. static_put_meta(&snac, stid, desc);
  2491. /* prepare a response */
  2492. xs *rsp = xs_dict_new();
  2493. xs *url = xs_fmt("%s/s/%s", snac.actor, stid);
  2494. rsp = xs_dict_append(rsp, "id", stid);
  2495. rsp = xs_dict_append(rsp, "type", "image");
  2496. rsp = xs_dict_append(rsp, "url", url);
  2497. rsp = xs_dict_append(rsp, "preview_url", url);
  2498. rsp = xs_dict_append(rsp, "remote_url", url);
  2499. rsp = xs_dict_append(rsp, "description", desc);
  2500. *body = xs_json_dumps(rsp, 4);
  2501. *ctype = "application/json";
  2502. status = HTTP_STATUS_OK;
  2503. }
  2504. }
  2505. else
  2506. status = HTTP_STATUS_UNAUTHORIZED;
  2507. }
  2508. else
  2509. if (xs_startswith(cmd, "/v1/statuses")) {
  2510. if (logged_in) {
  2511. xs *l = xs_split(cmd, "/");
  2512. const char *mid = xs_list_get(l, 3);
  2513. if (!xs_is_null(mid)) {
  2514. const char *md5 = MID_TO_MD5(mid);
  2515. xs *rsp = NULL;
  2516. xs *msg = NULL;
  2517. if (valid_status(timeline_get_by_md5(&snac, md5, &msg))) {
  2518. const char *content = xs_dict_get(args, "status");
  2519. xs *atls = xs_list_new();
  2520. xs *f_content = not_really_markdown(content, &atls, NULL);
  2521. /* replace fields with new content */
  2522. msg = xs_dict_set(msg, "sourceContent", content);
  2523. msg = xs_dict_set(msg, "content", f_content);
  2524. xs *updated = xs_str_utctime(0, ISO_DATE_SPEC);
  2525. msg = xs_dict_set(msg, "updated", updated);
  2526. /* overwrite object, not updating the indexes */
  2527. object_add_ow(xs_dict_get(msg, "id"), msg);
  2528. /* update message */
  2529. xs *c_msg = msg_update(&snac, msg);
  2530. enqueue_message(&snac, c_msg);
  2531. rsp = mastoapi_status(&snac, msg);
  2532. }
  2533. if (rsp != NULL) {
  2534. *body = xs_json_dumps(rsp, 4);
  2535. *ctype = "application/json";
  2536. status = HTTP_STATUS_OK;
  2537. }
  2538. }
  2539. }
  2540. else
  2541. status = HTTP_STATUS_UNAUTHORIZED;
  2542. }
  2543. /* user cleanup */
  2544. if (logged_in)
  2545. user_free(&snac);
  2546. srv_debug(1, xs_fmt("mastoapi_put_handler %s %d", q_path, status));
  2547. return status;
  2548. }
  2549. void persist_image(const char *key, const xs_val *data, const char *payload, snac *snac)
  2550. /* Store header or avatar */
  2551. {
  2552. if (data != NULL) {
  2553. if (xs_type(data) == XSTYPE_LIST) {
  2554. const char *fn = xs_list_get(data, 0);
  2555. if (fn && *fn) {
  2556. const char *ext = strrchr(fn, '.');
  2557. /* Mona iOS sends always jpg as application/octet-stream with no filename */
  2558. if (ext == NULL || strcmp(fn, key) == 0) {
  2559. ext = ".jpg";
  2560. }
  2561. /* Make sure we have a unique file name, otherwise updated images will not be
  2562. * re-loaded by clients. */
  2563. xs *rnd = random_str();
  2564. xs *hash = xs_md5_hex(rnd, strlen(rnd));
  2565. xs *id = xs_fmt("%s%s", hash, ext);
  2566. xs *url = xs_fmt("%s/s/%s", snac->actor, id);
  2567. int fo = xs_number_get(xs_list_get(data, 1));
  2568. int fs = xs_number_get(xs_list_get(data, 2));
  2569. /* store */
  2570. static_put(snac, id, payload + fo, fs);
  2571. snac->config = xs_dict_set(snac->config, key, url);
  2572. }
  2573. }
  2574. }
  2575. }
  2576. int mastoapi_patch_handler(const xs_dict *req, const char *q_path,
  2577. const char *payload, int p_size,
  2578. char **body, int *b_size, char **ctype)
  2579. /* Handle profile updates */
  2580. {
  2581. (void)p_size;
  2582. (void)b_size;
  2583. if (!xs_startswith(q_path, "/api/v1/"))
  2584. return 0;
  2585. int status = HTTP_STATUS_NOT_FOUND;
  2586. xs *args = NULL;
  2587. const char *i_ctype = xs_dict_get(req, "content-type");
  2588. if (i_ctype && xs_startswith(i_ctype, "application/json")) {
  2589. if (!xs_is_null(payload))
  2590. args = xs_json_loads(payload);
  2591. }
  2592. else if (i_ctype && xs_startswith(i_ctype, "application/x-www-form-urlencoded"))
  2593. {
  2594. // Some apps send form data instead of json so we should cater for those
  2595. if (!xs_is_null(payload)) {
  2596. xs *upl = xs_url_dec(payload);
  2597. args = xs_url_vars(upl);
  2598. }
  2599. }
  2600. else
  2601. args = xs_dup(xs_dict_get(req, "p_vars"));
  2602. if (args == NULL)
  2603. return HTTP_STATUS_BAD_REQUEST;
  2604. xs *cmd = xs_replace_n(q_path, "/api", "", 1);
  2605. snac snac = {0};
  2606. int logged_in = process_auth_token(&snac, req);
  2607. if (xs_startswith(cmd, "/v1/accounts/update_credentials")) {
  2608. /* Update user profile fields */
  2609. if (logged_in) {
  2610. int c = 0;
  2611. const xs_str *k;
  2612. const xs_val *v;
  2613. const xs_str *field_name = NULL;
  2614. xs *new_fields = xs_dict_new();
  2615. while (xs_dict_next(args, &k, &v, &c)) {
  2616. if (strcmp(k, "display_name") == 0) {
  2617. if (v != NULL)
  2618. snac.config = xs_dict_set(snac.config, "name", v);
  2619. }
  2620. else
  2621. if (strcmp(k, "note") == 0) {
  2622. if (v != NULL)
  2623. snac.config = xs_dict_set(snac.config, "bio", v);
  2624. }
  2625. else
  2626. if (strcmp(k, "bot") == 0) {
  2627. if (v != NULL)
  2628. snac.config = xs_dict_set(snac.config, "bot",
  2629. (strcmp(v, "true") == 0 ||
  2630. strcmp(v, "1") == 0) ? xs_stock(XSTYPE_TRUE) : xs_stock(XSTYPE_FALSE));
  2631. }
  2632. else
  2633. if (strcmp(k, "source[sensitive]") == 0) {
  2634. if (v != NULL)
  2635. snac.config = xs_dict_set(snac.config, "cw",
  2636. strcmp(v, "true") == 0 ? "open" : "");
  2637. }
  2638. else
  2639. if (strcmp(k, "source[privacy]") == 0) {
  2640. if (v != NULL)
  2641. snac.config = xs_dict_set(snac.config, "private",
  2642. strcmp(v, "private") == 0 ? xs_stock(XSTYPE_TRUE) : xs_stock(XSTYPE_FALSE));
  2643. }
  2644. else
  2645. if (strcmp(k, "header") == 0) {
  2646. persist_image("header", v, payload, &snac);
  2647. }
  2648. else
  2649. if (strcmp(k, "avatar") == 0) {
  2650. persist_image("avatar", v, payload, &snac);
  2651. }
  2652. else
  2653. if (xs_starts_and_ends("fields_attributes", k, "[name]")) {
  2654. field_name = strcmp(v, "") != 0 ? v : NULL;
  2655. }
  2656. else
  2657. if (xs_starts_and_ends("fields_attributes", k, "[value]")) {
  2658. if (field_name != NULL) {
  2659. new_fields = xs_dict_set(new_fields, field_name, v);
  2660. snac.config = xs_dict_set(snac.config, "metadata", new_fields);
  2661. }
  2662. }
  2663. /* we don't have support for the following options, yet
  2664. - discoverable (0/1)
  2665. - locked (0/1)
  2666. */
  2667. }
  2668. /* Persist profile */
  2669. if (user_persist(&snac, 1) == 0)
  2670. credentials_get(body, ctype, &status, snac);
  2671. else
  2672. status = HTTP_STATUS_INTERNAL_SERVER_ERROR;
  2673. }
  2674. else
  2675. status = HTTP_STATUS_UNAUTHORIZED;
  2676. }
  2677. /* user cleanup */
  2678. if (logged_in)
  2679. user_free(&snac);
  2680. srv_debug(1, xs_fmt("mastoapi_patch_handler %s %d", q_path, status));
  2681. return status;
  2682. }
  2683. void mastoapi_purge(void)
  2684. {
  2685. xs *spec = xs_fmt("%s/app/" "*.json", srv_basedir);
  2686. xs *files = xs_glob(spec, 1, 0);
  2687. xs_list *p = files;
  2688. const xs_str *v;
  2689. time_t mt = time(NULL) - 3600;
  2690. while (xs_list_iter(&p, &v)) {
  2691. xs *cid = xs_replace(v, ".json", "");
  2692. xs *fn = _app_fn(cid);
  2693. if (mtime(fn) < mt) {
  2694. /* get the app */
  2695. xs *app = app_get(cid);
  2696. if (app) {
  2697. /* old apps with no uid are incomplete cruft */
  2698. const char *uid = xs_dict_get(app, "uid");
  2699. if (xs_is_null(uid) || *uid == '\0') {
  2700. unlink(fn);
  2701. srv_debug(2, xs_fmt("purged %s", fn));
  2702. }
  2703. }
  2704. }
  2705. }
  2706. }
  2707. #endif /* #ifndef NO_MASTODON_API */