html.c 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132
  1. /* snac - A simple, minimalistic ActivityPub instance */
  2. /* copyright (c) 2022 - 2024 grunfink et al. / MIT license */
  3. #include "xs.h"
  4. #include "xs_io.h"
  5. #include "xs_json.h"
  6. #include "xs_regex.h"
  7. #include "xs_set.h"
  8. #include "xs_openssl.h"
  9. #include "xs_time.h"
  10. #include "xs_mime.h"
  11. #include "xs_match.h"
  12. #include "xs_html.h"
  13. #include "snac.h"
  14. int login(snac *snac, const xs_dict *headers)
  15. /* tries a login */
  16. {
  17. int logged_in = 0;
  18. const char *auth = xs_dict_get(headers, "authorization");
  19. if (auth && xs_startswith(auth, "Basic ")) {
  20. int sz;
  21. xs *s1 = xs_crop_i(xs_dup(auth), 6, 0);
  22. xs *s2 = xs_base64_dec(s1, &sz);
  23. xs *l1 = xs_split_n(s2, ":", 1);
  24. if (xs_list_len(l1) == 2) {
  25. logged_in = check_password(
  26. xs_list_get(l1, 0), xs_list_get(l1, 1),
  27. xs_dict_get(snac->config, "passwd"));
  28. }
  29. }
  30. if (logged_in)
  31. lastlog_write(snac, "web");
  32. return logged_in;
  33. }
  34. xs_str *replace_shortnames(xs_str *s, xs_list *tag, int ems)
  35. /* replaces all the :shortnames: with the emojis in tag */
  36. {
  37. if (!xs_is_null(tag)) {
  38. xs *tag_list = NULL;
  39. if (xs_type(tag) == XSTYPE_DICT) {
  40. /* not a list */
  41. tag_list = xs_list_new();
  42. tag_list = xs_list_append(tag_list, tag);
  43. } else {
  44. /* is a list */
  45. tag_list = xs_dup(tag);
  46. }
  47. xs *style = xs_fmt("height: %dem; vertical-align: middle;", ems);
  48. xs_list *p = tag_list;
  49. char *v;
  50. while (xs_list_iter(&p, &v)) {
  51. char *t = xs_dict_get(v, "type");
  52. if (t && strcmp(t, "Emoji") == 0) {
  53. char *n = xs_dict_get(v, "name");
  54. char *i = xs_dict_get(v, "icon");
  55. if (n && i) {
  56. char *u = xs_dict_get(i, "url");
  57. xs_html *img = xs_html_sctag("img",
  58. xs_html_attr("loading", "lazy"),
  59. xs_html_attr("src", u),
  60. xs_html_attr("title", n),
  61. xs_html_attr("style", style));
  62. xs *s1 = xs_html_render(img);
  63. s = xs_replace_i(s, n, s1);
  64. }
  65. }
  66. }
  67. }
  68. return s;
  69. }
  70. xs_str *actor_name(xs_dict *actor)
  71. /* gets the actor name */
  72. {
  73. char *v;
  74. if (xs_is_null((v = xs_dict_get(actor, "name"))) || *v == '\0') {
  75. if (xs_is_null(v = xs_dict_get(actor, "preferredUsername")) || *v == '\0') {
  76. v = "anonymous";
  77. }
  78. }
  79. return replace_shortnames(xs_html_encode(v), xs_dict_get(actor, "tag"), 1);
  80. }
  81. xs_html *html_actor_icon(snac *user, xs_dict *actor, const char *date,
  82. const char *udate, const char *url, int priv)
  83. {
  84. xs_html *actor_icon = xs_html_tag("p", NULL);
  85. xs *avatar = NULL;
  86. char *v;
  87. xs *name = actor_name(actor);
  88. /* get the avatar */
  89. if ((v = xs_dict_get(actor, "icon")) != NULL &&
  90. (v = xs_dict_get(v, "url")) != NULL) {
  91. avatar = xs_dup(v);
  92. }
  93. if (avatar == NULL)
  94. avatar = xs_fmt("data:image/png;base64, %s", default_avatar_base64());
  95. char *actor_id = xs_dict_get(actor, "id");
  96. xs *href = NULL;
  97. if (user) {
  98. /* if this actor is a follower or being followed, create an
  99. anchored link to the people page instead of the actor url */
  100. if (follower_check(user, actor_id) || following_check(user, actor_id)) {
  101. xs *md5 = xs_md5_hex(actor_id, strlen(actor_id));
  102. href = xs_fmt("%s/people#%s", user->actor, md5);
  103. }
  104. }
  105. if (href == NULL)
  106. href = xs_dup(actor_id);
  107. xs_html_add(actor_icon,
  108. xs_html_sctag("img",
  109. xs_html_attr("loading", "lazy"),
  110. xs_html_attr("class", "snac-avatar"),
  111. xs_html_attr("src", avatar),
  112. xs_html_attr("alt", "")),
  113. xs_html_tag("a",
  114. xs_html_attr("href", href),
  115. xs_html_attr("class", "p-author h-card snac-author"),
  116. xs_html_raw(name))); /* name is already html-escaped */
  117. if (!xs_is_null(url)) {
  118. xs *md5 = xs_md5_hex(url, strlen(url));
  119. xs_html_add(actor_icon,
  120. xs_html_text(" "),
  121. xs_html_tag("a",
  122. xs_html_attr("href", (char *)url),
  123. xs_html_attr("title", md5),
  124. xs_html_text("»")));
  125. }
  126. if (priv) {
  127. xs_html_add(actor_icon,
  128. xs_html_text(" "),
  129. xs_html_tag("span",
  130. xs_html_attr("title", "private"),
  131. xs_html_raw("🔒")));
  132. }
  133. if (strcmp(xs_dict_get(actor, "type"), "Service") == 0) {
  134. xs_html_add(actor_icon,
  135. xs_html_text(" "),
  136. xs_html_tag("span",
  137. xs_html_attr("title", "bot"),
  138. xs_html_raw("🤖")));
  139. }
  140. if (xs_is_null(date)) {
  141. xs_html_add(actor_icon,
  142. xs_html_raw(" "));
  143. }
  144. else {
  145. xs *date_label = xs_crop_i(xs_dup(date), 0, 10);
  146. xs *date_title = xs_dup(date);
  147. if (!xs_is_null(udate)) {
  148. xs *sd = xs_crop_i(xs_dup(udate), 0, 10);
  149. date_label = xs_str_cat(date_label, " / ", sd);
  150. date_title = xs_str_cat(date_title, " / ", udate);
  151. }
  152. xs_html_add(actor_icon,
  153. xs_html_text(" "),
  154. xs_html_tag("time",
  155. xs_html_attr("class", "dt-published snac-pubdate"),
  156. xs_html_attr("title", date_title),
  157. xs_html_text(date_label)));
  158. }
  159. {
  160. char *username, *id;
  161. if (xs_is_null(username = xs_dict_get(actor, "preferredUsername")) || *username == '\0') {
  162. /* This should never be reached */
  163. username = "anonymous";
  164. }
  165. if (xs_is_null(id = xs_dict_get(actor, "id")) || *id == '\0') {
  166. /* This should never be reached */
  167. id = "https://social.example.org/anonymous";
  168. }
  169. /* "LIKE AN ANIMAL" */
  170. xs *domain = xs_split(id, "/");
  171. xs *user = xs_fmt("@%s@%s", username, xs_list_get(domain, 2));
  172. xs_html_add(actor_icon,
  173. xs_html_sctag("br", NULL),
  174. xs_html_tag("a",
  175. xs_html_attr("href", xs_dict_get(actor, "id")),
  176. xs_html_attr("class", "p-author-tag h-card snac-author-tag"),
  177. xs_html_text(user)));
  178. }
  179. return actor_icon;
  180. }
  181. xs_html *html_msg_icon(snac *user, char *actor_id, const xs_dict *msg)
  182. {
  183. xs *actor = NULL;
  184. xs_html *actor_icon = NULL;
  185. if (actor_id && valid_status(actor_get(actor_id, &actor))) {
  186. char *date = NULL;
  187. char *udate = NULL;
  188. char *url = NULL;
  189. int priv = 0;
  190. const char *type = xs_dict_get(msg, "type");
  191. if (xs_match(type, "Note|Question|Page|Article|Video"))
  192. url = xs_dict_get(msg, "id");
  193. priv = !is_msg_public(msg);
  194. date = xs_dict_get(msg, "published");
  195. udate = xs_dict_get(msg, "updated");
  196. actor_icon = html_actor_icon(user, actor, date, udate, url, priv);
  197. }
  198. return actor_icon;
  199. }
  200. xs_html *html_note(snac *user, char *summary,
  201. char *div_id, char *form_id,
  202. char *ta_plh, char *ta_content,
  203. char *edit_id, char *actor_id,
  204. xs_val *cw_yn, char *cw_text,
  205. xs_val *mnt_only, char *redir,
  206. char *in_reply_to, int poll)
  207. {
  208. xs *action = xs_fmt("%s/admin/note", user->actor);
  209. xs_html *form;
  210. xs_html *note = xs_html_tag("div",
  211. xs_html_tag("details",
  212. xs_html_tag("summary",
  213. xs_html_text(summary)),
  214. xs_html_tag("p", NULL),
  215. xs_html_tag("div",
  216. xs_html_attr("class", "snac-note"),
  217. xs_html_attr("id", div_id),
  218. form = xs_html_tag("form",
  219. xs_html_attr("autocomplete", "off"),
  220. xs_html_attr("method", "post"),
  221. xs_html_attr("action", action),
  222. xs_html_attr("enctype", "multipart/form-data"),
  223. xs_html_attr("id", form_id),
  224. xs_html_tag("textarea",
  225. xs_html_attr("class", "snac-textarea"),
  226. xs_html_attr("name", "content"),
  227. xs_html_attr("rows", "4"),
  228. xs_html_attr("wrap", "virtual"),
  229. xs_html_attr("required", "required"),
  230. xs_html_attr("placeholder", ta_plh),
  231. xs_html_text(ta_content)),
  232. xs_html_tag("p", NULL),
  233. xs_html_text(L("Sensitive content: ")),
  234. xs_html_sctag("input",
  235. xs_html_attr("type", "checkbox"),
  236. xs_html_attr("name", "sensitive"),
  237. xs_html_attr(xs_type(cw_yn) == XSTYPE_TRUE ? "checked" : "", NULL)),
  238. xs_html_sctag("input",
  239. xs_html_attr("type", "text"),
  240. xs_html_attr("name", "summary"),
  241. xs_html_attr("placeholder", L("Sensitive content description")),
  242. xs_html_attr("value", xs_is_null(cw_text) ? "" : cw_text))))));
  243. if (actor_id)
  244. xs_html_add(form,
  245. xs_html_sctag("input",
  246. xs_html_attr("type", "hidden"),
  247. xs_html_attr("name", "to"),
  248. xs_html_attr("value", actor_id)));
  249. else {
  250. /* no actor_id; ask for mentioned_only */
  251. xs_html_add(form,
  252. xs_html_tag("p", NULL),
  253. xs_html_text(L("Only for mentioned people: ")),
  254. xs_html_sctag("input",
  255. xs_html_attr("type", "checkbox"),
  256. xs_html_attr("name", "mentioned_only"),
  257. xs_html_attr(xs_type(mnt_only) == XSTYPE_TRUE ? "checked" : "", NULL)));
  258. }
  259. if (redir)
  260. xs_html_add(form,
  261. xs_html_sctag("input",
  262. xs_html_attr("type", "hidden"),
  263. xs_html_attr("name", "redir"),
  264. xs_html_attr("value", redir)));
  265. if (in_reply_to)
  266. xs_html_add(form,
  267. xs_html_sctag("input",
  268. xs_html_attr("type", "hidden"),
  269. xs_html_attr("name", "in_reply_to"),
  270. xs_html_attr("value", in_reply_to)));
  271. if (edit_id)
  272. xs_html_add(form,
  273. xs_html_sctag("input",
  274. xs_html_attr("type", "hidden"),
  275. xs_html_attr("name", "edit_id"),
  276. xs_html_attr("value", edit_id)));
  277. xs_html_add(form,
  278. xs_html_tag("p", NULL),
  279. xs_html_tag("details",
  280. xs_html_tag("summary",
  281. xs_html_text(L("Attachment..."))),
  282. xs_html_tag("p", NULL),
  283. xs_html_sctag("input",
  284. xs_html_attr("type", "file"),
  285. xs_html_attr("name", "attach")),
  286. xs_html_sctag("input",
  287. xs_html_attr("type", "text"),
  288. xs_html_attr("name", "alt_text"),
  289. xs_html_attr("placeholder", L("Attachment description")))));
  290. /* add poll controls */
  291. if (poll) {
  292. xs_html_add(form,
  293. xs_html_tag("p", NULL),
  294. xs_html_tag("details",
  295. xs_html_tag("summary",
  296. xs_html_text(L("Poll..."))),
  297. xs_html_tag("p",
  298. xs_html_text(L("Poll options (one per line, up to 8):")),
  299. xs_html_sctag("br", NULL),
  300. xs_html_tag("textarea",
  301. xs_html_attr("class", "snac-textarea"),
  302. xs_html_attr("name", "poll_options"),
  303. xs_html_attr("rows", "4"),
  304. xs_html_attr("wrap", "virtual"),
  305. xs_html_attr("placeholder", "Option 1...\nOption 2...\nOption 3...\n..."))),
  306. xs_html_tag("select",
  307. xs_html_attr("name", "poll_multiple"),
  308. xs_html_tag("option",
  309. xs_html_attr("value", "off"),
  310. xs_html_text(L("One choice"))),
  311. xs_html_tag("option",
  312. xs_html_attr("value", "on"),
  313. xs_html_text(L("Multiple choices")))),
  314. xs_html_text(" "),
  315. xs_html_tag("select",
  316. xs_html_attr("name", "poll_end_secs"),
  317. xs_html_tag("option",
  318. xs_html_attr("value", "300"),
  319. xs_html_text(L("End in 5 minutes"))),
  320. xs_html_tag("option",
  321. xs_html_attr("value", "3600"),
  322. xs_html_attr("selected", NULL),
  323. xs_html_text(L("End in 1 hour"))),
  324. xs_html_tag("option",
  325. xs_html_attr("value", "86400"),
  326. xs_html_text(L("End in 1 day"))))));
  327. }
  328. xs_html_add(form,
  329. xs_html_tag("p", NULL),
  330. xs_html_sctag("input",
  331. xs_html_attr("type", "submit"),
  332. xs_html_attr("class", "button"),
  333. xs_html_attr("value", L("Post"))),
  334. xs_html_tag("p", NULL));
  335. return note;
  336. }
  337. static xs_html *html_base_head(void)
  338. {
  339. xs_html *head = xs_html_tag("head",
  340. xs_html_sctag("meta",
  341. xs_html_attr("name", "viewport"),
  342. xs_html_attr("content", "width=device-width, initial-scale=1")),
  343. xs_html_sctag("meta",
  344. xs_html_attr("name", "generator"),
  345. xs_html_attr("content", USER_AGENT)));
  346. /* add server CSS */
  347. xs_list *p = xs_dict_get(srv_config, "cssurls");
  348. char *v;
  349. while (xs_list_iter(&p, &v)) {
  350. xs_html_add(head,
  351. xs_html_sctag("link",
  352. xs_html_attr("rel", "stylesheet"),
  353. xs_html_attr("type", "text/css"),
  354. xs_html_attr("href", v)));
  355. }
  356. return head;
  357. }
  358. xs_html *html_instance_head(void)
  359. {
  360. xs_html *head = html_base_head();
  361. {
  362. FILE *f;
  363. xs *g_css_fn = xs_fmt("%s/style.css", srv_basedir);
  364. if ((f = fopen(g_css_fn, "r")) != NULL) {
  365. xs *css = xs_readall(f);
  366. fclose(f);
  367. xs_html_add(head,
  368. xs_html_tag("style",
  369. xs_html_raw(css)));
  370. }
  371. }
  372. char *host = xs_dict_get(srv_config, "host");
  373. char *title = xs_dict_get(srv_config, "title");
  374. xs_html_add(head,
  375. xs_html_tag("title",
  376. xs_html_text(title && *title ? title : host)));
  377. return head;
  378. }
  379. static xs_html *html_instance_body(char *tag)
  380. {
  381. char *host = xs_dict_get(srv_config, "host");
  382. char *sdesc = xs_dict_get(srv_config, "short_description");
  383. char *email = xs_dict_get(srv_config, "admin_email");
  384. char *acct = xs_dict_get(srv_config, "admin_account");
  385. xs *blurb = xs_replace(snac_blurb, "%host%", host);
  386. xs_html *dl;
  387. xs_html *body = xs_html_tag("body",
  388. xs_html_tag("div",
  389. xs_html_attr("class", "snac-instance-blurb"),
  390. xs_html_raw(blurb), /* pure html */
  391. dl = xs_html_tag("dl", NULL)));
  392. if (sdesc && *sdesc) {
  393. xs_html_add(dl,
  394. xs_html_tag("di",
  395. xs_html_tag("dt",
  396. xs_html_text(L("Site description"))),
  397. xs_html_tag("dd",
  398. xs_html_text(sdesc))));
  399. }
  400. if (email && *email) {
  401. xs *mailto = xs_fmt("mailto:%s", email);
  402. xs_html_add(dl,
  403. xs_html_tag("di",
  404. xs_html_tag("dt",
  405. xs_html_text(L("Admin email"))),
  406. xs_html_tag("dd",
  407. xs_html_tag("a",
  408. xs_html_attr("href", mailto),
  409. xs_html_text(email)))));
  410. }
  411. if (acct && *acct) {
  412. xs *url = xs_fmt("%s/%s", srv_baseurl, acct);
  413. xs *handle = xs_fmt("@%s@%s", acct, host);
  414. xs_html_add(dl,
  415. xs_html_tag("di",
  416. xs_html_tag("dt",
  417. xs_html_text(L("Admin account"))),
  418. xs_html_tag("dd",
  419. xs_html_tag("a",
  420. xs_html_attr("href", url),
  421. xs_html_text(handle)))));
  422. }
  423. {
  424. xs *l = tag ? xs_fmt(L("Search results for #%s"), tag) :
  425. xs_dup(L("Recent posts by users in this instance"));
  426. xs_html_add(body,
  427. xs_html_tag("h2",
  428. xs_html_attr("class", "snac-header"),
  429. xs_html_text(l)));
  430. }
  431. return body;
  432. }
  433. xs_html *html_user_head(snac *user)
  434. {
  435. xs_html *head = html_base_head();
  436. /* add the user CSS */
  437. {
  438. xs *css = NULL;
  439. int size;
  440. /* try to open the user css */
  441. if (!valid_status(static_get(user, "style.css", &css, &size, NULL, NULL))) {
  442. /* it's not there; try to open the server-wide css */
  443. FILE *f;
  444. xs *g_css_fn = xs_fmt("%s/style.css", srv_basedir);
  445. if ((f = fopen(g_css_fn, "r")) != NULL) {
  446. css = xs_readall(f);
  447. fclose(f);
  448. }
  449. }
  450. if (css != NULL) {
  451. xs_html_add(head,
  452. xs_html_tag("style",
  453. xs_html_raw(css)));
  454. }
  455. }
  456. /* title */
  457. xs *title = xs_fmt("%s (@%s@%s)", xs_dict_get(user->config, "name"),
  458. user->uid, xs_dict_get(srv_config, "host"));
  459. xs_html_add(head,
  460. xs_html_tag("title",
  461. xs_html_text(title)));
  462. xs *avatar = xs_dup(xs_dict_get(user->config, "avatar"));
  463. if (avatar == NULL || *avatar == '\0') {
  464. xs_free(avatar);
  465. avatar = xs_fmt("%s/susie.png", srv_baseurl);
  466. }
  467. xs *s_bio = xs_dup(xs_dict_get(user->config, "bio"));
  468. int n;
  469. /* shorten the bio */
  470. for (n = 0; s_bio[n] && s_bio[n] != '&' && s_bio[n] != '.' &&
  471. s_bio[n] != '\r' && s_bio[n] != '\n' && n < 128; n++);
  472. s_bio[n] = '\0';
  473. /* og properties */
  474. xs_html_add(head,
  475. xs_html_sctag("meta",
  476. xs_html_attr("property", "og:site_name"),
  477. xs_html_attr("content", xs_dict_get(srv_config, "host"))),
  478. xs_html_sctag("meta",
  479. xs_html_attr("property", "og:title"),
  480. xs_html_attr("content", title)),
  481. xs_html_sctag("meta",
  482. xs_html_attr("property", "og:description"),
  483. xs_html_attr("content", s_bio)),
  484. xs_html_sctag("meta",
  485. xs_html_attr("property", "og:image"),
  486. xs_html_attr("content", avatar)),
  487. xs_html_sctag("meta",
  488. xs_html_attr("property", "og:width"),
  489. xs_html_attr("content", "300")),
  490. xs_html_sctag("meta",
  491. xs_html_attr("property", "og:height"),
  492. xs_html_attr("content", "300")));
  493. /* RSS link */
  494. xs *rss_url = xs_fmt("%s.rss", user->actor);
  495. xs_html_add(head,
  496. xs_html_sctag("link",
  497. xs_html_attr("rel", "alternate"),
  498. xs_html_attr("type", "application/rss+xml"),
  499. xs_html_attr("title", "RSS"),
  500. xs_html_attr("href", rss_url)));
  501. return head;
  502. }
  503. static xs_html *html_user_body(snac *user, int local)
  504. {
  505. xs_html *body = xs_html_tag("body", NULL);
  506. /* top nav */
  507. xs_html *top_nav = xs_html_tag("nav",
  508. xs_html_attr("class", "snac-top-nav"));
  509. xs *avatar = xs_dup(xs_dict_get(user->config, "avatar"));
  510. if (avatar == NULL || *avatar == '\0') {
  511. xs_free(avatar);
  512. avatar = xs_fmt("data:image/png;base64, %s", default_avatar_base64());
  513. }
  514. xs_html_add(top_nav,
  515. xs_html_sctag("img",
  516. xs_html_attr("src", avatar),
  517. xs_html_attr("class", "snac-avatar"),
  518. xs_html_attr("alt", "")));
  519. if (local) {
  520. xs *rss_url = xs_fmt("%s.rss", user->actor);
  521. xs *admin_url = xs_fmt("%s/admin", user->actor);
  522. xs_html_add(top_nav,
  523. xs_html_tag("a",
  524. xs_html_attr("href", rss_url),
  525. xs_html_text(L("RSS"))),
  526. xs_html_text(" - "),
  527. xs_html_tag("a",
  528. xs_html_attr("href", admin_url),
  529. xs_html_attr("rel", "nofollow"),
  530. xs_html_text(L("private"))));
  531. }
  532. else {
  533. xs *n_list = notify_list(user, 1);
  534. int n_len = xs_list_len(n_list);
  535. xs_html *notify_count = NULL;
  536. /* show the number of new notifications, if there are any */
  537. if (n_len) {
  538. xs *n_len_str = xs_fmt(" %d ", n_len);
  539. notify_count = xs_html_tag("sup",
  540. xs_html_attr("style", "background-color: red; color: white;"),
  541. xs_html_text(n_len_str));
  542. }
  543. else
  544. notify_count = xs_html_text("");
  545. xs *admin_url = xs_fmt("%s/admin", user->actor);
  546. xs *notify_url = xs_fmt("%s/notifications", user->actor);
  547. xs *people_url = xs_fmt("%s/people", user->actor);
  548. xs_html_add(top_nav,
  549. xs_html_tag("a",
  550. xs_html_attr("href", user->actor),
  551. xs_html_text(L("public"))),
  552. xs_html_text(" - "),
  553. xs_html_tag("a",
  554. xs_html_attr("href", admin_url),
  555. xs_html_text(L("private"))),
  556. xs_html_text(" - "),
  557. xs_html_tag("a",
  558. xs_html_attr("href", notify_url),
  559. xs_html_text(L("notifications"))),
  560. notify_count,
  561. xs_html_text(" - "),
  562. xs_html_tag("a",
  563. xs_html_attr("href", people_url),
  564. xs_html_text(L("people"))));
  565. }
  566. xs_html_add(body,
  567. top_nav);
  568. /* user info */
  569. xs_html *top_user = xs_html_tag("div",
  570. xs_html_attr("class", "h-card snac-top-user"));
  571. if (local) {
  572. char *header = xs_dict_get(user->config, "header");
  573. if (header && *header) {
  574. xs_html_add(top_user,
  575. xs_html_tag("div",
  576. xs_html_attr("class", "snac-top-user-banner"),
  577. xs_html_attr("style", "clear: both"),
  578. xs_html_sctag("br", NULL),
  579. xs_html_sctag("img",
  580. xs_html_attr("src", header))));
  581. }
  582. }
  583. xs *handle = xs_fmt("@%s@%s",
  584. xs_dict_get(user->config, "uid"),
  585. xs_dict_get(srv_config, "host"));
  586. xs_html_add(top_user,
  587. xs_html_tag("p",
  588. xs_html_attr("class", "p-name snac-top-user-name"),
  589. xs_html_text(xs_dict_get(user->config, "name"))),
  590. xs_html_tag("p",
  591. xs_html_attr("class", "snac-top-user-id"),
  592. xs_html_text(handle)));
  593. if (local) {
  594. xs *es1 = encode_html(xs_dict_get(user->config, "bio"));
  595. xs *bio1 = not_really_markdown(es1, NULL);
  596. xs *tags = xs_list_new();
  597. xs *bio2 = process_tags(user, bio1, &tags);
  598. xs_html *top_user_bio = xs_html_tag("div",
  599. xs_html_attr("class", "p-note snac-top-user-bio"),
  600. xs_html_raw(bio2)); /* already sanitized */
  601. xs_html_add(top_user,
  602. top_user_bio);
  603. xs_dict *metadata = xs_dict_get(user->config, "metadata");
  604. if (xs_type(metadata) == XSTYPE_DICT) {
  605. xs_str *k;
  606. xs_str *v;
  607. xs_html *snac_metadata = xs_html_tag("div",
  608. xs_html_attr("class", "snac-metadata"));
  609. while (xs_dict_iter(&metadata, &k, &v)) {
  610. xs_html *value;
  611. if (xs_startswith(v, "https:/" "/"))
  612. value = xs_html_tag("a",
  613. xs_html_attr("href", v),
  614. xs_html_text(v));
  615. else
  616. value = xs_html_text(v);
  617. xs_html_add(snac_metadata,
  618. xs_html_tag("span",
  619. xs_html_attr("class", "snac-property-name"),
  620. xs_html_text(k)),
  621. xs_html_text(":"),
  622. xs_html_sctag("br", NULL),
  623. xs_html_tag("span",
  624. xs_html_attr("class", "snac-property-value"),
  625. value),
  626. xs_html_sctag("br", NULL));
  627. }
  628. xs_html_add(top_user,
  629. snac_metadata);
  630. }
  631. }
  632. xs_html_add(body,
  633. top_user);
  634. return body;
  635. }
  636. xs_html *html_top_controls(snac *snac)
  637. /* generates the top controls */
  638. {
  639. xs *ops_action = xs_fmt("%s/admin/action", snac->actor);
  640. xs_html *top_controls = xs_html_tag("div",
  641. xs_html_attr("class", "snac-top-controls"),
  642. /** new post **/
  643. html_note(snac, L("New Post..."),
  644. "new_post_div", "new_post_form",
  645. L("What's on your mind?"), "",
  646. NULL, NULL,
  647. xs_stock_false, "",
  648. xs_stock_false, NULL,
  649. NULL, 1),
  650. /** operations **/
  651. xs_html_tag("details",
  652. xs_html_tag("summary",
  653. xs_html_text(L("Operations..."))),
  654. xs_html_tag("p", NULL),
  655. xs_html_tag("form",
  656. xs_html_attr("autocomplete", "off"),
  657. xs_html_attr("method", "post"),
  658. xs_html_attr("action", ops_action),
  659. xs_html_sctag("input",
  660. xs_html_attr("type", "text"),
  661. xs_html_attr("name", "actor"),
  662. xs_html_attr("required", "required"),
  663. xs_html_attr("placeholder", "bob@example.com")),
  664. xs_html_text(" "),
  665. xs_html_sctag("input",
  666. xs_html_attr("type", "submit"),
  667. xs_html_attr("name", "action"),
  668. xs_html_attr("value", L("Follow"))),
  669. xs_html_text(" "),
  670. xs_html_text(L("(by URL or user@host)"))),
  671. xs_html_tag("p", NULL),
  672. xs_html_tag("form",
  673. xs_html_attr("autocomplete", "off"),
  674. xs_html_attr("method", "post"),
  675. xs_html_attr("action", ops_action),
  676. xs_html_sctag("input",
  677. xs_html_attr("type", "text"),
  678. xs_html_attr("name", "id"),
  679. xs_html_attr("required", "required"),
  680. xs_html_attr("placeholder", "https:/" "/fedi.example.com/bob/...")),
  681. xs_html_text(" "),
  682. xs_html_sctag("input",
  683. xs_html_attr("type", "submit"),
  684. xs_html_attr("name", "action"),
  685. xs_html_attr("value", L("Boost"))),
  686. xs_html_text(" "),
  687. xs_html_text(L("(by URL)"))),
  688. xs_html_tag("p", NULL)));
  689. /** user settings **/
  690. char *email = "[disabled by admin]";
  691. if (xs_type(xs_dict_get(srv_config, "disable_email_notifications")) != XSTYPE_TRUE) {
  692. email = xs_dict_get(snac->config_o, "email");
  693. if (xs_is_null(email)) {
  694. email = xs_dict_get(snac->config, "email");
  695. if (xs_is_null(email))
  696. email = "";
  697. }
  698. }
  699. char *cw = xs_dict_get(snac->config, "cw");
  700. if (xs_is_null(cw))
  701. cw = "";
  702. char *telegram_bot = xs_dict_get(snac->config, "telegram_bot");
  703. if (xs_is_null(telegram_bot))
  704. telegram_bot = "";
  705. char *telegram_chat_id = xs_dict_get(snac->config, "telegram_chat_id");
  706. if (xs_is_null(telegram_chat_id))
  707. telegram_chat_id = "";
  708. char *ntfy_server = xs_dict_get(snac->config, "ntfy_server");
  709. if (xs_is_null(ntfy_server))
  710. ntfy_server = "";
  711. char *ntfy_token = xs_dict_get(snac->config, "ntfy_token");
  712. if (xs_is_null(ntfy_token))
  713. ntfy_token = "";
  714. char *purge_days = xs_dict_get(snac->config, "purge_days");
  715. if (!xs_is_null(purge_days) && xs_type(purge_days) == XSTYPE_NUMBER)
  716. purge_days = (char *)xs_number_str(purge_days);
  717. else
  718. purge_days = "0";
  719. xs_val *d_dm_f_u = xs_dict_get(snac->config, "drop_dm_from_unknown");
  720. xs_val *bot = xs_dict_get(snac->config, "bot");
  721. xs_val *a_private = xs_dict_get(snac->config, "private");
  722. xs *metadata = xs_str_new(NULL);
  723. xs_dict *md = xs_dict_get(snac->config, "metadata");
  724. xs_str *k;
  725. xs_str *v;
  726. while (xs_dict_iter(&md, &k, &v)) {
  727. xs *kp = xs_fmt("%s=%s", k, v);
  728. if (*metadata)
  729. metadata = xs_str_cat(metadata, "\n");
  730. metadata = xs_str_cat(metadata, kp);
  731. }
  732. xs *user_setup_action = xs_fmt("%s/admin/user-setup", snac->actor);
  733. xs_html_add(top_controls,
  734. xs_html_tag("details",
  735. xs_html_tag("summary",
  736. xs_html_text(L("User Settings..."))),
  737. xs_html_tag("div",
  738. xs_html_attr("class", "snac-user-setup"),
  739. xs_html_tag("form",
  740. xs_html_attr("autocomplete", "off"),
  741. xs_html_attr("method", "post"),
  742. xs_html_attr("action", user_setup_action),
  743. xs_html_attr("enctype", "multipart/form-data"),
  744. xs_html_tag("p",
  745. xs_html_text(L("Display name:")),
  746. xs_html_sctag("br", NULL),
  747. xs_html_sctag("input",
  748. xs_html_attr("type", "text"),
  749. xs_html_attr("name", "name"),
  750. xs_html_attr("value", xs_dict_get(snac->config, "name")),
  751. xs_html_attr("placeholder", L("Your name")))),
  752. xs_html_tag("p",
  753. xs_html_text(L("Avatar: ")),
  754. xs_html_sctag("input",
  755. xs_html_attr("type", "file"),
  756. xs_html_attr("name", "avatar_file"))),
  757. xs_html_tag("p",
  758. xs_html_text(L("Header image (banner): ")),
  759. xs_html_sctag("input",
  760. xs_html_attr("type", "file"),
  761. xs_html_attr("name", "header_file"))),
  762. xs_html_tag("p",
  763. xs_html_text(L("Bio:")),
  764. xs_html_sctag("br", NULL),
  765. xs_html_tag("textarea",
  766. xs_html_attr("name", "bio"),
  767. xs_html_attr("cols", "40"),
  768. xs_html_attr("rows", "4"),
  769. xs_html_attr("placeholder", L("Write about yourself here...")),
  770. xs_html_text(xs_dict_get(snac->config, "bio")))),
  771. xs_html_sctag("input",
  772. xs_html_attr("type", "checkbox"),
  773. xs_html_attr("name", "cw"),
  774. xs_html_attr("id", "cw"),
  775. xs_html_attr(strcmp(cw, "open") == 0 ? "checked" : "", NULL)),
  776. xs_html_tag("label",
  777. xs_html_attr("for", "cw"),
  778. xs_html_text(L("Always show sensitive content"))),
  779. xs_html_tag("p",
  780. xs_html_text(L("Email address for notifications:")),
  781. xs_html_sctag("br", NULL),
  782. xs_html_sctag("input",
  783. xs_html_attr("type", "text"),
  784. xs_html_attr("name", "email"),
  785. xs_html_attr("value", email),
  786. xs_html_attr("placeholder", "bob@example.com"))),
  787. xs_html_tag("p",
  788. xs_html_text(L("Telegram notifications (bot key and chat id):")),
  789. xs_html_sctag("br", NULL),
  790. xs_html_sctag("input",
  791. xs_html_attr("type", "text"),
  792. xs_html_attr("name", "telegram_bot"),
  793. xs_html_attr("value", telegram_bot),
  794. xs_html_attr("placeholder", "Bot API key")),
  795. xs_html_text(" "),
  796. xs_html_sctag("input",
  797. xs_html_attr("type", "text"),
  798. xs_html_attr("name", "telegram_chat_id"),
  799. xs_html_attr("value", telegram_chat_id),
  800. xs_html_attr("placeholder", "Chat id"))),
  801. xs_html_tag("p",
  802. xs_html_text(L("ntfy notifications (ntfy server and token):")),
  803. xs_html_sctag("br", NULL),
  804. xs_html_sctag("input",
  805. xs_html_attr("type", "text"),
  806. xs_html_attr("name", "ntfy_server"),
  807. xs_html_attr("value", ntfy_server),
  808. xs_html_attr("placeholder", "ntfy server - full URL (example: https://ntfy.sh/YourTopic)")),
  809. xs_html_text(" "),
  810. xs_html_sctag("input",
  811. xs_html_attr("type", "text"),
  812. xs_html_attr("name", "ntfy_token"),
  813. xs_html_attr("value", ntfy_token),
  814. xs_html_attr("placeholder", "ntfy token - if needed"))),
  815. xs_html_tag("p",
  816. xs_html_text(L("Maximum days to keep posts (0: server settings):")),
  817. xs_html_sctag("br", NULL),
  818. xs_html_sctag("input",
  819. xs_html_attr("type", "number"),
  820. xs_html_attr("name", "purge_days"),
  821. xs_html_attr("value", purge_days))),
  822. xs_html_tag("p",
  823. xs_html_sctag("input",
  824. xs_html_attr("type", "checkbox"),
  825. xs_html_attr("name", "drop_dm_from_unknown"),
  826. xs_html_attr("id", "drop_dm_from_unknown"),
  827. xs_html_attr(xs_type(d_dm_f_u) == XSTYPE_TRUE ? "checked" : "", NULL)),
  828. xs_html_tag("label",
  829. xs_html_attr("for", "drop_dm_from_unknown"),
  830. xs_html_text(L("Drop direct messages from people you don't follow")))),
  831. xs_html_tag("p",
  832. xs_html_sctag("input",
  833. xs_html_attr("type", "checkbox"),
  834. xs_html_attr("name", "bot"),
  835. xs_html_attr("id", "bot"),
  836. xs_html_attr(xs_type(bot) == XSTYPE_TRUE ? "checked" : "", NULL)),
  837. xs_html_tag("label",
  838. xs_html_attr("for", "bot"),
  839. xs_html_text(L("This account is a bot")))),
  840. xs_html_tag("p",
  841. xs_html_sctag("input",
  842. xs_html_attr("type", "checkbox"),
  843. xs_html_attr("name", "private"),
  844. xs_html_attr("id", "private"),
  845. xs_html_attr(xs_type(a_private) == XSTYPE_TRUE ? "checked" : "", NULL)),
  846. xs_html_tag("label",
  847. xs_html_attr("for", "private"),
  848. xs_html_text(L("This account is private "
  849. "(posts are not shown through the web)")))),
  850. xs_html_tag("p",
  851. xs_html_text(L("Profile metadata (key=value pairs in each line):")),
  852. xs_html_sctag("br", NULL),
  853. xs_html_tag("textarea",
  854. xs_html_attr("name", "metadata"),
  855. xs_html_attr("cols", "40"),
  856. xs_html_attr("rows", "4"),
  857. xs_html_attr("placeholder", "Blog=https:/"
  858. "/example.com/my-blog\nGPG Key=1FA54\n..."),
  859. xs_html_text(metadata))),
  860. xs_html_tag("p",
  861. xs_html_text(L("New password:")),
  862. xs_html_sctag("br", NULL),
  863. xs_html_sctag("input",
  864. xs_html_attr("type", "password"),
  865. xs_html_attr("name", "passwd1"),
  866. xs_html_attr("value", ""))),
  867. xs_html_tag("p",
  868. xs_html_text(L("Repeat new password:")),
  869. xs_html_sctag("br", NULL),
  870. xs_html_sctag("input",
  871. xs_html_attr("type", "password"),
  872. xs_html_attr("name", "passwd2"),
  873. xs_html_attr("value", ""))),
  874. xs_html_sctag("input",
  875. xs_html_attr("type", "submit"),
  876. xs_html_attr("class", "button"),
  877. xs_html_attr("value", L("Update user info")))))));
  878. return top_controls;
  879. }
  880. static xs_html *html_button(char *clss, char *label, char *hint)
  881. {
  882. xs *c = xs_fmt("snac-btn-%s", clss);
  883. /* use an NULL tag to separate non-css-classed buttons from one another */
  884. return xs_html_container(
  885. xs_html_sctag("input",
  886. xs_html_attr("type", "submit"),
  887. xs_html_attr("name", "action"),
  888. xs_html_attr("class", c),
  889. xs_html_attr("value", label),
  890. xs_html_attr("title", hint)),
  891. xs_html_text("\n"));
  892. }
  893. xs_str *build_mentions(snac *snac, const xs_dict *msg)
  894. /* returns a string with the mentions in msg */
  895. {
  896. xs_str *s = xs_str_new(NULL);
  897. char *list = xs_dict_get(msg, "tag");
  898. char *v;
  899. while (xs_list_iter(&list, &v)) {
  900. char *type = xs_dict_get(v, "type");
  901. char *href = xs_dict_get(v, "href");
  902. char *name = xs_dict_get(v, "name");
  903. if (type && strcmp(type, "Mention") == 0 &&
  904. href && strcmp(href, snac->actor) != 0 && name) {
  905. xs *s1 = NULL;
  906. if (name[0] != '@') {
  907. s1 = xs_fmt("@%s", name);
  908. name = s1;
  909. }
  910. xs *l = xs_split(name, "@");
  911. /* is it a name without a host? */
  912. if (xs_list_len(l) < 3) {
  913. /* split the href and pick the host name LIKE AN ANIMAL */
  914. /* would be better to query the webfinger but *won't do that* here */
  915. xs *l2 = xs_split(href, "/");
  916. if (xs_list_len(l2) >= 3) {
  917. xs *s1 = xs_fmt("%s@%s ", name, xs_list_get(l2, 2));
  918. s = xs_str_cat(s, s1);
  919. }
  920. }
  921. else {
  922. s = xs_str_cat(s, name);
  923. s = xs_str_cat(s, " ");
  924. }
  925. }
  926. }
  927. if (*s) {
  928. xs *s1 = s;
  929. s = xs_fmt("\n\n\nCC: %s", s1);
  930. }
  931. return s;
  932. }
  933. xs_html *html_entry_controls(snac *snac, char *actor, const xs_dict *msg, const char *md5)
  934. {
  935. char *id = xs_dict_get(msg, "id");
  936. char *group = xs_dict_get(msg, "audience");
  937. xs *likes = object_likes(id);
  938. xs *boosts = object_announces(id);
  939. xs *action = xs_fmt("%s/admin/action", snac->actor);
  940. xs *redir = xs_fmt("%s_entry", md5);
  941. xs_html *form;
  942. xs_html *controls = xs_html_tag("div",
  943. xs_html_attr("class", "snac-controls"),
  944. form = xs_html_tag("form",
  945. xs_html_attr("autocomplete", "off"),
  946. xs_html_attr("method", "post"),
  947. xs_html_attr("action", action),
  948. xs_html_sctag("input",
  949. xs_html_attr("type", "hidden"),
  950. xs_html_attr("name", "id"),
  951. xs_html_attr("value", id)),
  952. xs_html_sctag("input",
  953. xs_html_attr("type", "hidden"),
  954. xs_html_attr("name", "actor"),
  955. xs_html_attr("value", actor)),
  956. xs_html_sctag("input",
  957. xs_html_attr("type", "hidden"),
  958. xs_html_attr("name", "group"),
  959. xs_html_attr("value", xs_is_null(group) ? "" : group)),
  960. xs_html_sctag("input",
  961. xs_html_attr("type", "hidden"),
  962. xs_html_attr("name", "redir"),
  963. xs_html_attr("value", redir))));
  964. if (!xs_startswith(id, snac->actor)) {
  965. if (xs_list_in(likes, snac->md5) == -1) {
  966. /* not already liked; add button */
  967. xs_html_add(form,
  968. html_button("like", L("Like"), L("Say you like this post")));
  969. }
  970. }
  971. else {
  972. if (is_pinned(snac, id))
  973. xs_html_add(form,
  974. html_button("unpin", L("Unpin"), L("Unpin this post from your timeline")));
  975. else
  976. xs_html_add(form,
  977. html_button("pin", L("Pin"), L("Pin this post to the top of your timeline")));
  978. }
  979. if (is_msg_public(msg)) {
  980. if (strcmp(actor, snac->actor) == 0 || xs_list_in(boosts, snac->md5) == -1) {
  981. /* not already boosted or us; add button */
  982. xs_html_add(form,
  983. html_button("boost", L("Boost"), L("Announce this post to your followers")));
  984. }
  985. }
  986. if (strcmp(actor, snac->actor) != 0) {
  987. /* controls for other actors than this one */
  988. if (following_check(snac, actor)) {
  989. xs_html_add(form,
  990. html_button("unfollow", L("Unfollow"), L("Stop following this user's activity")));
  991. }
  992. else {
  993. xs_html_add(form,
  994. html_button("follow", L("Follow"), L("Start following this user's activity")));
  995. }
  996. if (!xs_is_null(group)) {
  997. if (following_check(snac, group)) {
  998. xs_html_add(form,
  999. html_button("unfollow", L("Unfollow Group"),
  1000. L("Stop following this group or channel")));
  1001. }
  1002. else {
  1003. xs_html_add(form,
  1004. html_button("follow", L("Follow Group"),
  1005. L("Start following this group or channel")));
  1006. }
  1007. }
  1008. xs_html_add(form,
  1009. html_button("mute", L("MUTE"),
  1010. L("Block any activity from this user forever")));
  1011. }
  1012. xs_html_add(form,
  1013. html_button("delete", L("Delete"), L("Delete this post")),
  1014. html_button("hide", L("Hide"), L("Hide this post and its children")));
  1015. char *prev_src = xs_dict_get(msg, "sourceContent");
  1016. if (!xs_is_null(prev_src) && strcmp(actor, snac->actor) == 0) { /** edit **/
  1017. /* post can be edited */
  1018. xs *div_id = xs_fmt("%s_edit", md5);
  1019. xs *form_id = xs_fmt("%s_edit_form", md5);
  1020. xs *redir = xs_fmt("%s_entry", md5);
  1021. xs_html_add(controls, xs_html_tag("div",
  1022. xs_html_tag("p", NULL),
  1023. html_note(snac, L("Edit..."),
  1024. div_id, form_id,
  1025. "", prev_src,
  1026. id, NULL,
  1027. xs_dict_get(msg, "sensitive"), xs_dict_get(msg, "summary"),
  1028. xs_stock_false, redir,
  1029. NULL, 0)),
  1030. xs_html_tag("p", NULL));
  1031. }
  1032. { /** reply **/
  1033. /* the post textarea */
  1034. xs *ct = build_mentions(snac, msg);
  1035. xs *div_id = xs_fmt("%s_reply", md5);
  1036. xs *form_id = xs_fmt("%s_reply_form", md5);
  1037. xs *redir = xs_fmt("%s_entry", md5);
  1038. xs_html_add(controls, xs_html_tag("div",
  1039. xs_html_tag("p", NULL),
  1040. html_note(snac, L("Reply..."),
  1041. div_id, form_id,
  1042. "", ct,
  1043. NULL, NULL,
  1044. xs_dict_get(msg, "sensitive"), xs_dict_get(msg, "summary"),
  1045. xs_stock_false, redir,
  1046. id, 0)),
  1047. xs_html_tag("p", NULL));
  1048. }
  1049. return controls;
  1050. }
  1051. xs_html *html_entry(snac *user, xs_dict *msg, int local,
  1052. int level, char *md5, int hide_children)
  1053. {
  1054. char *id = xs_dict_get(msg, "id");
  1055. char *type = xs_dict_get(msg, "type");
  1056. char *actor;
  1057. char *v;
  1058. /* do not show non-public messages in the public timeline */
  1059. if ((local || !user) && !is_msg_public(msg))
  1060. return NULL;
  1061. /* hidden? do nothing more for this conversation */
  1062. if (user && is_hidden(user, id))
  1063. return NULL;
  1064. /* avoid too deep nesting, as it may be a loop */
  1065. if (level >= 256)
  1066. return NULL;
  1067. if (strcmp(type, "Follow") == 0) {
  1068. return xs_html_tag("div",
  1069. xs_html_attr("class", "snac-post"),
  1070. xs_html_tag("div",
  1071. xs_html_attr("class", "snac-post-header"),
  1072. xs_html_tag("div",
  1073. xs_html_attr("class", "snac-origin"),
  1074. xs_html_text(L("follows you"))),
  1075. html_msg_icon(local ? NULL : user, xs_dict_get(msg, "actor"), msg)));
  1076. }
  1077. else
  1078. if (!xs_match(type, "Note|Question|Page|Article|Video")) {
  1079. /* skip oddities */
  1080. return NULL;
  1081. }
  1082. /* ignore notes with "name", as they are votes to Questions */
  1083. if (strcmp(type, "Note") == 0 && !xs_is_null(xs_dict_get(msg, "name")))
  1084. return NULL;
  1085. /* get the attributedTo */
  1086. if ((actor = get_atto(msg)) == NULL)
  1087. return NULL;
  1088. /* ignore muted morons immediately */
  1089. if (user && is_muted(user, actor))
  1090. return NULL;
  1091. if ((user == NULL || strcmp(actor, user->actor) != 0)
  1092. && !valid_status(actor_get(actor, NULL)))
  1093. return NULL;
  1094. /** html_entry top tag **/
  1095. xs_html *entry_top = xs_html_tag("div", NULL);
  1096. {
  1097. xs *s1 = xs_fmt("%s_entry", md5);
  1098. xs_html_add(entry_top,
  1099. xs_html_tag("a",
  1100. xs_html_attr("name", s1)));
  1101. }
  1102. xs_html *entry = xs_html_tag("div",
  1103. xs_html_attr("class", level == 0 ? "snac-post" : "snac-child"));
  1104. xs_html_add(entry_top,
  1105. entry);
  1106. /** post header **/
  1107. xs_html *score;
  1108. xs_html *post_header = xs_html_tag("div",
  1109. xs_html_attr("class", "snac-post-header"),
  1110. score = xs_html_tag("div",
  1111. xs_html_attr("class", "snac-score")));
  1112. xs_html_add(entry,
  1113. post_header);
  1114. if (user && is_pinned(user, id)) {
  1115. /* add a pin emoji */
  1116. xs_html_add(score,
  1117. xs_html_tag("span",
  1118. xs_html_attr("title", L("Pinned")),
  1119. xs_html_raw(" &#128204; ")));
  1120. }
  1121. if (strcmp(type, "Question") == 0) {
  1122. /* add the ballot box emoji */
  1123. xs_html_add(score,
  1124. xs_html_tag("span",
  1125. xs_html_attr("title", L("Poll")),
  1126. xs_html_raw(" &#128499; ")));
  1127. if (user && was_question_voted(user, id)) {
  1128. /* add a check to show this poll was voted */
  1129. xs_html_add(score,
  1130. xs_html_tag("span",
  1131. xs_html_attr("title", L("Voted")),
  1132. xs_html_raw(" &#10003; ")));
  1133. }
  1134. }
  1135. /* if it's a user from this same instance, add the score */
  1136. if (xs_startswith(id, srv_baseurl)) {
  1137. int n_likes = object_likes_len(id);
  1138. int n_boosts = object_announces_len(id);
  1139. /* alternate emojis: %d &#128077; %d &#128257; */
  1140. xs *s1 = xs_fmt("%d &#9733; %d &#8634;\n", n_likes, n_boosts);
  1141. xs_html_add(score,
  1142. xs_html_raw(s1));
  1143. }
  1144. xs *boosts = object_announces(id);
  1145. if (xs_list_len(boosts)) {
  1146. /* if somebody boosted this, show as origin */
  1147. char *p = xs_list_get(boosts, -1);
  1148. xs *actor_r = NULL;
  1149. if (user && xs_list_in(boosts, user->md5) != -1) {
  1150. /* we boosted this */
  1151. xs_html_add(post_header,
  1152. xs_html_tag("div",
  1153. xs_html_attr("class", "snac-origin"),
  1154. xs_html_tag("a",
  1155. xs_html_attr("href", user->actor),
  1156. xs_html_text(xs_dict_get(user->config, "name"))),
  1157. xs_html_text(" "),
  1158. xs_html_text(L("boosted"))));
  1159. }
  1160. else
  1161. if (valid_status(object_get_by_md5(p, &actor_r))) {
  1162. xs *name = actor_name(actor_r);
  1163. if (!xs_is_null(name)) {
  1164. xs *href = NULL;
  1165. if (!local && user != NULL)
  1166. href = xs_fmt("%s/people#%s", user->actor, p);
  1167. else
  1168. href = xs_dup(xs_dict_get(actor_r, "id"));
  1169. xs_html_add(post_header,
  1170. xs_html_tag("div",
  1171. xs_html_attr("class", "snac-origin"),
  1172. xs_html_tag("a",
  1173. xs_html_attr("href", href),
  1174. xs_html_raw(name)), /* already sanitized */
  1175. xs_html_text(" "),
  1176. xs_html_text(L("boosted"))));
  1177. }
  1178. }
  1179. }
  1180. else
  1181. if (strcmp(type, "Note") == 0) {
  1182. if (level == 0) {
  1183. /* is the parent not here? */
  1184. char *parent = xs_dict_get(msg, "inReplyTo");
  1185. if (user && !xs_is_null(parent) && *parent && !timeline_here(user, parent)) {
  1186. xs_html_add(post_header,
  1187. xs_html_tag("div",
  1188. xs_html_attr("class", "snac-origin"),
  1189. xs_html_text(L("in reply to")),
  1190. xs_html_text(" "),
  1191. xs_html_tag("a",
  1192. xs_html_attr("href", parent),
  1193. xs_html_text("»"))));
  1194. }
  1195. }
  1196. }
  1197. xs_html_add(post_header,
  1198. html_msg_icon(local ? NULL : user, actor, msg));
  1199. /** post content **/
  1200. xs_html *snac_content_wrap = xs_html_tag("div",
  1201. xs_html_attr("class", "e-content snac-content"));
  1202. xs_html_add(entry,
  1203. snac_content_wrap);
  1204. if (!xs_is_null(v = xs_dict_get(msg, "name"))) {
  1205. xs_html_add(snac_content_wrap,
  1206. xs_html_tag("h3",
  1207. xs_html_attr("class", "snac-entry-title"),
  1208. xs_html_text(v)));
  1209. }
  1210. xs_html *snac_content = NULL;
  1211. v = xs_dict_get(msg, "summary");
  1212. /* is it sensitive? */
  1213. if (user && xs_type(xs_dict_get(msg, "sensitive")) == XSTYPE_TRUE) {
  1214. if (xs_is_null(v) || *v == '\0')
  1215. v = "...";
  1216. /* only show it when not in the public timeline and the config setting is "open" */
  1217. char *cw = xs_dict_get(user->config, "cw");
  1218. if (xs_is_null(cw) || local)
  1219. cw = "";
  1220. snac_content = xs_html_tag("details",
  1221. xs_html_attr(cw, NULL),
  1222. xs_html_tag("summary",
  1223. xs_html_text(v),
  1224. xs_html_text(L(" [SENSITIVE CONTENT]"))));
  1225. }
  1226. else {
  1227. /* print the summary as a header (sites like e.g. Friendica can contain one) */
  1228. if (!xs_is_null(v) && *v)
  1229. xs_html_add(snac_content_wrap,
  1230. xs_html_tag("h3",
  1231. xs_html_attr("class", "snac-entry-title"),
  1232. xs_html_text(v)));
  1233. snac_content = xs_html_tag("div", NULL);
  1234. }
  1235. xs_html_add(snac_content_wrap,
  1236. snac_content);
  1237. {
  1238. /** build the content string **/
  1239. char *content = xs_dict_get(msg, "content");
  1240. xs *c = sanitize(xs_is_null(content) ? "" : content);
  1241. /* do some tweaks to the content */
  1242. c = xs_replace_i(c, "\r", "");
  1243. while (xs_endswith(c, "<br><br>"))
  1244. c = xs_crop_i(c, 0, -4);
  1245. c = xs_replace_i(c, "<br><br>", "<p>");
  1246. c = xs_str_cat(c, "<p>");
  1247. /* replace the :shortnames: */
  1248. c = replace_shortnames(c, xs_dict_get(msg, "tag"), 2);
  1249. /* Peertube videos content is in markdown */
  1250. char *mtype = xs_dict_get(msg, "mediaType");
  1251. if (xs_type(mtype) == XSTYPE_STRING && strcmp(mtype, "text/markdown") == 0) {
  1252. /* a full conversion could be better */
  1253. c = xs_replace_i(c, "\r", "");
  1254. c = xs_replace_i(c, "\n", "<br>");
  1255. }
  1256. /* c contains sanitized HTML */
  1257. xs_html_add(snac_content,
  1258. xs_html_raw(c));
  1259. }
  1260. if (strcmp(type, "Question") == 0) { /** question content **/
  1261. xs_list *oo = xs_dict_get(msg, "oneOf");
  1262. xs_list *ao = xs_dict_get(msg, "anyOf");
  1263. xs_list *p;
  1264. xs_dict *v;
  1265. int closed = 0;
  1266. xs_html *poll = xs_html_tag("div", NULL);
  1267. if (local)
  1268. closed = 1; /* non-identified page; show as closed */
  1269. else
  1270. if (xs_dict_get(msg, "closed"))
  1271. closed = 2;
  1272. else
  1273. if (user && xs_startswith(id, user->actor))
  1274. closed = 1; /* we questioned; closed for us */
  1275. else
  1276. if (user && was_question_voted(user, id))
  1277. closed = 1; /* we already voted; closed for us */
  1278. /* get the appropriate list of options */
  1279. p = oo != NULL ? oo : ao;
  1280. if (closed || user == NULL) {
  1281. /* closed poll */
  1282. xs_html *poll_result = xs_html_tag("table",
  1283. xs_html_attr("class", "snac-poll-result"));
  1284. while (xs_list_iter(&p, &v)) {
  1285. char *name = xs_dict_get(v, "name");
  1286. xs_dict *replies = xs_dict_get(v, "replies");
  1287. if (name && replies) {
  1288. char *ti = (char *)xs_number_str(xs_dict_get(replies, "totalItems"));
  1289. xs_html_add(poll_result,
  1290. xs_html_tag("tr",
  1291. xs_html_tag("td",
  1292. xs_html_text(name),
  1293. xs_html_text(":")),
  1294. xs_html_tag("td",
  1295. xs_html_text(ti))));
  1296. }
  1297. }
  1298. xs_html_add(poll,
  1299. poll_result);
  1300. }
  1301. else {
  1302. /* poll still active */
  1303. xs *vote_action = xs_fmt("%s/admin/vote", user->actor);
  1304. xs_html *form;
  1305. xs_html *poll_form = xs_html_tag("div",
  1306. xs_html_attr("class", "snac-poll-form"),
  1307. form = xs_html_tag("form",
  1308. xs_html_attr("autocomplete", "off"),
  1309. xs_html_attr("method", "post"),
  1310. xs_html_attr("action", vote_action),
  1311. xs_html_sctag("input",
  1312. xs_html_attr("type", "hidden"),
  1313. xs_html_attr("name", "actor"),
  1314. xs_html_attr("value", actor)),
  1315. xs_html_sctag("input",
  1316. xs_html_attr("type", "hidden"),
  1317. xs_html_attr("name", "irt"),
  1318. xs_html_attr("value", id))));
  1319. while (xs_list_iter(&p, &v)) {
  1320. char *name = xs_dict_get(v, "name");
  1321. xs_dict *replies = xs_dict_get(v, "replies");
  1322. if (name) {
  1323. char *ti = (char *)xs_number_str(xs_dict_get(replies, "totalItems"));
  1324. xs_html_add(form,
  1325. xs_html_sctag("input",
  1326. xs_html_attr("type", !xs_is_null(oo) ? "radio" : "checkbox"),
  1327. xs_html_attr("id", name),
  1328. xs_html_attr("value", name),
  1329. xs_html_attr("name", "question")),
  1330. xs_html_text(" "),
  1331. xs_html_tag("span",
  1332. xs_html_attr("title", ti),
  1333. xs_html_text(name)),
  1334. xs_html_sctag("br", NULL));
  1335. }
  1336. }
  1337. xs_html_add(form,
  1338. xs_html_tag("p", NULL),
  1339. xs_html_sctag("input",
  1340. xs_html_attr("type", "submit"),
  1341. xs_html_attr("class", "button"),
  1342. xs_html_attr("value", L("Vote"))));
  1343. xs_html_add(poll,
  1344. poll_form);
  1345. }
  1346. /* if it's *really* closed, say it */
  1347. if (closed == 2) {
  1348. xs_html_add(poll,
  1349. xs_html_tag("p",
  1350. xs_html_text(L("Closed"))));
  1351. }
  1352. else {
  1353. /* show when the poll closes */
  1354. char *end_time = xs_dict_get(msg, "endTime");
  1355. if (!xs_is_null(end_time)) {
  1356. time_t t0 = time(NULL);
  1357. time_t t1 = xs_parse_iso_date(end_time, 0);
  1358. if (t1 > 0 && t1 > t0) {
  1359. time_t diff_time = t1 - t0;
  1360. xs *tf = xs_str_time_diff(diff_time);
  1361. char *p = tf;
  1362. /* skip leading zeros */
  1363. for (; *p == '0' || *p == ':'; p++);
  1364. xs_html_add(poll,
  1365. xs_html_tag("p",
  1366. xs_html_text(L("Closes in")),
  1367. xs_html_text(" "),
  1368. xs_html_text(p)));
  1369. }
  1370. }
  1371. }
  1372. xs_html_add(snac_content,
  1373. poll);
  1374. }
  1375. /** attachments **/
  1376. v = xs_dict_get(msg, "attachment");
  1377. if (!xs_is_null(v)) { /** attachments **/
  1378. xs *attach = NULL;
  1379. /* ensure it's a list */
  1380. if (xs_type(v) == XSTYPE_DICT) {
  1381. attach = xs_list_new();
  1382. attach = xs_list_append(attach, v);
  1383. }
  1384. else
  1385. if (xs_type(v) == XSTYPE_LIST)
  1386. attach = xs_dup(v);
  1387. else
  1388. attach = xs_list_new();
  1389. /* does the message have an image? */
  1390. if (xs_type(v = xs_dict_get(msg, "image")) == XSTYPE_DICT) {
  1391. /* add it to the attachment list */
  1392. attach = xs_list_append(attach, v);
  1393. }
  1394. /* make custom css for attachments easier */
  1395. xs_html *content_attachments = xs_html_tag("div",
  1396. xs_html_attr("class", "snac-content-attachments"));
  1397. xs_html_add(snac_content,
  1398. content_attachments);
  1399. xs_list *p = attach;
  1400. while (xs_list_iter(&p, &v)) {
  1401. char *t = xs_dict_get(v, "mediaType");
  1402. if (xs_is_null(t))
  1403. t = xs_dict_get(v, "type");
  1404. if (xs_is_null(t))
  1405. continue;
  1406. char *url = xs_dict_get(v, "url");
  1407. if (xs_is_null(url))
  1408. url = xs_dict_get(v, "href");
  1409. if (xs_is_null(url))
  1410. continue;
  1411. /* infer MIME type from non-specific attachments */
  1412. if (xs_list_len(attach) < 2 && xs_match(t, "Link|Document")) {
  1413. char *mt = (char *)xs_mime_by_ext(url);
  1414. if (xs_match(mt, "image/*|audio/*|video/*")) /* */
  1415. t = mt;
  1416. }
  1417. char *name = xs_dict_get(v, "name");
  1418. if (xs_is_null(name))
  1419. name = xs_dict_get(msg, "name");
  1420. if (xs_is_null(name))
  1421. name = L("No description");
  1422. if (xs_startswith(t, "image/") || strcmp(t, "Image") == 0) {
  1423. xs_html_add(content_attachments,
  1424. xs_html_tag("a",
  1425. xs_html_attr("href", url),
  1426. xs_html_attr("target", "_blank"),
  1427. xs_html_sctag("img",
  1428. xs_html_attr("loading", "lazy"),
  1429. xs_html_attr("src", url),
  1430. xs_html_attr("alt", name),
  1431. xs_html_attr("title", name))));
  1432. }
  1433. else
  1434. if (xs_startswith(t, "video/")) {
  1435. xs_html_add(content_attachments,
  1436. xs_html_tag("video",
  1437. xs_html_attr("preload", "none"),
  1438. xs_html_attr("style", "width: 100%"),
  1439. xs_html_attr("class", "snac-embedded-video"),
  1440. xs_html_attr("controls", NULL),
  1441. xs_html_attr("src", url),
  1442. xs_html_text(L("Video")),
  1443. xs_html_text(": "),
  1444. xs_html_tag("a",
  1445. xs_html_attr("href", url),
  1446. xs_html_text(name))));
  1447. }
  1448. else
  1449. if (xs_startswith(t, "audio/")) {
  1450. xs_html_add(content_attachments,
  1451. xs_html_tag("audio",
  1452. xs_html_attr("preload", "none"),
  1453. xs_html_attr("style", "width: 100%"),
  1454. xs_html_attr("class", "snac-embedded-audio"),
  1455. xs_html_attr("controls", NULL),
  1456. xs_html_attr("src", url),
  1457. xs_html_text(L("Audio")),
  1458. xs_html_text(": "),
  1459. xs_html_tag("a",
  1460. xs_html_attr("href", url),
  1461. xs_html_text(name))));
  1462. }
  1463. else
  1464. if (strcmp(t, "Link") == 0) {
  1465. xs_html_add(content_attachments,
  1466. xs_html_tag("p",
  1467. xs_html_tag("a",
  1468. xs_html_attr("href", url),
  1469. xs_html_text(url))));
  1470. }
  1471. else {
  1472. xs_html_add(content_attachments,
  1473. xs_html_tag("p",
  1474. xs_html_tag("a",
  1475. xs_html_attr("href", url),
  1476. xs_html_text(L("Attachment")),
  1477. xs_html_text(": "),
  1478. xs_html_text(url))));
  1479. }
  1480. }
  1481. }
  1482. /** urls (attachments from Peertube) **/
  1483. v = xs_dict_get(msg, "url");
  1484. if (xs_type(v) == XSTYPE_LIST) {
  1485. xs_list *p = v;
  1486. char *url = NULL;
  1487. while (url == NULL && xs_list_iter(&p, &v)) {
  1488. if (xs_type(v) == XSTYPE_DICT) {
  1489. char *type = xs_dict_get(v, "type");
  1490. if (xs_type(type) == XSTYPE_STRING && strcmp(type, "Link") == 0) {
  1491. char *mtype = xs_dict_get(v, "mediaType");
  1492. xs_list *tag = xs_dict_get(v, "tag");
  1493. if (xs_type(mtype) == XSTYPE_STRING &&
  1494. strcmp(mtype, "application/x-mpegURL") == 0 &&
  1495. xs_type(tag) == XSTYPE_LIST) {
  1496. /* now iterate the tag list, looking for a video URL */
  1497. xs_dict *d;
  1498. while (url == NULL && xs_list_iter(&tag, &d)) {
  1499. if (xs_type(d) == XSTYPE_DICT) {
  1500. if (xs_type(mtype = xs_dict_get(d, "mediaType")) == XSTYPE_STRING &&
  1501. xs_startswith(mtype, "video/")) {
  1502. /* this is probably it */
  1503. if (xs_type(url = xs_dict_get(d, "href")) != XSTYPE_STRING)
  1504. url = NULL;
  1505. }
  1506. }
  1507. }
  1508. }
  1509. }
  1510. }
  1511. }
  1512. if (url != NULL) {
  1513. xs_html *content_attachments = xs_html_tag("div",
  1514. xs_html_attr("class", "snac-content-attachments"));
  1515. xs_html_add(snac_content,
  1516. content_attachments);
  1517. xs_html_add(content_attachments,
  1518. xs_html_tag("video",
  1519. xs_html_attr("preload", "none"),
  1520. xs_html_attr("style", "width: 100%"),
  1521. xs_html_attr("class", "snac-embedded-video"),
  1522. xs_html_attr("controls", NULL),
  1523. xs_html_attr("src", url),
  1524. xs_html_text(L("Video")),
  1525. xs_html_text(": "),
  1526. xs_html_tag("a",
  1527. xs_html_attr("href", url),
  1528. xs_html_text("---"))));
  1529. }
  1530. }
  1531. /* has this message an audience (i.e., comes from a channel or community)? */
  1532. char *audience = xs_dict_get(msg, "audience");
  1533. if (strcmp(type, "Page") == 0 && !xs_is_null(audience)) {
  1534. xs_html *au_tag = xs_html_tag("p",
  1535. xs_html_text("("),
  1536. xs_html_tag("a",
  1537. xs_html_attr("href", audience),
  1538. xs_html_attr("title", L("Source channel or community")),
  1539. xs_html_text(audience)),
  1540. xs_html_text(")"));
  1541. xs_html_add(snac_content_wrap,
  1542. au_tag);
  1543. }
  1544. /** controls **/
  1545. if (!local && user) {
  1546. xs_html_add(entry,
  1547. html_entry_controls(user, actor, msg, md5));
  1548. }
  1549. /** children **/
  1550. if (!hide_children) {
  1551. xs *children = object_children(id);
  1552. int left = xs_list_len(children);
  1553. if (left) {
  1554. xs_html *ch_details = xs_html_tag("details",
  1555. xs_html_attr("open", NULL),
  1556. xs_html_tag("summary",
  1557. xs_html_text("...")));
  1558. xs_html_add(entry,
  1559. ch_details);
  1560. xs_html *ch_container = xs_html_tag("div",
  1561. xs_html_attr("class", level < 4 ? "snac-children" : "snac-children-too-deep"));
  1562. xs_html_add(ch_details,
  1563. ch_container);
  1564. xs_html *ch_older = NULL;
  1565. if (left > 3) {
  1566. xs_html_add(ch_container,
  1567. ch_older = xs_html_tag("details",
  1568. xs_html_tag("summary",
  1569. xs_html_text(L("Older...")))));
  1570. }
  1571. xs_list *p = children;
  1572. char *cmd5;
  1573. while (xs_list_iter(&p, &cmd5)) {
  1574. xs *chd = NULL;
  1575. if (user)
  1576. timeline_get_by_md5(user, cmd5, &chd);
  1577. else
  1578. object_get_by_md5(cmd5, &chd);
  1579. if (chd != NULL && xs_is_null(xs_dict_get(chd, "name"))) {
  1580. xs_html *che = html_entry(user, chd, local, level + 1, cmd5, hide_children);
  1581. if (che != NULL) {
  1582. if (left > 3)
  1583. xs_html_add(ch_older,
  1584. che);
  1585. else
  1586. xs_html_add(ch_container,
  1587. che);
  1588. }
  1589. }
  1590. else
  1591. srv_debug(2, xs_fmt("cannot read child %s", cmd5));
  1592. left--;
  1593. }
  1594. }
  1595. }
  1596. return entry_top;
  1597. }
  1598. xs_html *html_footer(void)
  1599. {
  1600. return xs_html_tag("div",
  1601. xs_html_attr("class", "snac-footer"),
  1602. xs_html_tag("a",
  1603. xs_html_attr("href", srv_baseurl),
  1604. xs_html_text(L("about this site"))),
  1605. xs_html_text(" - "),
  1606. xs_html_text(L("powered by ")),
  1607. xs_html_tag("a",
  1608. xs_html_attr("href", WHAT_IS_SNAC_URL),
  1609. xs_html_tag("abbr",
  1610. xs_html_attr("title", "Social Network Are Crap"),
  1611. xs_html_text("snac"))));
  1612. }
  1613. xs_str *html_timeline(snac *user, const xs_list *list, int local,
  1614. int skip, int show, int show_more, char *tag)
  1615. /* returns the HTML for the timeline */
  1616. {
  1617. xs_list *p = (xs_list *)list;
  1618. char *v;
  1619. double t = ftime();
  1620. xs_html *head;
  1621. xs_html *body;
  1622. if (user) {
  1623. head = html_user_head(user);
  1624. body = html_user_body(user, local);
  1625. }
  1626. else {
  1627. head = html_instance_head();
  1628. body = html_instance_body(tag);
  1629. }
  1630. xs_html *html = xs_html_tag("html",
  1631. head,
  1632. body);
  1633. if (user && !local)
  1634. xs_html_add(body,
  1635. html_top_controls(user));
  1636. xs_html_add(body,
  1637. xs_html_tag("a",
  1638. xs_html_attr("name", "snac-posts")));
  1639. xs_html *posts = xs_html_tag("div",
  1640. xs_html_attr("class", "snac-posts"));
  1641. xs_html_add(body,
  1642. posts);
  1643. while (xs_list_iter(&p, &v)) {
  1644. xs *msg = NULL;
  1645. int status;
  1646. if (user && !is_pinned_by_md5(user, v))
  1647. status = timeline_get_by_md5(user, v, &msg);
  1648. else
  1649. status = object_get_by_md5(v, &msg);
  1650. if (!valid_status(status))
  1651. continue;
  1652. /* if it's an instance page, discard private users */
  1653. if (user == NULL && xs_startswith(xs_dict_get(msg, "id"), srv_baseurl)) {
  1654. const char *atto = get_atto(msg);
  1655. xs *l = xs_split(atto, "/");
  1656. const char *uid = xs_list_get(l, -1);
  1657. snac user;
  1658. int skip = 1;
  1659. if (uid && user_open(&user, uid)) {
  1660. if (xs_type(xs_dict_get(user.config, "private")) != XSTYPE_TRUE)
  1661. skip = 0;
  1662. user_free(&user);
  1663. }
  1664. if (skip)
  1665. continue;
  1666. }
  1667. xs_html *entry = html_entry(user, msg, local, 0, v, user ? 0 : 1);
  1668. if (entry != NULL)
  1669. xs_html_add(posts,
  1670. entry);
  1671. }
  1672. if (list && user && local) {
  1673. if (xs_type(xs_dict_get(srv_config, "disable_history")) != XSTYPE_TRUE) {
  1674. xs_html *ul = xs_html_tag("ul", NULL);
  1675. xs_html *history = xs_html_tag("div",
  1676. xs_html_attr("class", "snac-history"),
  1677. xs_html_tag("p",
  1678. xs_html_attr("class", "snac-history-title"),
  1679. xs_html_text(L("History"))),
  1680. ul);
  1681. xs *list = history_list(user);
  1682. xs_list *p = list;
  1683. char *v;
  1684. while (xs_list_iter(&p, &v)) {
  1685. xs *fn = xs_replace(v, ".html", "");
  1686. xs *url = xs_fmt("%s/h/%s", user->actor, v);
  1687. xs_html_add(ul,
  1688. xs_html_tag("li",
  1689. xs_html_tag("a",
  1690. xs_html_attr("href", url),
  1691. xs_html_text(fn))));
  1692. }
  1693. xs_html_add(body,
  1694. history);
  1695. }
  1696. }
  1697. {
  1698. xs *s1 = xs_fmt("\n<!-- %lf seconds -->\n", ftime() - t);
  1699. xs_html_add(body,
  1700. xs_html_raw(s1));
  1701. }
  1702. if (show_more) {
  1703. xs *t = NULL;
  1704. xs *m = NULL;
  1705. xs *ss = xs_fmt("skip=%d&show=%d", skip + show, show);
  1706. if (tag) {
  1707. t = xs_fmt("%s?t=%s", srv_baseurl, tag);
  1708. m = xs_fmt("%s&%s", t, ss);
  1709. }
  1710. else {
  1711. t = xs_fmt("%s%s", user ? user->actor : srv_baseurl, local ? "" : "/admin");
  1712. m = xs_fmt("%s?%s", t, ss);
  1713. }
  1714. xs_html *more_links = xs_html_tag("p",
  1715. xs_html_tag("a",
  1716. xs_html_attr("href", t),
  1717. xs_html_attr("name", "snac-more"),
  1718. xs_html_text(L("Back to top"))),
  1719. xs_html_text(" - "),
  1720. xs_html_tag("a",
  1721. xs_html_attr("href", m),
  1722. xs_html_attr("name", "snac-more"),
  1723. xs_html_text(L("More..."))));
  1724. xs_html_add(body,
  1725. more_links);
  1726. }
  1727. xs_html_add(body,
  1728. html_footer());
  1729. return xs_html_render_s(html, "<!DOCTYPE html>\n");
  1730. }
  1731. xs_html *html_people_list(snac *snac, xs_list *list, char *header, char *t)
  1732. {
  1733. xs_html *snac_posts;
  1734. xs_html *people = xs_html_tag("div",
  1735. xs_html_tag("h2",
  1736. xs_html_attr("class", "snac-header"),
  1737. xs_html_text(header)),
  1738. snac_posts = xs_html_tag("details",
  1739. xs_html_attr("open", NULL),
  1740. xs_html_tag("summary",
  1741. xs_html_text("...")),
  1742. xs_html_tag("div",
  1743. xs_html_attr("class", "snac-posts"))));
  1744. xs_list *p = list;
  1745. char *actor_id;
  1746. while (xs_list_iter(&p, &actor_id)) {
  1747. xs *md5 = xs_md5_hex(actor_id, strlen(actor_id));
  1748. xs *actor = NULL;
  1749. if (valid_status(actor_get(actor_id, &actor))) {
  1750. xs_html *snac_post = xs_html_tag("div",
  1751. xs_html_attr("class", "snac-post"),
  1752. xs_html_tag("a",
  1753. xs_html_attr("name", md5)),
  1754. xs_html_tag("div",
  1755. xs_html_attr("class", "snac-post-header"),
  1756. html_actor_icon(NULL, actor, xs_dict_get(actor, "published"), NULL, NULL, 0)));
  1757. /* content (user bio) */
  1758. char *c = xs_dict_get(actor, "summary");
  1759. if (!xs_is_null(c)) {
  1760. xs *sc = sanitize(c);
  1761. xs_html *snac_content = xs_html_tag("div",
  1762. xs_html_attr("class", "snac-content"));
  1763. if (xs_startswith(sc, "<p>"))
  1764. xs_html_add(snac_content,
  1765. xs_html_raw(sc)); /* already sanitized */
  1766. else
  1767. xs_html_add(snac_content,
  1768. xs_html_tag("p",
  1769. xs_html_raw(sc))); /* already sanitized */
  1770. xs_html_add(snac_post, snac_content);
  1771. }
  1772. /* buttons */
  1773. xs *btn_form_action = xs_fmt("%s/admin/action", snac->actor);
  1774. xs_html *snac_controls = xs_html_tag("div",
  1775. xs_html_attr("class", "snac-controls"));
  1776. xs_html *form = xs_html_tag("form",
  1777. xs_html_attr("autocomplete", "off"),
  1778. xs_html_attr("method", "post"),
  1779. xs_html_attr("action", btn_form_action),
  1780. xs_html_sctag("input",
  1781. xs_html_attr("type", "hidden"),
  1782. xs_html_attr("name", "actor"),
  1783. xs_html_attr("value", actor_id)),
  1784. xs_html_sctag("input",
  1785. xs_html_attr("type", "hidden"),
  1786. xs_html_attr("name", "actor-form"),
  1787. xs_html_attr("value", "yes")));
  1788. xs_html_add(snac_controls, form);
  1789. if (following_check(snac, actor_id)) {
  1790. xs_html_add(form,
  1791. html_button("unfollow", L("Unfollow"),
  1792. L("Stop following this user's activity")));
  1793. if (is_limited(snac, actor_id))
  1794. xs_html_add(form,
  1795. html_button("unlimit", L("Unlimit"),
  1796. L("Allow announces (boosts) from this user")));
  1797. else
  1798. xs_html_add(form,
  1799. html_button("limit", L("Limit"),
  1800. L("Block announces (boosts) from this user")));
  1801. }
  1802. else {
  1803. xs_html_add(form,
  1804. html_button("follow", L("Follow"),
  1805. L("Start following this user's activity")));
  1806. if (follower_check(snac, actor_id))
  1807. xs_html_add(form,
  1808. html_button("delete", L("Delete"), L("Delete this user")));
  1809. }
  1810. if (is_muted(snac, actor_id))
  1811. xs_html_add(form,
  1812. html_button("unmute", L("Unmute"),
  1813. L("Stop blocking activities from this user")));
  1814. else
  1815. xs_html_add(form,
  1816. html_button("mute", L("MUTE"),
  1817. L("Block any activity from this user")));
  1818. /* the post textarea */
  1819. xs *dm_div_id = xs_fmt("%s_%s_dm", md5, t);
  1820. xs *dm_form_id = xs_fmt("%s_reply_form", md5);
  1821. xs_html_add(snac_controls,
  1822. xs_html_tag("p", NULL),
  1823. html_note(snac, L("Direct Message..."),
  1824. dm_div_id, dm_form_id,
  1825. "", "",
  1826. NULL, actor_id,
  1827. xs_stock_false, "",
  1828. xs_stock_false, NULL,
  1829. NULL, 0),
  1830. xs_html_tag("p", NULL));
  1831. xs_html_add(snac_post, snac_controls);
  1832. xs_html_add(snac_posts, snac_post);
  1833. }
  1834. }
  1835. return people;
  1836. }
  1837. xs_str *html_people(snac *user)
  1838. {
  1839. xs *wing = following_list(user);
  1840. xs *wers = follower_list(user);
  1841. xs_html *html = xs_html_tag("html",
  1842. html_user_head(user),
  1843. xs_html_add(html_user_body(user, 0),
  1844. html_people_list(user, wing, L("People you follow"), "i"),
  1845. html_people_list(user, wers, L("People that follow you"), "e"),
  1846. html_footer()));
  1847. return xs_html_render_s(html, "<!DOCTYPE html>\n");
  1848. }
  1849. xs_str *html_notifications(snac *user)
  1850. {
  1851. xs *n_list = notify_list(user, 0);
  1852. xs *n_time = notify_check_time(user, 0);
  1853. xs_html *body = html_user_body(user, 0);
  1854. xs_html *html = xs_html_tag("html",
  1855. html_user_head(user),
  1856. body);
  1857. xs *clear_all_action = xs_fmt("%s/admin/clear-notifications", user->actor);
  1858. xs_html_add(body,
  1859. xs_html_tag("form",
  1860. xs_html_attr("autocomplete", "off"),
  1861. xs_html_attr("method", "post"),
  1862. xs_html_attr("action", clear_all_action),
  1863. xs_html_attr("id", "clear"),
  1864. xs_html_sctag("input",
  1865. xs_html_attr("type", "submit"),
  1866. xs_html_attr("class", "snac-btn-like"),
  1867. xs_html_attr("value", L("Clear all")))));
  1868. xs_html *noti_new = NULL;
  1869. xs_html *noti_seen = NULL;
  1870. xs_list *p = n_list;
  1871. xs_str *v;
  1872. while (xs_list_iter(&p, &v)) {
  1873. xs *noti = notify_get(user, v);
  1874. if (noti == NULL)
  1875. continue;
  1876. xs *obj = NULL;
  1877. char *type = xs_dict_get(noti, "type");
  1878. char *utype = xs_dict_get(noti, "utype");
  1879. char *id = xs_dict_get(noti, "objid");
  1880. if (xs_is_null(id) || !valid_status(object_get(id, &obj)))
  1881. continue;
  1882. if (is_hidden(user, id))
  1883. continue;
  1884. char *actor_id = xs_dict_get(noti, "actor");
  1885. xs *actor = NULL;
  1886. if (!valid_status(actor_get(actor_id, &actor)))
  1887. continue;
  1888. xs *a_name = actor_name(actor);
  1889. char *label = type;
  1890. if (strcmp(type, "Create") == 0)
  1891. label = L("Mention");
  1892. else
  1893. if (strcmp(type, "Update") == 0 && strcmp(utype, "Question") == 0)
  1894. label = L("Finished poll");
  1895. else
  1896. if (strcmp(type, "Undo") == 0 && strcmp(utype, "Follow") == 0)
  1897. label = L("Unfollow");
  1898. xs_html *entry = xs_html_tag("div",
  1899. xs_html_attr("class", "snac-post-with-desc"),
  1900. xs_html_tag("p",
  1901. xs_html_tag("b",
  1902. xs_html_text(label),
  1903. xs_html_text(" by "),
  1904. xs_html_tag("a",
  1905. xs_html_attr("href", actor_id),
  1906. xs_html_raw(a_name))))); /* a_name is already sanitized */
  1907. if (strcmp(type, "Follow") == 0 || strcmp(utype, "Follow") == 0) {
  1908. xs_html_add(entry,
  1909. xs_html_tag("div",
  1910. xs_html_attr("class", "snac-post"),
  1911. html_actor_icon(user, actor, NULL, NULL, NULL, 0)));
  1912. }
  1913. else {
  1914. xs *md5 = xs_md5_hex(id, strlen(id));
  1915. xs_html *h = html_entry(user, obj, 0, 0, md5, 1);
  1916. if (h != NULL) {
  1917. xs_html_add(entry,
  1918. h);
  1919. }
  1920. }
  1921. if (strcmp(v, n_time) > 0) {
  1922. /* unseen notification */
  1923. if (noti_new == NULL) {
  1924. noti_new = xs_html_tag("div",
  1925. xs_html_tag("h2",
  1926. xs_html_attr("class", "snac-header"),
  1927. xs_html_text(L("New"))));
  1928. xs_html_add(body,
  1929. noti_new);
  1930. }
  1931. xs_html_add(noti_new,
  1932. entry);
  1933. }
  1934. else {
  1935. /* already seen notification */
  1936. if (noti_seen == NULL) {
  1937. noti_seen = xs_html_tag("div",
  1938. xs_html_tag("h2",
  1939. xs_html_attr("class", "snac-header"),
  1940. xs_html_text(L("Already seen"))));
  1941. xs_html_add(body,
  1942. noti_seen);
  1943. }
  1944. xs_html_add(noti_seen,
  1945. entry);
  1946. }
  1947. }
  1948. if (noti_new == NULL && noti_seen == NULL)
  1949. xs_html_add(body,
  1950. xs_html_tag("h2",
  1951. xs_html_attr("class", "snac-header"),
  1952. xs_html_text(L("None"))));
  1953. xs_html_add(body,
  1954. html_footer());
  1955. /* set the check time to now */
  1956. xs *dummy = notify_check_time(user, 1);
  1957. dummy = xs_free(dummy);
  1958. timeline_touch(user);
  1959. return xs_html_render_s(html, "<!DOCTYPE html>\n");
  1960. }
  1961. int html_get_handler(const xs_dict *req, const char *q_path,
  1962. char **body, int *b_size, char **ctype, xs_str **etag)
  1963. {
  1964. char *accept = xs_dict_get(req, "accept");
  1965. int status = 404;
  1966. snac snac;
  1967. xs *uid = NULL;
  1968. char *p_path;
  1969. int cache = 1;
  1970. int save = 1;
  1971. char *v;
  1972. xs *l = xs_split_n(q_path, "/", 2);
  1973. v = xs_list_get(l, 1);
  1974. if (xs_is_null(v)) {
  1975. srv_log(xs_fmt("html_get_handler bad query '%s'", q_path));
  1976. return 404;
  1977. }
  1978. uid = xs_dup(v);
  1979. /* rss extension? */
  1980. if (xs_endswith(uid, ".rss")) {
  1981. uid = xs_crop_i(uid, 0, -4);
  1982. p_path = ".rss";
  1983. }
  1984. else
  1985. p_path = xs_list_get(l, 2);
  1986. if (!uid || !user_open(&snac, uid)) {
  1987. /* invalid user */
  1988. srv_debug(1, xs_fmt("html_get_handler bad user %s", uid));
  1989. return 404;
  1990. }
  1991. /* return the RSS if requested by Accept header */
  1992. if (accept != NULL) {
  1993. if (xs_str_in(accept, "text/xml") != -1 ||
  1994. xs_str_in(accept, "application/rss+xml") != -1)
  1995. p_path = ".rss";
  1996. }
  1997. /* check if server config variable 'disable_cache' is set */
  1998. if ((v = xs_dict_get(srv_config, "disable_cache")) && xs_type(v) == XSTYPE_TRUE)
  1999. cache = 0;
  2000. int skip = 0;
  2001. int show = xs_number_get(xs_dict_get(srv_config, "max_timeline_entries"));
  2002. char *q_vars = xs_dict_get(req, "q_vars");
  2003. if ((v = xs_dict_get(q_vars, "skip")) != NULL)
  2004. skip = atoi(v), cache = 0, save = 0;
  2005. if ((v = xs_dict_get(q_vars, "show")) != NULL)
  2006. show = atoi(v), cache = 0, save = 0;
  2007. if (p_path == NULL) { /** public timeline **/
  2008. xs *h = xs_str_localtime(0, "%Y-%m.html");
  2009. if (xs_type(xs_dict_get(snac.config, "private")) == XSTYPE_TRUE) {
  2010. *body = html_timeline(&snac, NULL, 1, 0, 0, 0, NULL);
  2011. *b_size = strlen(*body);
  2012. status = 200;
  2013. }
  2014. else
  2015. if (cache && history_mtime(&snac, h) > timeline_mtime(&snac)) {
  2016. snac_debug(&snac, 1, xs_fmt("serving cached local timeline"));
  2017. status = history_get(&snac, h, body, b_size,
  2018. xs_dict_get(req, "if-none-match"), etag);
  2019. }
  2020. else {
  2021. xs *list = timeline_list(&snac, "public", skip, show);
  2022. xs *next = timeline_list(&snac, "public", skip + show, 1);
  2023. xs *pins = pinned_list(&snac);
  2024. pins = xs_list_cat(pins, list);
  2025. *body = html_timeline(&snac, pins, 1, skip, show, xs_list_len(next), NULL);
  2026. *b_size = strlen(*body);
  2027. status = 200;
  2028. if (save)
  2029. history_add(&snac, h, *body, *b_size, etag);
  2030. }
  2031. }
  2032. else
  2033. if (strcmp(p_path, "admin") == 0) { /** private timeline **/
  2034. if (!login(&snac, req)) {
  2035. *body = xs_dup(uid);
  2036. status = 401;
  2037. }
  2038. else {
  2039. if (cache && history_mtime(&snac, "timeline.html_") > timeline_mtime(&snac)) {
  2040. snac_debug(&snac, 1, xs_fmt("serving cached timeline"));
  2041. status = history_get(&snac, "timeline.html_", body, b_size,
  2042. xs_dict_get(req, "if-none-match"), etag);
  2043. }
  2044. else {
  2045. snac_debug(&snac, 1, xs_fmt("building timeline"));
  2046. xs *list = timeline_list(&snac, "private", skip, show);
  2047. xs *next = timeline_list(&snac, "private", skip + show, 1);
  2048. xs *pins = pinned_list(&snac);
  2049. pins = xs_list_cat(pins, list);
  2050. *body = html_timeline(&snac, pins, 0, skip, show, xs_list_len(next), NULL);
  2051. *b_size = strlen(*body);
  2052. status = 200;
  2053. if (save)
  2054. history_add(&snac, "timeline.html_", *body, *b_size, etag);
  2055. }
  2056. }
  2057. }
  2058. else
  2059. if (strcmp(p_path, "people") == 0) { /** the list of people **/
  2060. if (!login(&snac, req)) {
  2061. *body = xs_dup(uid);
  2062. status = 401;
  2063. }
  2064. else {
  2065. *body = html_people(&snac);
  2066. *b_size = strlen(*body);
  2067. status = 200;
  2068. }
  2069. }
  2070. else
  2071. if (strcmp(p_path, "notifications") == 0) { /** the list of notifications **/
  2072. if (!login(&snac, req)) {
  2073. *body = xs_dup(uid);
  2074. status = 401;
  2075. }
  2076. else {
  2077. *body = html_notifications(&snac);
  2078. *b_size = strlen(*body);
  2079. status = 200;
  2080. }
  2081. }
  2082. else
  2083. if (xs_startswith(p_path, "p/")) { /** a timeline with just one entry **/
  2084. if (xs_type(xs_dict_get(snac.config, "private")) == XSTYPE_TRUE)
  2085. return 403;
  2086. xs *id = xs_fmt("%s/%s", snac.actor, p_path);
  2087. xs *msg = NULL;
  2088. if (valid_status(object_get(id, &msg))) {
  2089. xs *md5 = xs_md5_hex(id, strlen(id));
  2090. xs *list = xs_list_new();
  2091. list = xs_list_append(list, md5);
  2092. *body = html_timeline(&snac, list, 1, 0, 0, 0, NULL);
  2093. *b_size = strlen(*body);
  2094. status = 200;
  2095. }
  2096. }
  2097. else
  2098. if (xs_startswith(p_path, "s/")) { /** a static file **/
  2099. xs *l = xs_split(p_path, "/");
  2100. char *id = xs_list_get(l, 1);
  2101. int sz;
  2102. if (id && *id) {
  2103. status = static_get(&snac, id, body, &sz,
  2104. xs_dict_get(req, "if-none-match"), etag);
  2105. if (valid_status(status)) {
  2106. *b_size = sz;
  2107. *ctype = (char *)xs_mime_by_ext(id);
  2108. }
  2109. }
  2110. }
  2111. else
  2112. if (xs_startswith(p_path, "h/")) { /** an entry from the history **/
  2113. if (xs_type(xs_dict_get(snac.config, "private")) == XSTYPE_TRUE)
  2114. return 403;
  2115. if (xs_type(xs_dict_get(srv_config, "disable_history")) == XSTYPE_TRUE)
  2116. return 403;
  2117. xs *l = xs_split(p_path, "/");
  2118. char *id = xs_list_get(l, 1);
  2119. if (id && *id) {
  2120. if (xs_endswith(id, "timeline.html_")) {
  2121. /* Don't let them in */
  2122. *b_size = 0;
  2123. status = 404;
  2124. }
  2125. else
  2126. status = history_get(&snac, id, body, b_size,
  2127. xs_dict_get(req, "if-none-match"), etag);
  2128. }
  2129. }
  2130. else
  2131. if (strcmp(p_path, ".rss") == 0) { /** public timeline in RSS format **/
  2132. if (xs_type(xs_dict_get(snac.config, "private")) == XSTYPE_TRUE)
  2133. return 403;
  2134. xs *elems = timeline_simple_list(&snac, "public", 0, 20);
  2135. xs *bio = not_really_markdown(xs_dict_get(snac.config, "bio"), NULL);
  2136. xs *rss_title = xs_fmt("%s (@%s@%s)",
  2137. xs_dict_get(snac.config, "name"),
  2138. snac.uid,
  2139. xs_dict_get(srv_config, "host"));
  2140. xs *rss_link = xs_fmt("%s.rss", snac.actor);
  2141. xs_html *rss = xs_html_tag("rss",
  2142. xs_html_attr("version", "0.91"));
  2143. xs_html *channel = xs_html_tag("channel",
  2144. xs_html_tag("title",
  2145. xs_html_text(rss_title)),
  2146. xs_html_tag("language",
  2147. xs_html_text("en")),
  2148. xs_html_tag("link",
  2149. xs_html_text(rss_link)),
  2150. xs_html_tag("description",
  2151. xs_html_text(bio)));
  2152. xs_html_add(rss, channel);
  2153. xs_list *p = elems;
  2154. char *v;
  2155. while (xs_list_iter(&p, &v)) {
  2156. xs *msg = NULL;
  2157. if (!valid_status(timeline_get_by_md5(&snac, v, &msg)))
  2158. continue;
  2159. char *id = xs_dict_get(msg, "id");
  2160. char *content = xs_dict_get(msg, "content");
  2161. if (!xs_startswith(id, snac.actor))
  2162. continue;
  2163. /* create a title with the first line of the content */
  2164. xs *es_title = xs_replace(content, "<br>", "\n");
  2165. xs *title = xs_str_new(NULL);
  2166. int i;
  2167. for (i = 0; es_title[i] && es_title[i] != '\n' && es_title[i] != '&' && i < 50; i++)
  2168. title = xs_append_m(title, &es_title[i], 1);
  2169. xs_html_add(channel,
  2170. xs_html_tag("item",
  2171. xs_html_tag("title",
  2172. xs_html_text(title)),
  2173. xs_html_tag("link",
  2174. xs_html_text(id)),
  2175. xs_html_tag("description",
  2176. xs_html_text(content))));
  2177. }
  2178. *body = xs_html_render_s(rss, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
  2179. *b_size = strlen(*body);
  2180. *ctype = "application/rss+xml; charset=utf-8";
  2181. status = 200;
  2182. snac_debug(&snac, 1, xs_fmt("serving RSS"));
  2183. }
  2184. else
  2185. status = 404;
  2186. user_free(&snac);
  2187. if (valid_status(status) && *ctype == NULL) {
  2188. *ctype = "text/html; charset=utf-8";
  2189. }
  2190. return status;
  2191. }
  2192. int html_post_handler(const xs_dict *req, const char *q_path,
  2193. char *payload, int p_size,
  2194. char **body, int *b_size, char **ctype)
  2195. {
  2196. (void)p_size;
  2197. (void)ctype;
  2198. int status = 0;
  2199. snac snac;
  2200. char *uid, *p_path;
  2201. xs_dict *p_vars;
  2202. xs *l = xs_split_n(q_path, "/", 2);
  2203. uid = xs_list_get(l, 1);
  2204. if (!uid || !user_open(&snac, uid)) {
  2205. /* invalid user */
  2206. srv_debug(1, xs_fmt("html_post_handler bad user %s", uid));
  2207. return 404;
  2208. }
  2209. p_path = xs_list_get(l, 2);
  2210. /* all posts must be authenticated */
  2211. if (!login(&snac, req)) {
  2212. user_free(&snac);
  2213. *body = xs_dup(uid);
  2214. return 401;
  2215. }
  2216. p_vars = xs_dict_get(req, "p_vars");
  2217. #if 0
  2218. xs_json_dump(p_vars, 4, stdout);
  2219. #endif
  2220. if (p_path && strcmp(p_path, "admin/note") == 0) { /** **/
  2221. /* post note */
  2222. xs_str *content = xs_dict_get(p_vars, "content");
  2223. xs_str *in_reply_to = xs_dict_get(p_vars, "in_reply_to");
  2224. xs_str *attach_url = xs_dict_get(p_vars, "attach_url");
  2225. xs_list *attach_file = xs_dict_get(p_vars, "attach");
  2226. xs_str *to = xs_dict_get(p_vars, "to");
  2227. xs_str *sensitive = xs_dict_get(p_vars, "sensitive");
  2228. xs_str *summary = xs_dict_get(p_vars, "summary");
  2229. xs_str *edit_id = xs_dict_get(p_vars, "edit_id");
  2230. xs_str *alt_text = xs_dict_get(p_vars, "alt_text");
  2231. int priv = !xs_is_null(xs_dict_get(p_vars, "mentioned_only"));
  2232. xs *attach_list = xs_list_new();
  2233. /* default alt text */
  2234. if (xs_is_null(alt_text))
  2235. alt_text = "";
  2236. /* is attach_url set? */
  2237. if (!xs_is_null(attach_url) && *attach_url != '\0') {
  2238. xs *l = xs_list_new();
  2239. l = xs_list_append(l, attach_url);
  2240. l = xs_list_append(l, alt_text);
  2241. attach_list = xs_list_append(attach_list, l);
  2242. }
  2243. /* is attach_file set? */
  2244. if (!xs_is_null(attach_file) && xs_type(attach_file) == XSTYPE_LIST) {
  2245. char *fn = xs_list_get(attach_file, 0);
  2246. if (*fn != '\0') {
  2247. char *ext = strrchr(fn, '.');
  2248. xs *hash = xs_md5_hex(fn, strlen(fn));
  2249. xs *id = xs_fmt("%s%s", hash, ext);
  2250. xs *url = xs_fmt("%s/s/%s", snac.actor, id);
  2251. int fo = xs_number_get(xs_list_get(attach_file, 1));
  2252. int fs = xs_number_get(xs_list_get(attach_file, 2));
  2253. /* store */
  2254. static_put(&snac, id, payload + fo, fs);
  2255. xs *l = xs_list_new();
  2256. l = xs_list_append(l, url);
  2257. l = xs_list_append(l, alt_text);
  2258. attach_list = xs_list_append(attach_list, l);
  2259. }
  2260. }
  2261. if (content != NULL) {
  2262. xs *msg = NULL;
  2263. xs *c_msg = NULL;
  2264. xs *content_2 = xs_replace(content, "\r", "");
  2265. xs *poll_opts = NULL;
  2266. /* is there a valid set of poll options? */
  2267. const char *v = xs_dict_get(p_vars, "poll_options");
  2268. if (!xs_is_null(v) && *v) {
  2269. xs *v2 = xs_strip_i(xs_replace(v, "\r", ""));
  2270. poll_opts = xs_split(v2, "\n");
  2271. }
  2272. if (!xs_is_null(poll_opts) && xs_list_len(poll_opts)) {
  2273. /* get the rest of poll configuration */
  2274. const char *p_multiple = xs_dict_get(p_vars, "poll_multiple");
  2275. const char *p_end_secs = xs_dict_get(p_vars, "poll_end_secs");
  2276. int multiple = 0;
  2277. int end_secs = atoi(!xs_is_null(p_end_secs) ? p_end_secs : "60");
  2278. if (!xs_is_null(p_multiple) && strcmp(p_multiple, "on") == 0)
  2279. multiple = 1;
  2280. msg = msg_question(&snac, content_2, attach_list,
  2281. poll_opts, multiple, end_secs);
  2282. enqueue_close_question(&snac, xs_dict_get(msg, "id"), end_secs);
  2283. }
  2284. else
  2285. msg = msg_note(&snac, content_2, to, in_reply_to, attach_list, priv);
  2286. if (sensitive != NULL) {
  2287. msg = xs_dict_set(msg, "sensitive", xs_stock_true);
  2288. msg = xs_dict_set(msg, "summary", xs_is_null(summary) ? "..." : summary);
  2289. }
  2290. if (xs_is_null(edit_id)) {
  2291. /* new message */
  2292. c_msg = msg_create(&snac, msg);
  2293. timeline_add(&snac, xs_dict_get(msg, "id"), msg);
  2294. }
  2295. else {
  2296. /* an edition of a previous message */
  2297. xs *p_msg = NULL;
  2298. if (valid_status(object_get(edit_id, &p_msg))) {
  2299. /* copy relevant fields from previous version */
  2300. char *fields[] = { "id", "context", "url", "published",
  2301. "to", "inReplyTo", NULL };
  2302. int n;
  2303. for (n = 0; fields[n]; n++) {
  2304. char *v = xs_dict_get(p_msg, fields[n]);
  2305. msg = xs_dict_set(msg, fields[n], v);
  2306. }
  2307. /* set the updated field */
  2308. xs *updated = xs_str_utctime(0, ISO_DATE_SPEC);
  2309. msg = xs_dict_set(msg, "updated", updated);
  2310. /* overwrite object, not updating the indexes */
  2311. object_add_ow(edit_id, msg);
  2312. /* update message */
  2313. c_msg = msg_update(&snac, msg);
  2314. }
  2315. else
  2316. snac_log(&snac, xs_fmt("cannot get object '%s' for editing", edit_id));
  2317. }
  2318. if (c_msg != NULL)
  2319. enqueue_message(&snac, c_msg);
  2320. history_del(&snac, "timeline.html_");
  2321. }
  2322. status = 303;
  2323. }
  2324. else
  2325. if (p_path && strcmp(p_path, "admin/action") == 0) { /** **/
  2326. /* action on an entry */
  2327. char *id = xs_dict_get(p_vars, "id");
  2328. char *actor = xs_dict_get(p_vars, "actor");
  2329. char *action = xs_dict_get(p_vars, "action");
  2330. char *group = xs_dict_get(p_vars, "group");
  2331. if (action == NULL)
  2332. return 404;
  2333. snac_debug(&snac, 1, xs_fmt("web action '%s' received", action));
  2334. status = 303;
  2335. if (strcmp(action, L("Like")) == 0) { /** **/
  2336. xs *msg = msg_admiration(&snac, id, "Like");
  2337. if (msg != NULL) {
  2338. enqueue_message(&snac, msg);
  2339. timeline_admire(&snac, xs_dict_get(msg, "object"), snac.actor, 1);
  2340. }
  2341. }
  2342. else
  2343. if (strcmp(action, L("Boost")) == 0) { /** **/
  2344. xs *msg = msg_admiration(&snac, id, "Announce");
  2345. if (msg != NULL) {
  2346. enqueue_message(&snac, msg);
  2347. timeline_admire(&snac, xs_dict_get(msg, "object"), snac.actor, 0);
  2348. }
  2349. }
  2350. else
  2351. if (strcmp(action, L("MUTE")) == 0) { /** **/
  2352. mute(&snac, actor);
  2353. }
  2354. else
  2355. if (strcmp(action, L("Unmute")) == 0) { /** **/
  2356. unmute(&snac, actor);
  2357. }
  2358. else
  2359. if (strcmp(action, L("Hide")) == 0) { /** **/
  2360. hide(&snac, id);
  2361. }
  2362. else
  2363. if (strcmp(action, L("Limit")) == 0) { /** **/
  2364. limit(&snac, actor);
  2365. }
  2366. else
  2367. if (strcmp(action, L("Unlimit")) == 0) { /** **/
  2368. unlimit(&snac, actor);
  2369. }
  2370. else
  2371. if (strcmp(action, L("Follow")) == 0) { /** **/
  2372. xs *msg = msg_follow(&snac, actor);
  2373. if (msg != NULL) {
  2374. /* reload the actor from the message, in may be different */
  2375. actor = xs_dict_get(msg, "object");
  2376. following_add(&snac, actor, msg);
  2377. enqueue_output_by_actor(&snac, msg, actor, 0);
  2378. }
  2379. }
  2380. else
  2381. if (strcmp(action, L("Unfollow")) == 0) { /** **/
  2382. /* get the following object */
  2383. xs *object = NULL;
  2384. if (valid_status(following_get(&snac, actor, &object))) {
  2385. xs *msg = msg_undo(&snac, xs_dict_get(object, "object"));
  2386. following_del(&snac, actor);
  2387. enqueue_output_by_actor(&snac, msg, actor, 0);
  2388. snac_log(&snac, xs_fmt("unfollowed actor %s", actor));
  2389. }
  2390. else
  2391. snac_log(&snac, xs_fmt("actor is not being followed %s", actor));
  2392. }
  2393. else
  2394. if (strcmp(action, L("Follow Group")) == 0) { /** **/
  2395. xs *msg = msg_follow(&snac, group);
  2396. if (msg != NULL) {
  2397. /* reload the group from the message, in may be different */
  2398. group = xs_dict_get(msg, "object");
  2399. following_add(&snac, group, msg);
  2400. enqueue_output_by_actor(&snac, msg, group, 0);
  2401. }
  2402. }
  2403. else
  2404. if (strcmp(action, L("Unfollow Group")) == 0) { /** **/
  2405. /* get the following object */
  2406. xs *object = NULL;
  2407. if (valid_status(following_get(&snac, group, &object))) {
  2408. xs *msg = msg_undo(&snac, xs_dict_get(object, "object"));
  2409. following_del(&snac, group);
  2410. enqueue_output_by_actor(&snac, msg, group, 0);
  2411. snac_log(&snac, xs_fmt("unfollowed group %s", group));
  2412. }
  2413. else
  2414. snac_log(&snac, xs_fmt("actor is not being followed %s", actor));
  2415. }
  2416. else
  2417. if (strcmp(action, L("Delete")) == 0) { /** **/
  2418. char *actor_form = xs_dict_get(p_vars, "actor-form");
  2419. if (actor_form != NULL) {
  2420. /* delete follower */
  2421. if (valid_status(follower_del(&snac, actor)))
  2422. snac_log(&snac, xs_fmt("deleted follower %s", actor));
  2423. else
  2424. snac_log(&snac, xs_fmt("error deleting follower %s", actor));
  2425. }
  2426. else {
  2427. /* delete an entry */
  2428. if (xs_startswith(id, snac.actor)) {
  2429. /* it's a post by us: generate a delete */
  2430. xs *msg = msg_delete(&snac, id);
  2431. enqueue_message(&snac, msg);
  2432. snac_log(&snac, xs_fmt("posted tombstone for %s", id));
  2433. }
  2434. timeline_del(&snac, id);
  2435. snac_log(&snac, xs_fmt("deleted entry %s", id));
  2436. }
  2437. }
  2438. else
  2439. if (strcmp(action, L("Pin")) == 0) { /** **/
  2440. pin(&snac, id);
  2441. timeline_touch(&snac);
  2442. }
  2443. else
  2444. if (strcmp(action, L("Unpin")) == 0) { /** **/
  2445. unpin(&snac, id);
  2446. timeline_touch(&snac);
  2447. }
  2448. else
  2449. status = 404;
  2450. /* delete the cached timeline */
  2451. if (status == 303)
  2452. history_del(&snac, "timeline.html_");
  2453. }
  2454. else
  2455. if (p_path && strcmp(p_path, "admin/user-setup") == 0) { /** **/
  2456. /* change of user data */
  2457. char *v;
  2458. char *p1, *p2;
  2459. if ((v = xs_dict_get(p_vars, "name")) != NULL)
  2460. snac.config = xs_dict_set(snac.config, "name", v);
  2461. if ((v = xs_dict_get(p_vars, "avatar")) != NULL)
  2462. snac.config = xs_dict_set(snac.config, "avatar", v);
  2463. if ((v = xs_dict_get(p_vars, "bio")) != NULL)
  2464. snac.config = xs_dict_set(snac.config, "bio", v);
  2465. if ((v = xs_dict_get(p_vars, "cw")) != NULL &&
  2466. strcmp(v, "on") == 0) {
  2467. snac.config = xs_dict_set(snac.config, "cw", "open");
  2468. } else { /* if the checkbox is not set, the parameter is missing */
  2469. snac.config = xs_dict_set(snac.config, "cw", "");
  2470. }
  2471. if ((v = xs_dict_get(p_vars, "email")) != NULL)
  2472. snac.config = xs_dict_set(snac.config, "email", v);
  2473. if ((v = xs_dict_get(p_vars, "telegram_bot")) != NULL)
  2474. snac.config = xs_dict_set(snac.config, "telegram_bot", v);
  2475. if ((v = xs_dict_get(p_vars, "telegram_chat_id")) != NULL)
  2476. snac.config = xs_dict_set(snac.config, "telegram_chat_id", v);
  2477. if ((v = xs_dict_get(p_vars, "ntfy_server")) != NULL)
  2478. snac.config = xs_dict_set(snac.config, "ntfy_server", v);
  2479. if ((v = xs_dict_get(p_vars, "ntfy_token")) != NULL)
  2480. snac.config = xs_dict_set(snac.config, "ntfy_token", v);
  2481. if ((v = xs_dict_get(p_vars, "purge_days")) != NULL) {
  2482. xs *days = xs_number_new(atof(v));
  2483. snac.config = xs_dict_set(snac.config, "purge_days", days);
  2484. }
  2485. if ((v = xs_dict_get(p_vars, "drop_dm_from_unknown")) != NULL && strcmp(v, "on") == 0)
  2486. snac.config = xs_dict_set(snac.config, "drop_dm_from_unknown", xs_stock_true);
  2487. else
  2488. snac.config = xs_dict_set(snac.config, "drop_dm_from_unknown", xs_stock_false);
  2489. if ((v = xs_dict_get(p_vars, "bot")) != NULL && strcmp(v, "on") == 0)
  2490. snac.config = xs_dict_set(snac.config, "bot", xs_stock_true);
  2491. else
  2492. snac.config = xs_dict_set(snac.config, "bot", xs_stock_false);
  2493. if ((v = xs_dict_get(p_vars, "private")) != NULL && strcmp(v, "on") == 0)
  2494. snac.config = xs_dict_set(snac.config, "private", xs_stock_true);
  2495. else
  2496. snac.config = xs_dict_set(snac.config, "private", xs_stock_false);
  2497. if ((v = xs_dict_get(p_vars, "metadata")) != NULL) {
  2498. /* split the metadata and store it as a dict */
  2499. xs_dict *md = xs_dict_new();
  2500. xs *l = xs_split(v, "\n");
  2501. xs_list *p = l;
  2502. xs_str *kp;
  2503. while (xs_list_iter(&p, &kp)) {
  2504. xs *kpl = xs_split_n(kp, "=", 1);
  2505. if (xs_list_len(kpl) == 2) {
  2506. xs *k2 = xs_strip_i(xs_dup(xs_list_get(kpl, 0)));
  2507. xs *v2 = xs_strip_i(xs_dup(xs_list_get(kpl, 1)));
  2508. md = xs_dict_set(md, k2, v2);
  2509. }
  2510. }
  2511. snac.config = xs_dict_set(snac.config, "metadata", md);
  2512. }
  2513. /* uploads */
  2514. const char *uploads[] = { "avatar", "header", NULL };
  2515. int n;
  2516. for (n = 0; uploads[n]; n++) {
  2517. xs *var_name = xs_fmt("%s_file", uploads[n]);
  2518. xs_list *uploaded_file = xs_dict_get(p_vars, var_name);
  2519. if (xs_type(uploaded_file) == XSTYPE_LIST) {
  2520. const char *fn = xs_list_get(uploaded_file, 0);
  2521. if (fn && *fn) {
  2522. const char *mimetype = xs_mime_by_ext(fn);
  2523. if (xs_startswith(mimetype, "image/")) {
  2524. const char *ext = strrchr(fn, '.');
  2525. xs *hash = xs_md5_hex(fn, strlen(fn));
  2526. xs *id = xs_fmt("%s%s", hash, ext);
  2527. xs *url = xs_fmt("%s/s/%s", snac.actor, id);
  2528. int fo = xs_number_get(xs_list_get(uploaded_file, 1));
  2529. int fs = xs_number_get(xs_list_get(uploaded_file, 2));
  2530. /* store */
  2531. static_put(&snac, id, payload + fo, fs);
  2532. snac.config = xs_dict_set(snac.config, uploads[n], url);
  2533. }
  2534. }
  2535. }
  2536. }
  2537. /* password change? */
  2538. if ((p1 = xs_dict_get(p_vars, "passwd1")) != NULL &&
  2539. (p2 = xs_dict_get(p_vars, "passwd2")) != NULL &&
  2540. *p1 && strcmp(p1, p2) == 0) {
  2541. xs *pw = hash_password(snac.uid, p1, NULL);
  2542. snac.config = xs_dict_set(snac.config, "passwd", pw);
  2543. }
  2544. xs *fn = xs_fmt("%s/user.json", snac.basedir);
  2545. xs *bfn = xs_fmt("%s.bak", fn);
  2546. FILE *f;
  2547. rename(fn, bfn);
  2548. if ((f = fopen(fn, "w")) != NULL) {
  2549. xs_json_dump(snac.config, 4, f);
  2550. fclose(f);
  2551. }
  2552. else
  2553. rename(bfn, fn);
  2554. history_del(&snac, "timeline.html_");
  2555. xs *a_msg = msg_actor(&snac);
  2556. xs *u_msg = msg_update(&snac, a_msg);
  2557. enqueue_message(&snac, u_msg);
  2558. status = 303;
  2559. }
  2560. else
  2561. if (p_path && strcmp(p_path, "admin/clear-notifications") == 0) { /** **/
  2562. notify_clear(&snac);
  2563. timeline_touch(&snac);
  2564. status = 303;
  2565. }
  2566. else
  2567. if (p_path && strcmp(p_path, "admin/vote") == 0) { /** **/
  2568. char *irt = xs_dict_get(p_vars, "irt");
  2569. const char *opt = xs_dict_get(p_vars, "question");
  2570. const char *actor = xs_dict_get(p_vars, "actor");
  2571. xs *ls = NULL;
  2572. /* multiple choices? */
  2573. if (xs_type(opt) == XSTYPE_LIST)
  2574. ls = xs_dup(opt);
  2575. else {
  2576. ls = xs_list_new();
  2577. ls = xs_list_append(ls, opt);
  2578. }
  2579. xs_list *p = ls;
  2580. xs_str *v;
  2581. while (xs_list_iter(&p, &v)) {
  2582. xs *msg = msg_note(&snac, "", actor, irt, NULL, 1);
  2583. /* set the option */
  2584. msg = xs_dict_append(msg, "name", v);
  2585. xs *c_msg = msg_create(&snac, msg);
  2586. enqueue_message(&snac, c_msg);
  2587. timeline_add(&snac, xs_dict_get(msg, "id"), msg);
  2588. }
  2589. status = 303;
  2590. }
  2591. if (status == 303) {
  2592. char *redir = xs_dict_get(p_vars, "redir");
  2593. if (xs_is_null(redir))
  2594. redir = "top";
  2595. *body = xs_fmt("%s/admin#%s", snac.actor, redir);
  2596. *b_size = strlen(*body);
  2597. }
  2598. user_free(&snac);
  2599. return status;
  2600. }