html.c 167 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797
  1. /* snac - A simple, minimalistic ActivityPub instance */
  2. /* copyright (c) 2022 - 2025 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 "xs_curl.h"
  14. #include "xs_unicode.h"
  15. #include "xs_url.h"
  16. #include "snac.h"
  17. int login(snac *user, const xs_dict *headers)
  18. /* tries a login */
  19. {
  20. int logged_in = 0;
  21. const char *auth = xs_dict_get(headers, "authorization");
  22. if (auth && xs_startswith(auth, "Basic ")) {
  23. int sz;
  24. xs *s1 = xs_crop_i(xs_dup(auth), 6, 0);
  25. xs *s2 = xs_base64_dec(s1, &sz);
  26. xs *l1 = xs_split_n(s2, ":", 1);
  27. if (xs_list_len(l1) == 2) {
  28. const char *uid = xs_list_get(l1, 0);
  29. const char *pwd = xs_list_get(l1, 1);
  30. const char *addr = xs_or(xs_dict_get(headers, "remote-addr"),
  31. xs_dict_get(headers, "x-forwarded-for"));
  32. if (badlogin_check(uid, addr)) {
  33. logged_in = check_password(uid, pwd,
  34. xs_dict_get(user->config, "passwd"));
  35. if (!logged_in)
  36. badlogin_inc(uid, addr);
  37. }
  38. }
  39. }
  40. if (logged_in)
  41. lastlog_write(user, "web");
  42. return logged_in;
  43. }
  44. xs_str *replace_shortnames(xs_str *s, const xs_list *tag, int ems, const char *proxy)
  45. /* replaces all the :shortnames: with the emojis in tag */
  46. {
  47. if (!xs_is_null(tag)) {
  48. xs *tag_list = NULL;
  49. if (xs_type(tag) == XSTYPE_DICT) {
  50. /* not a list */
  51. tag_list = xs_list_new();
  52. tag_list = xs_list_append(tag_list, tag);
  53. } else {
  54. /* is a list */
  55. tag_list = xs_dup(tag);
  56. }
  57. xs *style = xs_fmt("height: %dem; width: %dem; vertical-align: middle;", ems, ems);
  58. const xs_dict *v;
  59. int c = 0;
  60. while (xs_list_next(tag_list, &v, &c)) {
  61. const char *t = xs_dict_get(v, "type");
  62. if (t && strcmp(t, "Emoji") == 0) {
  63. const char *n = xs_dict_get(v, "name");
  64. const xs_dict *i = xs_dict_get(v, "icon");
  65. if (xs_is_string(n) && xs_is_dict(i)) {
  66. const char *u = xs_dict_get(i, "url");
  67. const char *mt = xs_dict_get(i, "mediaType");
  68. if (xs_is_string(u) && xs_is_string(mt) && strcmp(mt, "image/svg+xml")) {
  69. xs *url = make_url(u, proxy, 0);
  70. xs_html *img = xs_html_sctag("img",
  71. xs_html_attr("loading", "lazy"),
  72. xs_html_attr("src", url),
  73. xs_html_attr("style", style));
  74. xs *s1 = xs_html_render(img);
  75. s = xs_replace_i(s, n, s1);
  76. }
  77. else
  78. s = xs_replace_i(s, n, "");
  79. }
  80. }
  81. }
  82. }
  83. return s;
  84. }
  85. xs_str *actor_name(xs_dict *actor, const char *proxy)
  86. /* gets the actor name */
  87. {
  88. const char *v;
  89. if (xs_is_null((v = xs_dict_get(actor, "name"))) || *v == '\0') {
  90. if (xs_is_null(v = xs_dict_get(actor, "preferredUsername")) || *v == '\0') {
  91. v = "anonymous";
  92. }
  93. }
  94. return replace_shortnames(xs_html_encode(v), xs_dict_get(actor, "tag"), 1, proxy);
  95. }
  96. xs_html *html_actor_icon(snac *user, xs_dict *actor, const char *date,
  97. const char *udate, const char *url, int priv,
  98. int in_people, const char *proxy, const char *lang,
  99. const char *md5)
  100. {
  101. xs_html *actor_icon = xs_html_tag("p", NULL);
  102. xs *avatar = NULL;
  103. const char *v;
  104. int fwing = 0;
  105. int fwer = 0;
  106. xs *name = actor_name(actor, proxy);
  107. /* get the avatar */
  108. if ((v = xs_dict_get(actor, "icon")) != NULL) {
  109. /* if it's a list (Peertube), get the first one */
  110. if (xs_type(v) == XSTYPE_LIST)
  111. v = xs_list_get(v, 0);
  112. if ((v = xs_dict_get(v, "url")) != NULL)
  113. avatar = make_url(v, proxy, 0);
  114. }
  115. if (avatar == NULL)
  116. avatar = xs_fmt("data:image/png;base64, %s", default_avatar_base64());
  117. const char *actor_id = xs_dict_get(actor, "id");
  118. xs *href = NULL;
  119. if (user) {
  120. fwer = follower_check(user, actor_id);
  121. fwing = following_check(user, actor_id);
  122. }
  123. if (user && !in_people) {
  124. /* if this actor is a follower or being followed, create an
  125. anchored link to the people page instead of the actor url */
  126. if (fwer || fwing) {
  127. xs *md5 = xs_md5_hex(actor_id, strlen(actor_id));
  128. href = xs_fmt("%s/people#%s", user->actor, md5);
  129. }
  130. }
  131. if (href == NULL)
  132. href = xs_dup(actor_id);
  133. xs_html_add(actor_icon,
  134. xs_html_sctag("img",
  135. xs_html_attr("loading", "lazy"),
  136. xs_html_attr("class", "snac-avatar"),
  137. xs_html_attr("src", avatar),
  138. xs_html_attr("alt", "")),
  139. xs_html_tag("a",
  140. xs_html_attr("href", href),
  141. xs_html_attr("class", "p-author h-card snac-author"),
  142. xs_html_raw(name))); /* name is already html-escaped */
  143. if (!xs_is_null(url)) {
  144. xs *md5 = xs_md5_hex(url, strlen(url));
  145. xs_html_add(actor_icon,
  146. xs_html_text(" "),
  147. xs_html_tag("a",
  148. xs_html_attr("href", (char *)url),
  149. xs_html_attr("title", md5),
  150. xs_html_text("»")));
  151. }
  152. if (strcmp(xs_dict_get(actor, "type"), "Service") == 0) {
  153. xs_html_add(actor_icon,
  154. xs_html_text(" "),
  155. xs_html_tag("span",
  156. xs_html_attr("title", "bot"),
  157. xs_html_raw("🤖")));
  158. }
  159. if (fwing && fwer) {
  160. xs_html_add(actor_icon,
  161. xs_html_text(" "),
  162. xs_html_tag("span",
  163. xs_html_attr("title", "mutual relation"),
  164. xs_html_raw("🤝")));
  165. }
  166. if (priv) {
  167. xs_html_add(actor_icon,
  168. xs_html_text(" "),
  169. xs_html_tag("span",
  170. xs_html_attr("title", "private"),
  171. xs_html_raw("🔒")));
  172. }
  173. if (xs_is_null(date)) {
  174. xs_html_add(actor_icon,
  175. xs_html_raw(" "));
  176. }
  177. else {
  178. xs *date_label = xs_crop_i(xs_dup(date), 0, 10);
  179. xs *date_title = xs_dup(date);
  180. if (!xs_is_null(udate)) {
  181. xs *sd = xs_crop_i(xs_dup(udate), 0, 10);
  182. date_label = xs_str_cat(date_label, " / ", sd);
  183. date_title = xs_str_cat(date_title, " / ", udate);
  184. }
  185. if (xs_is_string(lang))
  186. date_title = xs_str_cat(date_title, " (", lang, ")");
  187. xs_html *date_text = xs_html_text(date_label);
  188. if (user && md5) {
  189. xs *lpost_url = xs_fmt("%s/admin/p/%s#%s_entry",
  190. user->actor, md5, md5);
  191. date_text = xs_html_tag("a",
  192. xs_html_attr("href", lpost_url),
  193. xs_html_attr("class", "snac-pubdate"),
  194. date_text);
  195. }
  196. else if (user && url) {
  197. xs *lpost_url = xs_fmt("%s/admin?q=%s",
  198. user->actor, xs_url_enc(url));
  199. date_text = xs_html_tag("a",
  200. xs_html_attr("href", lpost_url),
  201. xs_html_attr("class", "snac-pubdate"),
  202. date_text);
  203. }
  204. xs_html_add(actor_icon,
  205. xs_html_text(" "),
  206. xs_html_tag("time",
  207. xs_html_attr("class", "dt-published snac-pubdate"),
  208. xs_html_attr("title", date_title),
  209. date_text));
  210. }
  211. {
  212. const char *username, *id;
  213. if (xs_is_null(username = xs_dict_get(actor, "preferredUsername")) || *username == '\0') {
  214. /* This should never be reached */
  215. username = "anonymous";
  216. }
  217. if (xs_is_null(id = xs_dict_get(actor, "id")) || *id == '\0') {
  218. /* This should never be reached */
  219. id = "https://social.example.org/anonymous";
  220. }
  221. /* "LIKE AN ANIMAL" */
  222. xs *domain = xs_split(id, "/");
  223. xs *user = xs_fmt("@%s@%s", username, xs_list_get(domain, 2));
  224. xs_html_add(actor_icon,
  225. xs_html_sctag("br", NULL),
  226. xs_html_tag("a",
  227. xs_html_attr("href", xs_dict_get(actor, "id")),
  228. xs_html_attr("class", "p-author-tag h-card snac-author-tag"),
  229. xs_html_text(user)));
  230. }
  231. return actor_icon;
  232. }
  233. xs_html *html_msg_icon(snac *user, const char *actor_id, const xs_dict *msg, const char *proxy, const char *md5)
  234. {
  235. xs *actor = NULL;
  236. xs_html *actor_icon = NULL;
  237. if (actor_id && valid_status(actor_get_refresh(user, actor_id, &actor))) {
  238. const char *date = NULL;
  239. const char *udate = NULL;
  240. const char *url = NULL;
  241. const char *lang = NULL;
  242. int priv = 0;
  243. const char *type = xs_dict_get(msg, "type");
  244. if (xs_match(type, POSTLIKE_OBJECT_TYPE))
  245. url = xs_dict_get(msg, "id");
  246. priv = !is_msg_public(msg);
  247. date = xs_dict_get(msg, "published");
  248. udate = xs_dict_get(msg, "updated");
  249. lang = xs_dict_get(msg, "contentMap");
  250. if (xs_is_dict(lang)) {
  251. const char *v;
  252. int c = 0;
  253. xs_dict_next(lang, &lang, &v, &c);
  254. }
  255. else
  256. lang = NULL;
  257. actor_icon = html_actor_icon(user, actor, date, udate, url, priv, 0, proxy, lang, md5);
  258. }
  259. return actor_icon;
  260. }
  261. xs_html *html_note(snac *user, const char *summary,
  262. const char *div_id, const char *form_id,
  263. const char *ta_plh, const char *ta_content,
  264. const char *edit_id, const char *actor_id,
  265. const xs_val *cw_yn, const char *cw_text,
  266. const xs_val *mnt_only, const char *redir,
  267. const char *in_reply_to, int poll,
  268. const xs_list *att_files, const xs_list *att_alt_texts,
  269. int is_draft)
  270. /* Yes, this is a FUCKTON of arguments and I'm a bit embarrased */
  271. {
  272. xs *action = xs_fmt("%s/admin/note", user->actor);
  273. xs_html *form;
  274. xs_html *note = xs_html_tag("div",
  275. xs_html_tag("details",
  276. xs_html_tag("summary",
  277. xs_html_text(summary)),
  278. xs_html_tag("p", NULL),
  279. xs_html_tag("div",
  280. xs_html_attr("class", "snac-note"),
  281. xs_html_attr("id", div_id),
  282. form = xs_html_tag("form",
  283. xs_html_attr("autocomplete", "off"),
  284. xs_html_attr("method", "post"),
  285. xs_html_attr("action", action),
  286. xs_html_attr("enctype", "multipart/form-data"),
  287. xs_html_attr("id", form_id),
  288. xs_html_tag("textarea",
  289. xs_html_attr("class", "snac-textarea"),
  290. xs_html_attr("name", "content"),
  291. xs_html_attr("rows", "4"),
  292. xs_html_attr("wrap", "virtual"),
  293. xs_html_attr("required", "required"),
  294. xs_html_attr("placeholder", ta_plh),
  295. xs_html_text(ta_content)),
  296. xs_html_tag("p", NULL),
  297. xs_html_text(L("Sensitive content: ")),
  298. xs_html_sctag("input",
  299. xs_html_attr("type", "checkbox"),
  300. xs_html_attr("name", "sensitive"),
  301. xs_html_attr(xs_type(cw_yn) == XSTYPE_TRUE ? "checked" : "", NULL)),
  302. xs_html_sctag("input",
  303. xs_html_attr("type", "text"),
  304. xs_html_attr("name", "summary"),
  305. xs_html_attr("placeholder", L("Sensitive content description")),
  306. xs_html_attr("value", xs_is_null(cw_text) ? "" : cw_text))))));
  307. if (actor_id)
  308. xs_html_add(form,
  309. xs_html_sctag("input",
  310. xs_html_attr("type", "hidden"),
  311. xs_html_attr("name", "to"),
  312. xs_html_attr("value", actor_id)));
  313. else {
  314. /* no actor_id; ask for mentioned_only */
  315. xs_html_add(form,
  316. xs_html_tag("p", NULL),
  317. xs_html_text(L("Only for mentioned people: ")),
  318. xs_html_sctag("input",
  319. xs_html_attr("type", "checkbox"),
  320. xs_html_attr("name", "mentioned_only"),
  321. xs_html_attr(xs_type(mnt_only) == XSTYPE_TRUE ? "checked" : "", NULL)));
  322. }
  323. if (redir)
  324. xs_html_add(form,
  325. xs_html_sctag("input",
  326. xs_html_attr("type", "hidden"),
  327. xs_html_attr("name", "redir"),
  328. xs_html_attr("value", redir)));
  329. if (in_reply_to)
  330. xs_html_add(form,
  331. xs_html_sctag("input",
  332. xs_html_attr("type", "hidden"),
  333. xs_html_attr("name", "in_reply_to"),
  334. xs_html_attr("value", in_reply_to)));
  335. else
  336. xs_html_add(form,
  337. xs_html_tag("p", NULL),
  338. xs_html_text(L("Reply to (URL): ")),
  339. xs_html_sctag("input",
  340. xs_html_attr("type", "url"),
  341. xs_html_attr("name", "in_reply_to"),
  342. xs_html_attr("placeholder", "Optional URL to reply to")));
  343. xs_html_add(form,
  344. xs_html_tag("p", NULL),
  345. xs_html_tag("span",
  346. xs_html_attr("title", L("Don't send, but store as a draft")),
  347. xs_html_text(L("Draft:")),
  348. xs_html_sctag("input",
  349. xs_html_attr("type", "checkbox"),
  350. xs_html_attr("name", "is_draft"),
  351. xs_html_attr(is_draft ? "checked" : "", NULL))));
  352. if (edit_id)
  353. xs_html_add(form,
  354. xs_html_sctag("input",
  355. xs_html_attr("type", "hidden"),
  356. xs_html_attr("name", "edit_id"),
  357. xs_html_attr("value", edit_id)));
  358. /* attachment controls */
  359. xs_html *att;
  360. xs_html_add(form,
  361. xs_html_tag("p", NULL),
  362. att = xs_html_tag("details",
  363. xs_html_tag("summary",
  364. xs_html_text(L("Attachments..."))),
  365. xs_html_tag("p", NULL)));
  366. int max_attachments = xs_number_get(xs_dict_get_def(srv_config, "max_attachments", "4"));
  367. int att_n = 0;
  368. /* fields for the currently existing attachments */
  369. if (xs_is_list(att_files) && xs_is_list(att_alt_texts)) {
  370. while (att_n < max_attachments) {
  371. const char *att_file = xs_list_get(att_files, att_n);
  372. const char *att_alt_text = xs_list_get(att_alt_texts, att_n);
  373. if (!xs_is_string(att_file) || !xs_is_string(att_alt_text))
  374. break;
  375. xs *att_lbl = xs_fmt("attach_url_%d", att_n);
  376. xs *alt_lbl = xs_fmt("alt_text_%d", att_n);
  377. if (att_n)
  378. xs_html_add(att,
  379. xs_html_sctag("br", NULL));
  380. xs_html_add(att,
  381. xs_html_text(L("File:")),
  382. xs_html_sctag("input",
  383. xs_html_attr("type", "text"),
  384. xs_html_attr("name", att_lbl),
  385. xs_html_attr("title", L("Clear this field to delete the attachment")),
  386. xs_html_attr("value", att_file)));
  387. xs_html_add(att,
  388. xs_html_text(" "),
  389. xs_html_sctag("input",
  390. xs_html_attr("type", "text"),
  391. xs_html_attr("name", alt_lbl),
  392. xs_html_attr("value", att_alt_text),
  393. xs_html_attr("placeholder", L("Attachment description"))));
  394. att_n++;
  395. }
  396. }
  397. /* the rest of possible attachments */
  398. while (att_n < max_attachments) {
  399. xs *att_lbl = xs_fmt("attach_%d", att_n);
  400. xs *alt_lbl = xs_fmt("alt_text_%d", att_n);
  401. if (att_n)
  402. xs_html_add(att,
  403. xs_html_sctag("br", NULL));
  404. xs_html_add(att,
  405. xs_html_sctag("input",
  406. xs_html_attr("type", "file"),
  407. xs_html_attr("name", att_lbl)));
  408. xs_html_add(att,
  409. xs_html_text(" "),
  410. xs_html_sctag("input",
  411. xs_html_attr("type", "text"),
  412. xs_html_attr("name", alt_lbl),
  413. xs_html_attr("placeholder", L("Attachment description"))));
  414. att_n++;
  415. }
  416. /* add poll controls */
  417. if (poll) {
  418. xs_html_add(form,
  419. xs_html_tag("p", NULL),
  420. xs_html_tag("details",
  421. xs_html_tag("summary",
  422. xs_html_text(L("Poll..."))),
  423. xs_html_tag("p",
  424. xs_html_text(L("Poll options (one per line, up to 8):")),
  425. xs_html_sctag("br", NULL),
  426. xs_html_tag("textarea",
  427. xs_html_attr("class", "snac-textarea"),
  428. xs_html_attr("name", "poll_options"),
  429. xs_html_attr("rows", "4"),
  430. xs_html_attr("wrap", "virtual"),
  431. xs_html_attr("placeholder", "Option 1...\nOption 2...\nOption 3...\n..."))),
  432. xs_html_tag("select",
  433. xs_html_attr("name", "poll_multiple"),
  434. xs_html_tag("option",
  435. xs_html_attr("value", "off"),
  436. xs_html_text(L("One choice"))),
  437. xs_html_tag("option",
  438. xs_html_attr("value", "on"),
  439. xs_html_text(L("Multiple choices")))),
  440. xs_html_text(" "),
  441. xs_html_tag("select",
  442. xs_html_attr("name", "poll_end_secs"),
  443. xs_html_tag("option",
  444. xs_html_attr("value", "300"),
  445. xs_html_text(L("End in 5 minutes"))),
  446. xs_html_tag("option",
  447. xs_html_attr("value", "3600"),
  448. xs_html_attr("selected", NULL),
  449. xs_html_text(L("End in 1 hour"))),
  450. xs_html_tag("option",
  451. xs_html_attr("value", "86400"),
  452. xs_html_text(L("End in 1 day"))))));
  453. }
  454. xs_html_add(form,
  455. xs_html_tag("p", NULL),
  456. xs_html_sctag("input",
  457. xs_html_attr("type", "submit"),
  458. xs_html_attr("class", "button"),
  459. xs_html_attr("value", L("Post"))),
  460. xs_html_tag("p", NULL));
  461. return note;
  462. }
  463. static xs_html *html_base_head(void)
  464. {
  465. xs_html *head = xs_html_tag("head",
  466. xs_html_sctag("meta",
  467. xs_html_attr("name", "viewport"),
  468. xs_html_attr("content", "width=device-width, initial-scale=1")),
  469. xs_html_sctag("meta",
  470. xs_html_attr("name", "generator"),
  471. xs_html_attr("content", USER_AGENT)));
  472. /* add server CSS and favicon */
  473. xs *f;
  474. f = xs_fmt("%s/favicon.ico", srv_baseurl);
  475. const xs_list *p = xs_dict_get(srv_config, "cssurls");
  476. const char *v;
  477. int c = 0;
  478. while (xs_list_next(p, &v, &c)) {
  479. xs_html_add(head,
  480. xs_html_sctag("link",
  481. xs_html_attr("rel", "stylesheet"),
  482. xs_html_attr("type", "text/css"),
  483. xs_html_attr("href", v)));
  484. }
  485. xs_html_add(head,
  486. xs_html_sctag("link",
  487. xs_html_attr("rel", "icon"),
  488. xs_html_attr("type", "image/x-icon"),
  489. xs_html_attr("href", f)));
  490. return head;
  491. }
  492. xs_html *html_instance_head(void)
  493. {
  494. xs_html *head = html_base_head();
  495. {
  496. FILE *f;
  497. xs *g_css_fn = xs_fmt("%s/style.css", srv_basedir);
  498. if ((f = fopen(g_css_fn, "r")) != NULL) {
  499. xs *css = xs_readall(f);
  500. fclose(f);
  501. xs_html_add(head,
  502. xs_html_tag("style",
  503. xs_html_raw(css)));
  504. }
  505. }
  506. const char *host = xs_dict_get(srv_config, "host");
  507. const char *title = xs_dict_get(srv_config, "title");
  508. xs_html_add(head,
  509. xs_html_tag("title",
  510. xs_html_text(title && *title ? title : host)));
  511. return head;
  512. }
  513. static xs_html *html_instance_body(void)
  514. {
  515. const char *host = xs_dict_get(srv_config, "host");
  516. const char *sdesc = xs_dict_get(srv_config, "short_description");
  517. const char *sdescraw = xs_dict_get(srv_config, "short_description_raw");
  518. const char *email = xs_dict_get(srv_config, "admin_email");
  519. const char *acct = xs_dict_get(srv_config, "admin_account");
  520. /* for L() */
  521. const snac *user = NULL;
  522. xs *blurb = xs_replace(snac_blurb, "%host%", host);
  523. xs_html *dl;
  524. xs_html *body = xs_html_tag("body",
  525. xs_html_tag("div",
  526. xs_html_attr("class", "snac-instance-blurb"),
  527. xs_html_raw(blurb), /* pure html */
  528. dl = xs_html_tag("dl", NULL)));
  529. if (sdesc && *sdesc) {
  530. if (!xs_is_null(sdescraw) && xs_type(sdescraw) == XSTYPE_TRUE) {
  531. xs_html_add(dl,
  532. xs_html_tag("di",
  533. xs_html_tag("dt",
  534. xs_html_text(L("Site description"))),
  535. xs_html_tag("dd",
  536. xs_html_raw(sdesc))));
  537. } else {
  538. xs_html_add(dl,
  539. xs_html_tag("di",
  540. xs_html_tag("dt",
  541. xs_html_text(L("Site description"))),
  542. xs_html_tag("dd",
  543. xs_html_text(sdesc))));
  544. }
  545. }
  546. if (email && *email) {
  547. xs *mailto = xs_fmt("mailto:%s", email);
  548. xs_html_add(dl,
  549. xs_html_tag("di",
  550. xs_html_tag("dt",
  551. xs_html_text(L("Admin email"))),
  552. xs_html_tag("dd",
  553. xs_html_tag("a",
  554. xs_html_attr("href", mailto),
  555. xs_html_text(email)))));
  556. }
  557. if (acct && *acct) {
  558. xs *url = xs_fmt("%s/%s", srv_baseurl, acct);
  559. xs *handle = xs_fmt("@%s@%s", acct, host);
  560. xs_html_add(dl,
  561. xs_html_tag("di",
  562. xs_html_tag("dt",
  563. xs_html_text(L("Admin account"))),
  564. xs_html_tag("dd",
  565. xs_html_tag("a",
  566. xs_html_attr("href", url),
  567. xs_html_text(handle)))));
  568. }
  569. return body;
  570. }
  571. xs_html *html_user_head(snac *user, const char *desc, const char *url)
  572. {
  573. xs_html *head = html_base_head();
  574. /* add the user CSS */
  575. {
  576. xs *css = NULL;
  577. int size;
  578. /* try to open the user css */
  579. if (!valid_status(static_get(user, "style.css", &css, &size, NULL, NULL))) {
  580. /* it's not there; try to open the server-wide css */
  581. FILE *f;
  582. xs *g_css_fn = xs_fmt("%s/style.css", srv_basedir);
  583. if ((f = fopen(g_css_fn, "r")) != NULL) {
  584. css = xs_readall(f);
  585. fclose(f);
  586. }
  587. }
  588. if (css != NULL) {
  589. xs_html_add(head,
  590. xs_html_tag("style",
  591. xs_html_raw(css)));
  592. }
  593. }
  594. /* title */
  595. xs *title = xs_fmt("%s (@%s@%s)", xs_dict_get(user->config, "name"),
  596. user->uid, xs_dict_get(srv_config, "host"));
  597. xs_html_add(head,
  598. xs_html_tag("title",
  599. xs_html_text(title)));
  600. xs *avatar = xs_dup(xs_dict_get(user->config, "avatar"));
  601. if (avatar == NULL || *avatar == '\0') {
  602. xs_free(avatar);
  603. avatar = xs_fmt("%s/susie.png", srv_baseurl);
  604. }
  605. /* create a description field */
  606. xs *s_desc = NULL;
  607. int n;
  608. if (desc == NULL)
  609. s_desc = xs_dup(xs_dict_get(user->config, "bio"));
  610. else
  611. s_desc = xs_dup(desc);
  612. /* show metrics in og:description? */
  613. if (xs_is_true(xs_dict_get(user->config, "show_contact_metrics"))) {
  614. xs *fwers = follower_list(user);
  615. xs *fwing = following_list(user);
  616. xs *s1 = xs_fmt(L("%d following, %d followers"),
  617. xs_list_len(fwing), xs_list_len(fwers));
  618. s1 = xs_str_cat(s1, " · ");
  619. s_desc = xs_str_prepend_i(s_desc, s1);
  620. }
  621. /* shorten desc to a reasonable size */
  622. for (n = 0; s_desc[n]; n++) {
  623. if (n > 512 && (s_desc[n] == ' ' || s_desc[n] == '\n'))
  624. break;
  625. }
  626. s_desc[n] = '\0';
  627. /* og properties */
  628. xs_html_add(head,
  629. xs_html_sctag("meta",
  630. xs_html_attr("property", "og:site_name"),
  631. xs_html_attr("content", xs_dict_get(srv_config, "host"))),
  632. xs_html_sctag("meta",
  633. xs_html_attr("property", "og:title"),
  634. xs_html_attr("content", title)),
  635. xs_html_sctag("meta",
  636. xs_html_attr("property", "og:description"),
  637. xs_html_attr("content", s_desc)),
  638. xs_html_sctag("meta",
  639. xs_html_attr("property", "og:image"),
  640. xs_html_attr("content", avatar)),
  641. xs_html_sctag("meta",
  642. xs_html_attr("property", "og:width"),
  643. xs_html_attr("content", "300")),
  644. xs_html_sctag("meta",
  645. xs_html_attr("property", "og:height"),
  646. xs_html_attr("content", "300")));
  647. /* RSS link */
  648. xs *rss_url = xs_fmt("%s.rss", user->actor);
  649. xs_html_add(head,
  650. xs_html_sctag("link",
  651. xs_html_attr("rel", "alternate"),
  652. xs_html_attr("type", "application/rss+xml"),
  653. xs_html_attr("title", "RSS"),
  654. xs_html_attr("href", rss_url)));
  655. /* ActivityPub alternate link (actor id) */
  656. xs_html_add(head,
  657. xs_html_sctag("link",
  658. xs_html_attr("rel", "alternate"),
  659. xs_html_attr("type", "application/activity+json"),
  660. xs_html_attr("href", url ? url : user->actor)));
  661. return head;
  662. }
  663. static xs_html *html_user_body(snac *user, int read_only)
  664. {
  665. const char *proxy = NULL;
  666. if (user && !read_only && xs_is_true(xs_dict_get(srv_config, "proxy_media")))
  667. proxy = user->actor;
  668. xs_html *body = xs_html_tag("body", NULL);
  669. /* top nav */
  670. xs_html *top_nav = xs_html_tag("nav",
  671. xs_html_attr("class", "snac-top-nav"));
  672. xs *avatar = xs_dup(xs_dict_get(user->config, "avatar"));
  673. if (avatar == NULL || *avatar == '\0') {
  674. xs_free(avatar);
  675. avatar = xs_fmt("data:image/png;base64, %s", default_avatar_base64());
  676. }
  677. xs_html_add(top_nav,
  678. xs_html_sctag("img",
  679. xs_html_attr("src", avatar),
  680. xs_html_attr("class", "snac-avatar"),
  681. xs_html_attr("alt", "")));
  682. if (read_only) {
  683. xs *rss_url = xs_fmt("%s.rss", user->actor);
  684. xs *admin_url = xs_fmt("%s/admin", user->actor);
  685. xs_html_add(top_nav,
  686. xs_html_tag("a",
  687. xs_html_attr("href", rss_url),
  688. xs_html_text(L("RSS"))),
  689. xs_html_text(" - "),
  690. xs_html_tag("a",
  691. xs_html_attr("href", admin_url),
  692. xs_html_attr("rel", "nofollow"),
  693. xs_html_text(L("private"))));
  694. }
  695. else {
  696. int n_len = notify_new_num(user);
  697. xs_html *notify_count = NULL;
  698. /* show the number of new notifications, if there are any */
  699. if (n_len) {
  700. xs *n_len_str = xs_fmt(" %d ", n_len);
  701. notify_count = xs_html_tag("sup",
  702. xs_html_attr("style", "background-color: red; color: white;"),
  703. xs_html_text(n_len_str));
  704. }
  705. else
  706. notify_count = xs_html_text("");
  707. xs *admin_url = xs_fmt("%s/admin", user->actor);
  708. xs *notify_url = xs_fmt("%s/notifications", user->actor);
  709. xs *people_url = xs_fmt("%s/people", user->actor);
  710. xs *instance_url = xs_fmt("%s/instance", user->actor);
  711. xs_html_add(top_nav,
  712. xs_html_tag("a",
  713. xs_html_attr("href", user->actor),
  714. xs_html_text(L("public"))),
  715. xs_html_text(" - "),
  716. xs_html_tag("a",
  717. xs_html_attr("href", admin_url),
  718. xs_html_text(L("private"))),
  719. xs_html_text(" - "),
  720. xs_html_tag("a",
  721. xs_html_attr("href", notify_url),
  722. xs_html_text(L("notifications"))),
  723. notify_count,
  724. xs_html_text(" - "),
  725. xs_html_tag("a",
  726. xs_html_attr("href", people_url),
  727. xs_html_text(L("people"))),
  728. xs_html_text(" - "),
  729. xs_html_tag("a",
  730. xs_html_attr("href", instance_url),
  731. xs_html_text(L("instance"))),
  732. xs_html_text(" "),
  733. xs_html_tag("form",
  734. xs_html_attr("style", "display: inline!important"),
  735. xs_html_attr("class", "snac-search-box"),
  736. xs_html_attr("action", admin_url),
  737. xs_html_sctag("input",
  738. xs_html_attr("type", "text"),
  739. xs_html_attr("name", "q"),
  740. xs_html_attr("title", L("Search posts by URL or content (regular expression), @user@host accounts, or #tag")),
  741. xs_html_attr("placeholder", L("Content search")))));
  742. }
  743. xs_html_add(body,
  744. top_nav);
  745. /* user info */
  746. xs_html *top_user = xs_html_tag("div",
  747. xs_html_attr("class", "h-card snac-top-user"));
  748. if (read_only) {
  749. const char *header = xs_dict_get(user->config, "header");
  750. if (header && *header) {
  751. xs_html_add(top_user,
  752. xs_html_tag("div",
  753. xs_html_attr("class", "snac-top-user-banner"),
  754. xs_html_attr("style", "clear: both"),
  755. xs_html_sctag("br", NULL),
  756. xs_html_sctag("img",
  757. xs_html_attr("src", header))));
  758. }
  759. }
  760. xs *handle = xs_fmt("@%s@%s",
  761. xs_dict_get(user->config, "uid"),
  762. xs_dict_get(srv_config, "host"));
  763. xs_html_add(top_user,
  764. xs_html_tag("p",
  765. xs_html_attr("class", "p-name snac-top-user-name"),
  766. xs_html_text(xs_dict_get(user->config, "name"))),
  767. xs_html_tag("p",
  768. xs_html_attr("class", "snac-top-user-id"),
  769. xs_html_text(handle)));
  770. /** instance announcement **/
  771. if (!read_only) {
  772. double la = 0.0;
  773. xs *user_la = xs_dup(xs_dict_get(user->config, "last_announcement"));
  774. if (user_la != NULL)
  775. la = xs_number_get(user_la);
  776. const t_announcement *an = announcement(la);
  777. if (an != NULL && (an->text != NULL)) {
  778. xs *s = xs_fmt("?da=%.0f", an->timestamp);
  779. xs_html_add(top_user, xs_html_tag("div",
  780. xs_html_attr("class", "snac-announcement"),
  781. xs_html_text(an->text),
  782. xs_html_text(" "),
  783. xs_html_tag("a",
  784. xs_html_attr("href", s),
  785. xs_html_text("Dismiss"))));
  786. }
  787. }
  788. if (read_only) {
  789. xs *tags = xs_list_new();
  790. xs *bio1 = not_really_markdown(xs_dict_get(user->config, "bio"), NULL, &tags);
  791. xs *bio2 = process_tags(user, bio1, &tags);
  792. xs *bio3 = sanitize(bio2);
  793. bio3 = replace_shortnames(bio3, tags, 2, proxy);
  794. xs_html *top_user_bio = xs_html_tag("div",
  795. xs_html_attr("class", "p-note snac-top-user-bio"),
  796. xs_html_raw(bio3)); /* already sanitized */
  797. xs_html_add(top_user,
  798. top_user_bio);
  799. xs *metadata = NULL;
  800. const xs_dict *md = xs_dict_get(user->config, "metadata");
  801. if (xs_type(md) == XSTYPE_DICT)
  802. metadata = xs_dup(md);
  803. else
  804. if (xs_type(md) == XSTYPE_STRING) {
  805. /* convert to dict for easier iteration */
  806. metadata = xs_dict_new();
  807. xs *l = xs_split(md, "\n");
  808. const char *ll;
  809. xs_list_foreach(l, ll) {
  810. xs *kv = xs_split_n(ll, "=", 1);
  811. const char *k = xs_list_get(kv, 0);
  812. const char *v = xs_list_get(kv, 1);
  813. if (k && v) {
  814. xs *kk = xs_strip_i(xs_dup(k));
  815. xs *vv = xs_strip_i(xs_dup(v));
  816. metadata = xs_dict_set(metadata, kk, vv);
  817. }
  818. }
  819. }
  820. if (xs_type(metadata) == XSTYPE_DICT) {
  821. const xs_str *k;
  822. const xs_str *v;
  823. xs_dict *val_links = user->links;
  824. if (xs_is_null(val_links))
  825. val_links = xs_stock(XSTYPE_DICT);
  826. xs_html *snac_metadata = xs_html_tag("div",
  827. xs_html_attr("class", "snac-metadata"));
  828. int c = 0;
  829. while (xs_dict_next(metadata, &k, &v, &c)) {
  830. xs_html *value;
  831. if (xs_startswith(v, "https:/") || xs_startswith(v, "http:/")) {
  832. /* is this link validated? */
  833. xs *verified_link = NULL;
  834. const xs_number *val_time = xs_dict_get(val_links, v);
  835. if (xs_type(val_time) == XSTYPE_NUMBER) {
  836. time_t t = xs_number_get(val_time);
  837. if (t > 0) {
  838. xs *s1 = xs_str_utctime(t, ISO_DATE_SPEC);
  839. verified_link = xs_fmt("%s (%s)", L("verified link"), s1);
  840. }
  841. }
  842. if (!xs_is_null(verified_link)) {
  843. value = xs_html_tag("span",
  844. xs_html_attr("title", verified_link),
  845. xs_html_raw("&#10004; "),
  846. xs_html_tag("a",
  847. xs_html_attr("rel", "me"),
  848. xs_html_attr("target", "_blank"),
  849. xs_html_attr("href", v),
  850. xs_html_text(v)));
  851. }
  852. else {
  853. value = xs_html_tag("a",
  854. xs_html_attr("rel", "me"),
  855. xs_html_attr("href", v),
  856. xs_html_text(v));
  857. }
  858. }
  859. else
  860. if (xs_startswith(v, "gemini:/") || xs_startswith(v, "xmpp:")) {
  861. value = xs_html_tag("a",
  862. xs_html_attr("rel", "me"),
  863. xs_html_attr("href", v),
  864. xs_html_text(v));
  865. }
  866. else
  867. value = xs_html_text(v);
  868. xs_html_add(snac_metadata,
  869. xs_html_tag("span",
  870. xs_html_attr("class", "snac-property-name"),
  871. xs_html_text(k)),
  872. xs_html_text(":"),
  873. xs_html_raw("&nbsp;"),
  874. xs_html_tag("span",
  875. xs_html_attr("class", "snac-property-value"),
  876. value),
  877. xs_html_sctag("br", NULL));
  878. }
  879. xs_html_add(top_user,
  880. snac_metadata);
  881. }
  882. const char *latitude = xs_dict_get_def(user->config, "latitude", "");
  883. const char *longitude = xs_dict_get_def(user->config, "longitude", "");
  884. if (*latitude && *longitude) {
  885. xs *label = xs_fmt("%s,%s", latitude, longitude);
  886. xs *url = xs_fmt("https://openstreetmap.org/search?query=%s,%s",
  887. latitude, longitude);
  888. xs_html_add(top_user,
  889. xs_html_tag("p",
  890. xs_html_text(L("Location: ")),
  891. xs_html_tag("a",
  892. xs_html_attr("href", url),
  893. xs_html_attr("target", "_blank"),
  894. xs_html_text(label))));
  895. }
  896. if (xs_is_true(xs_dict_get(user->config, "show_contact_metrics"))) {
  897. xs *fwers = follower_list(user);
  898. xs *fwing = following_list(user);
  899. xs *s1 = xs_fmt(L("%d following, %d followers"),
  900. xs_list_len(fwing), xs_list_len(fwers));
  901. xs_html_add(top_user,
  902. xs_html_tag("p",
  903. xs_html_text(s1)));
  904. }
  905. }
  906. xs_html_add(body,
  907. top_user);
  908. return body;
  909. }
  910. xs_html *html_top_controls(snac *user)
  911. /* generates the top controls */
  912. {
  913. xs *ops_action = xs_fmt("%s/admin/action", user->actor);
  914. xs_html *top_controls = xs_html_tag("div",
  915. xs_html_attr("class", "snac-top-controls"),
  916. /** new post **/
  917. html_note(user, L("New Post..."),
  918. "new_post_div", "new_post_form",
  919. L("What's on your mind?"), "",
  920. NULL, NULL,
  921. xs_stock(XSTYPE_FALSE), "",
  922. xs_stock(XSTYPE_FALSE), NULL,
  923. NULL, 1, NULL, NULL, 0),
  924. /** operations **/
  925. xs_html_tag("details",
  926. xs_html_tag("summary",
  927. xs_html_text(L("Operations..."))),
  928. xs_html_tag("p", NULL),
  929. xs_html_tag("form",
  930. xs_html_attr("autocomplete", "off"),
  931. xs_html_attr("method", "post"),
  932. xs_html_attr("action", ops_action),
  933. xs_html_sctag("input",
  934. xs_html_attr("type", "text"),
  935. xs_html_attr("name", "actor"),
  936. xs_html_attr("required", "required"),
  937. xs_html_attr("placeholder", "bob@example.com")),
  938. xs_html_text(" "),
  939. xs_html_sctag("input",
  940. xs_html_attr("type", "submit"),
  941. xs_html_attr("name", "action"),
  942. xs_html_attr("value", L("Follow"))),
  943. xs_html_text(" "),
  944. xs_html_text(L("(by URL or user@host)"))),
  945. xs_html_tag("p", NULL),
  946. xs_html_tag("form",
  947. xs_html_attr("autocomplete", "off"),
  948. xs_html_attr("method", "post"),
  949. xs_html_attr("action", ops_action),
  950. xs_html_sctag("input",
  951. xs_html_attr("type", "url"),
  952. xs_html_attr("name", "id"),
  953. xs_html_attr("required", "required"),
  954. xs_html_attr("placeholder", "https:/" "/fedi.example.com/bob/...")),
  955. xs_html_text(" "),
  956. xs_html_sctag("input",
  957. xs_html_attr("type", "submit"),
  958. xs_html_attr("name", "action"),
  959. xs_html_attr("value", L("Boost"))),
  960. xs_html_text(" "),
  961. xs_html_text(L("(by URL)"))),
  962. xs_html_tag("p", NULL),
  963. xs_html_tag("form",
  964. xs_html_attr("autocomplete", "off"),
  965. xs_html_attr("method", "post"),
  966. xs_html_attr("action", ops_action),
  967. xs_html_sctag("input",
  968. xs_html_attr("type", "text"),
  969. xs_html_attr("name", "id"),
  970. xs_html_attr("required", "required"),
  971. xs_html_attr("placeholder", "https:/" "/fedi.example.com/bob/...")),
  972. xs_html_text(" "),
  973. xs_html_sctag("input",
  974. xs_html_attr("type", "submit"),
  975. xs_html_attr("name", "action"),
  976. xs_html_attr("value", L("Like"))),
  977. xs_html_text(" "),
  978. xs_html_text(L("(by URL)"))),
  979. xs_html_tag("p", NULL)));
  980. /** user settings **/
  981. const char *email = "[disabled by admin]";
  982. if (xs_type(xs_dict_get(srv_config, "disable_email_notifications")) != XSTYPE_TRUE) {
  983. email = xs_dict_get(user->config_o, "email");
  984. if (xs_is_null(email)) {
  985. email = xs_dict_get(user->config, "email");
  986. if (xs_is_null(email))
  987. email = "";
  988. }
  989. }
  990. const char *cw = xs_dict_get(user->config, "cw");
  991. if (xs_is_null(cw))
  992. cw = "";
  993. const char *telegram_bot = xs_dict_get(user->config, "telegram_bot");
  994. if (xs_is_null(telegram_bot))
  995. telegram_bot = "";
  996. const char *telegram_chat_id = xs_dict_get(user->config, "telegram_chat_id");
  997. if (xs_is_null(telegram_chat_id))
  998. telegram_chat_id = "";
  999. const char *ntfy_server = xs_dict_get(user->config, "ntfy_server");
  1000. if (xs_is_null(ntfy_server))
  1001. ntfy_server = "";
  1002. const char *ntfy_token = xs_dict_get(user->config, "ntfy_token");
  1003. if (xs_is_null(ntfy_token))
  1004. ntfy_token = "";
  1005. const char *purge_days = xs_dict_get(user->config, "purge_days");
  1006. if (!xs_is_null(purge_days) && xs_type(purge_days) == XSTYPE_NUMBER)
  1007. purge_days = (char *)xs_number_str(purge_days);
  1008. else
  1009. purge_days = "0";
  1010. const xs_val *d_dm_f_u = xs_dict_get(user->config, "drop_dm_from_unknown");
  1011. const xs_val *bot = xs_dict_get(user->config, "bot");
  1012. const xs_val *a_private = xs_dict_get(user->config, "private");
  1013. const xs_val *auto_boost = xs_dict_get(user->config, "auto_boost");
  1014. const xs_val *coll_thrds = xs_dict_get(user->config, "collapse_threads");
  1015. const xs_val *pending = xs_dict_get(user->config, "approve_followers");
  1016. const xs_val *show_foll = xs_dict_get(user->config, "show_contact_metrics");
  1017. const char *latitude = xs_dict_get_def(user->config, "latitude", "");
  1018. const char *longitude = xs_dict_get_def(user->config, "longitude", "");
  1019. xs *metadata = NULL;
  1020. const xs_dict *md = xs_dict_get(user->config, "metadata");
  1021. if (xs_type(md) == XSTYPE_DICT) {
  1022. const xs_str *k;
  1023. const xs_str *v;
  1024. metadata = xs_str_new(NULL);
  1025. xs_dict_foreach(md, k, v) {
  1026. xs *kp = xs_fmt("%s=%s", k, v);
  1027. if (*metadata)
  1028. metadata = xs_str_cat(metadata, "\n");
  1029. metadata = xs_str_cat(metadata, kp);
  1030. }
  1031. }
  1032. else
  1033. if (xs_type(md) == XSTYPE_STRING)
  1034. metadata = xs_dup(md);
  1035. else
  1036. metadata = xs_str_new(NULL);
  1037. /* ui language */
  1038. xs_html *lang_select = xs_html_tag("select",
  1039. xs_html_attr("name", "web_ui_lang"));
  1040. const char *u_lang = xs_dict_get_def(user->config, "lang", "en");
  1041. const char *lang;
  1042. const xs_dict *langs;
  1043. xs_dict_foreach(srv_langs, lang, langs) {
  1044. if (strcmp(u_lang, lang) == 0)
  1045. xs_html_add(lang_select,
  1046. xs_html_tag("option",
  1047. xs_html_text(lang),
  1048. xs_html_attr("value", lang),
  1049. xs_html_attr("selected", "selected")));
  1050. else
  1051. xs_html_add(lang_select,
  1052. xs_html_tag("option",
  1053. xs_html_text(lang),
  1054. xs_html_attr("value", lang)));
  1055. }
  1056. xs *user_setup_action = xs_fmt("%s/admin/user-setup", user->actor);
  1057. xs_html_add(top_controls,
  1058. xs_html_tag("details",
  1059. xs_html_tag("summary",
  1060. xs_html_text(L("User Settings..."))),
  1061. xs_html_tag("div",
  1062. xs_html_attr("class", "snac-user-setup"),
  1063. xs_html_tag("form",
  1064. xs_html_attr("autocomplete", "off"),
  1065. xs_html_attr("method", "post"),
  1066. xs_html_attr("action", user_setup_action),
  1067. xs_html_attr("enctype", "multipart/form-data"),
  1068. xs_html_tag("p",
  1069. xs_html_text(L("Display name:")),
  1070. xs_html_sctag("br", NULL),
  1071. xs_html_sctag("input",
  1072. xs_html_attr("type", "text"),
  1073. xs_html_attr("name", "name"),
  1074. xs_html_attr("value", xs_dict_get(user->config, "name")),
  1075. xs_html_attr("placeholder", L("Your name")))),
  1076. xs_html_tag("p",
  1077. xs_html_text(L("Avatar: ")),
  1078. xs_html_sctag("input",
  1079. xs_html_attr("type", "file"),
  1080. xs_html_attr("name", "avatar_file"))),
  1081. xs_html_tag("p",
  1082. xs_html_sctag("input",
  1083. xs_html_attr("type", "checkbox"),
  1084. xs_html_attr("name", "avatar_delete")),
  1085. xs_html_text(L("Delete current avatar"))),
  1086. xs_html_tag("p",
  1087. xs_html_text(L("Header image (banner): ")),
  1088. xs_html_sctag("input",
  1089. xs_html_attr("type", "file"),
  1090. xs_html_attr("name", "header_file"))),
  1091. xs_html_tag("p",
  1092. xs_html_sctag("input",
  1093. xs_html_attr("type", "checkbox"),
  1094. xs_html_attr("name", "header_delete")),
  1095. xs_html_text(L("Delete current header image"))),
  1096. xs_html_tag("p",
  1097. xs_html_text(L("Bio:")),
  1098. xs_html_sctag("br", NULL),
  1099. xs_html_tag("textarea",
  1100. xs_html_attr("name", "bio"),
  1101. xs_html_attr("cols", "40"),
  1102. xs_html_attr("rows", "4"),
  1103. xs_html_attr("placeholder", L("Write about yourself here...")),
  1104. xs_html_text(xs_dict_get(user->config, "bio")))),
  1105. xs_html_sctag("input",
  1106. xs_html_attr("type", "checkbox"),
  1107. xs_html_attr("name", "cw"),
  1108. xs_html_attr("id", "cw"),
  1109. xs_html_attr(strcmp(cw, "open") == 0 ? "checked" : "", NULL)),
  1110. xs_html_tag("label",
  1111. xs_html_attr("for", "cw"),
  1112. xs_html_text(L("Always show sensitive content"))),
  1113. xs_html_tag("p",
  1114. xs_html_text(L("Email address for notifications:")),
  1115. xs_html_sctag("br", NULL),
  1116. xs_html_sctag("input",
  1117. xs_html_attr("type", "text"),
  1118. xs_html_attr("name", "email"),
  1119. xs_html_attr("value", email),
  1120. xs_html_attr("placeholder", "bob@example.com"))),
  1121. xs_html_tag("p",
  1122. xs_html_text(L("Telegram notifications (bot key and chat id):")),
  1123. xs_html_sctag("br", NULL),
  1124. xs_html_sctag("input",
  1125. xs_html_attr("type", "text"),
  1126. xs_html_attr("name", "telegram_bot"),
  1127. xs_html_attr("value", telegram_bot),
  1128. xs_html_attr("placeholder", "Bot API key")),
  1129. xs_html_text(" "),
  1130. xs_html_sctag("input",
  1131. xs_html_attr("type", "text"),
  1132. xs_html_attr("name", "telegram_chat_id"),
  1133. xs_html_attr("value", telegram_chat_id),
  1134. xs_html_attr("placeholder", "Chat id"))),
  1135. xs_html_tag("p",
  1136. xs_html_text(L("ntfy notifications (ntfy server and token):")),
  1137. xs_html_sctag("br", NULL),
  1138. xs_html_sctag("input",
  1139. xs_html_attr("type", "text"),
  1140. xs_html_attr("name", "ntfy_server"),
  1141. xs_html_attr("value", ntfy_server),
  1142. xs_html_attr("placeholder", "ntfy server - full URL (example: https://ntfy.sh/YourTopic)")),
  1143. xs_html_text(" "),
  1144. xs_html_sctag("input",
  1145. xs_html_attr("type", "text"),
  1146. xs_html_attr("name", "ntfy_token"),
  1147. xs_html_attr("value", ntfy_token),
  1148. xs_html_attr("placeholder", "ntfy token - if needed"))),
  1149. xs_html_tag("p",
  1150. xs_html_text(L("Maximum days to keep posts (0: server settings):")),
  1151. xs_html_sctag("br", NULL),
  1152. xs_html_sctag("input",
  1153. xs_html_attr("type", "number"),
  1154. xs_html_attr("name", "purge_days"),
  1155. xs_html_attr("value", purge_days))),
  1156. xs_html_tag("p",
  1157. xs_html_sctag("input",
  1158. xs_html_attr("type", "checkbox"),
  1159. xs_html_attr("name", "drop_dm_from_unknown"),
  1160. xs_html_attr("id", "drop_dm_from_unknown"),
  1161. xs_html_attr(xs_type(d_dm_f_u) == XSTYPE_TRUE ? "checked" : "", NULL)),
  1162. xs_html_tag("label",
  1163. xs_html_attr("for", "drop_dm_from_unknown"),
  1164. xs_html_text(L("Drop direct messages from people you don't follow")))),
  1165. xs_html_tag("p",
  1166. xs_html_sctag("input",
  1167. xs_html_attr("type", "checkbox"),
  1168. xs_html_attr("name", "bot"),
  1169. xs_html_attr("id", "bot"),
  1170. xs_html_attr(xs_type(bot) == XSTYPE_TRUE ? "checked" : "", NULL)),
  1171. xs_html_tag("label",
  1172. xs_html_attr("for", "bot"),
  1173. xs_html_text(L("This account is a bot")))),
  1174. xs_html_tag("p",
  1175. xs_html_sctag("input",
  1176. xs_html_attr("type", "checkbox"),
  1177. xs_html_attr("name", "auto_boost"),
  1178. xs_html_attr("id", "auto_boost"),
  1179. xs_html_attr(xs_is_true(auto_boost) ? "checked" : "", NULL)),
  1180. xs_html_tag("label",
  1181. xs_html_attr("for", "auto_boost"),
  1182. xs_html_text(L("Auto-boost all mentions to this account")))),
  1183. xs_html_tag("p",
  1184. xs_html_sctag("input",
  1185. xs_html_attr("type", "checkbox"),
  1186. xs_html_attr("name", "private"),
  1187. xs_html_attr("id", "private"),
  1188. xs_html_attr(xs_type(a_private) == XSTYPE_TRUE ? "checked" : "", NULL)),
  1189. xs_html_tag("label",
  1190. xs_html_attr("for", "private"),
  1191. xs_html_text(L("This account is private "
  1192. "(posts are not shown through the web)")))),
  1193. xs_html_tag("p",
  1194. xs_html_sctag("input",
  1195. xs_html_attr("type", "checkbox"),
  1196. xs_html_attr("name", "collapse_threads"),
  1197. xs_html_attr("id", "collapse_threads"),
  1198. xs_html_attr(xs_is_true(coll_thrds) ? "checked" : "", NULL)),
  1199. xs_html_tag("label",
  1200. xs_html_attr("for", "collapse_threads"),
  1201. xs_html_text(L("Collapse top threads by default")))),
  1202. xs_html_tag("p",
  1203. xs_html_sctag("input",
  1204. xs_html_attr("type", "checkbox"),
  1205. xs_html_attr("name", "approve_followers"),
  1206. xs_html_attr("id", "approve_followers"),
  1207. xs_html_attr(xs_is_true(pending) ? "checked" : "", NULL)),
  1208. xs_html_tag("label",
  1209. xs_html_attr("for", "approve_followers"),
  1210. xs_html_text(L("Follow requests must be approved")))),
  1211. xs_html_tag("p",
  1212. xs_html_sctag("input",
  1213. xs_html_attr("type", "checkbox"),
  1214. xs_html_attr("name", "show_contact_metrics"),
  1215. xs_html_attr("id", "show_contact_metrics"),
  1216. xs_html_attr(xs_is_true(show_foll) ? "checked" : "", NULL)),
  1217. xs_html_tag("label",
  1218. xs_html_attr("for", "show_contact_metrics"),
  1219. xs_html_text(L("Publish follower and following metrics")))),
  1220. xs_html_tag("p",
  1221. xs_html_text(L("Current location:")),
  1222. xs_html_sctag("br", NULL),
  1223. xs_html_sctag("input",
  1224. xs_html_attr("type", "text"),
  1225. xs_html_attr("name", "latitude"),
  1226. xs_html_attr("value", latitude),
  1227. xs_html_attr("placeholder", "latitude")),
  1228. xs_html_text(" "),
  1229. xs_html_sctag("input",
  1230. xs_html_attr("type", "text"),
  1231. xs_html_attr("name", "longitude"),
  1232. xs_html_attr("value", longitude),
  1233. xs_html_attr("placeholder", "longitude"))),
  1234. xs_html_tag("p",
  1235. xs_html_text(L("Profile metadata (key=value pairs in each line):")),
  1236. xs_html_sctag("br", NULL),
  1237. xs_html_tag("textarea",
  1238. xs_html_attr("name", "metadata"),
  1239. xs_html_attr("cols", "40"),
  1240. xs_html_attr("rows", "4"),
  1241. xs_html_attr("placeholder", "Blog=https:/"
  1242. "/example.com/my-blog\nGPG Key=1FA54\n..."),
  1243. xs_html_text(metadata))),
  1244. xs_html_tag("p",
  1245. xs_html_text(L("Web interface language:")),
  1246. xs_html_sctag("br", NULL),
  1247. lang_select),
  1248. xs_html_tag("p",
  1249. xs_html_text(L("New password:")),
  1250. xs_html_sctag("br", NULL),
  1251. xs_html_sctag("input",
  1252. xs_html_attr("type", "password"),
  1253. xs_html_attr("name", "passwd1"),
  1254. xs_html_attr("value", ""))),
  1255. xs_html_tag("p",
  1256. xs_html_text(L("Repeat new password:")),
  1257. xs_html_sctag("br", NULL),
  1258. xs_html_sctag("input",
  1259. xs_html_attr("type", "password"),
  1260. xs_html_attr("name", "passwd2"),
  1261. xs_html_attr("value", ""))),
  1262. xs_html_sctag("input",
  1263. xs_html_attr("type", "submit"),
  1264. xs_html_attr("class", "button"),
  1265. xs_html_attr("value", L("Update user info"))),
  1266. xs_html_tag("p", NULL)))));
  1267. xs *followed_hashtags_action = xs_fmt("%s/admin/followed-hashtags", user->actor);
  1268. xs *followed_hashtags = xs_join(xs_dict_get_def(user->config,
  1269. "followed_hashtags", xs_stock(XSTYPE_LIST)), "\n");
  1270. xs_html_add(top_controls,
  1271. xs_html_tag("details",
  1272. xs_html_tag("summary",
  1273. xs_html_text(L("Followed hashtags..."))),
  1274. xs_html_tag("p",
  1275. xs_html_text(L("One hashtag per line"))),
  1276. xs_html_tag("div",
  1277. xs_html_attr("class", "snac-followed-hashtags"),
  1278. xs_html_tag("form",
  1279. xs_html_attr("autocomplete", "off"),
  1280. xs_html_attr("method", "post"),
  1281. xs_html_attr("action", followed_hashtags_action),
  1282. xs_html_attr("enctype", "multipart/form-data"),
  1283. xs_html_tag("textarea",
  1284. xs_html_attr("name", "followed_hashtags"),
  1285. xs_html_attr("cols", "40"),
  1286. xs_html_attr("rows", "4"),
  1287. xs_html_attr("placeholder", "#cats\n#windowfriday\n#classicalmusic"),
  1288. xs_html_text(followed_hashtags)),
  1289. xs_html_tag("br", NULL),
  1290. xs_html_sctag("input",
  1291. xs_html_attr("type", "submit"),
  1292. xs_html_attr("class", "button"),
  1293. xs_html_attr("value", L("Update hashtags")))))));
  1294. return top_controls;
  1295. }
  1296. static xs_html *html_button(const char *clss, const char *label, const char *hint)
  1297. {
  1298. xs *c = xs_fmt("snac-btn-%s", clss);
  1299. /* use an NULL tag to separate non-css-classed buttons from one another */
  1300. return xs_html_container(
  1301. xs_html_sctag("input",
  1302. xs_html_attr("type", "submit"),
  1303. xs_html_attr("name", "action"),
  1304. xs_html_attr("class", c),
  1305. xs_html_attr("value", label),
  1306. xs_html_attr("title", hint)),
  1307. xs_html_text("\n"));
  1308. }
  1309. xs_str *build_mentions(snac *user, const xs_dict *msg)
  1310. /* returns a string with the mentions in msg */
  1311. {
  1312. xs_str *s = xs_str_new(NULL);
  1313. const char *list = xs_dict_get(msg, "tag");
  1314. const char *v;
  1315. int c = 0;
  1316. while (xs_list_next(list, &v, &c)) {
  1317. const char *type = xs_dict_get(v, "type");
  1318. const char *href = xs_dict_get(v, "href");
  1319. const char *name = xs_dict_get(v, "name");
  1320. if (type && strcmp(type, "Mention") == 0 &&
  1321. href && strcmp(href, user->actor) != 0 && name) {
  1322. xs *s1 = NULL;
  1323. if (name[0] != '@') {
  1324. s1 = xs_fmt("@%s", name);
  1325. name = s1;
  1326. }
  1327. xs *l = xs_split(name, "@");
  1328. /* is it a name without a host? */
  1329. if (xs_list_len(l) < 3) {
  1330. /* split the href and pick the host name LIKE AN ANIMAL */
  1331. /* would be better to query the webfinger but *won't do that* here */
  1332. xs *l2 = xs_split(href, "/");
  1333. if (xs_list_len(l2) >= 3) {
  1334. xs *s1 = xs_fmt("%s@%s ", name, xs_list_get(l2, 2));
  1335. if (xs_str_in(s, s1) == -1)
  1336. s = xs_str_cat(s, s1);
  1337. }
  1338. }
  1339. else {
  1340. if (xs_str_in(s, name) == -1) {
  1341. s = xs_str_cat(s, name);
  1342. s = xs_str_cat(s, " ");
  1343. }
  1344. }
  1345. }
  1346. }
  1347. if (*s) {
  1348. xs *s1 = s;
  1349. s = xs_fmt("\n\n\nCC: %s", s1);
  1350. }
  1351. return s;
  1352. }
  1353. xs_html *html_entry_controls(snac *user, const char *actor,
  1354. const xs_dict *msg, const char *md5)
  1355. {
  1356. const char *id = xs_dict_get(msg, "id");
  1357. const char *group = xs_dict_get(msg, "audience");
  1358. xs *likes = object_likes(id);
  1359. xs *boosts = object_announces(id);
  1360. xs *action = xs_fmt("%s/admin/action", user->actor);
  1361. xs *redir = xs_fmt("%s_entry", md5);
  1362. xs_html *form;
  1363. xs_html *controls = xs_html_tag("div",
  1364. xs_html_attr("class", "snac-controls"),
  1365. form = xs_html_tag("form",
  1366. xs_html_attr("autocomplete", "off"),
  1367. xs_html_attr("method", "post"),
  1368. xs_html_attr("action", action),
  1369. xs_html_sctag("input",
  1370. xs_html_attr("type", "hidden"),
  1371. xs_html_attr("name", "id"),
  1372. xs_html_attr("value", id)),
  1373. xs_html_sctag("input",
  1374. xs_html_attr("type", "hidden"),
  1375. xs_html_attr("name", "actor"),
  1376. xs_html_attr("value", actor)),
  1377. xs_html_sctag("input",
  1378. xs_html_attr("type", "hidden"),
  1379. xs_html_attr("name", "group"),
  1380. xs_html_attr("value", xs_is_null(group) ? "" : group)),
  1381. xs_html_sctag("input",
  1382. xs_html_attr("type", "hidden"),
  1383. xs_html_attr("name", "redir"),
  1384. xs_html_attr("value", redir))));
  1385. if (!xs_startswith(id, user->actor)) {
  1386. if (xs_list_in(likes, user->md5) == -1) {
  1387. /* not already liked; add button */
  1388. xs_html_add(form,
  1389. html_button("like", L("Like"), L("Say you like this post")));
  1390. }
  1391. else {
  1392. /* not like it anymore */
  1393. xs_html_add(form,
  1394. html_button("unlike", L("Unlike"), L("Nah don't like it that much")));
  1395. }
  1396. }
  1397. else {
  1398. if (is_pinned(user, id))
  1399. xs_html_add(form,
  1400. html_button("unpin", L("Unpin"), L("Unpin this post from your timeline")));
  1401. else
  1402. xs_html_add(form,
  1403. html_button("pin", L("Pin"), L("Pin this post to the top of your timeline")));
  1404. }
  1405. if (is_msg_public(msg)) {
  1406. if (xs_list_in(boosts, user->md5) == -1) {
  1407. /* not already boosted; add button */
  1408. xs_html_add(form,
  1409. html_button("boost", L("Boost"), L("Announce this post to your followers")));
  1410. }
  1411. else {
  1412. /* already boosted; add button to regret */
  1413. xs_html_add(form,
  1414. html_button("unboost", L("Unboost"), L("I regret I boosted this")));
  1415. }
  1416. }
  1417. if (is_bookmarked(user, id))
  1418. xs_html_add(form,
  1419. html_button("unbookmark", L("Unbookmark"), L("Delete this post from your bookmarks")));
  1420. else
  1421. xs_html_add(form,
  1422. html_button("bookmark", L("Bookmark"), L("Add this post to your bookmarks")));
  1423. if (strcmp(actor, user->actor) != 0) {
  1424. /* controls for other actors than this one */
  1425. if (following_check(user, actor)) {
  1426. xs_html_add(form,
  1427. html_button("unfollow", L("Unfollow"), L("Stop following this user's activity")));
  1428. }
  1429. else {
  1430. xs_html_add(form,
  1431. html_button("follow", L("Follow"), L("Start following this user's activity")));
  1432. }
  1433. if (!xs_is_null(group)) {
  1434. if (following_check(user, group)) {
  1435. xs_html_add(form,
  1436. html_button("unfollow", L("Unfollow Group"),
  1437. L("Stop following this group or channel")));
  1438. }
  1439. else {
  1440. xs_html_add(form,
  1441. html_button("follow", L("Follow Group"),
  1442. L("Start following this group or channel")));
  1443. }
  1444. }
  1445. xs_html_add(form,
  1446. html_button("mute", L("MUTE"),
  1447. L("Block any activity from this user forever")));
  1448. }
  1449. if (!xs_is_true(xs_dict_get(srv_config, "hide_delete_post_button")))
  1450. xs_html_add(form,
  1451. html_button("delete", L("Delete"), L("Delete this post")));
  1452. xs_html_add(form,
  1453. html_button("hide", L("Hide"), L("Hide this post and its children")));
  1454. const char *prev_src = xs_dict_get(msg, "sourceContent");
  1455. if (!xs_is_null(prev_src) && strcmp(actor, user->actor) == 0) { /** edit **/
  1456. /* post can be edited */
  1457. xs *div_id = xs_fmt("%s_edit", md5);
  1458. xs *form_id = xs_fmt("%s_edit_form", md5);
  1459. xs *redir = xs_fmt("%s_entry", md5);
  1460. xs *att_files = xs_list_new();
  1461. xs *att_alt_texts = xs_list_new();
  1462. const xs_list *att_list = xs_dict_get(msg, "attachment");
  1463. if (xs_is_list(att_list)) {
  1464. const xs_dict *d;
  1465. xs_list_foreach(att_list, d) {
  1466. const char *att_file = xs_dict_get(d, "url");
  1467. const char *att_alt_text = xs_dict_get(d, "name");
  1468. if (xs_is_string(att_file) && xs_is_string(att_alt_text)) {
  1469. att_files = xs_list_append(att_files, att_file);
  1470. att_alt_texts = xs_list_append(att_alt_texts, att_alt_text);
  1471. }
  1472. }
  1473. }
  1474. xs_html_add(controls, xs_html_tag("div",
  1475. xs_html_tag("p", NULL),
  1476. html_note(user, L("Edit..."),
  1477. div_id, form_id,
  1478. "", prev_src,
  1479. id, NULL,
  1480. xs_dict_get(msg, "sensitive"), xs_dict_get(msg, "summary"),
  1481. xs_stock(is_msg_public(msg) ? XSTYPE_FALSE : XSTYPE_TRUE), redir,
  1482. NULL, 0, att_files, att_alt_texts, is_draft(user, id))),
  1483. xs_html_tag("p", NULL));
  1484. }
  1485. { /** reply **/
  1486. /* the post textarea */
  1487. xs *ct = build_mentions(user, msg);
  1488. xs *div_id = xs_fmt("%s_reply", md5);
  1489. xs *form_id = xs_fmt("%s_reply_form", md5);
  1490. xs *redir = xs_fmt("%s_entry", md5);
  1491. xs_html_add(controls, xs_html_tag("div",
  1492. xs_html_tag("p", NULL),
  1493. html_note(user, L("Reply..."),
  1494. div_id, form_id,
  1495. "", ct,
  1496. NULL, NULL,
  1497. xs_dict_get(msg, "sensitive"), xs_dict_get(msg, "summary"),
  1498. xs_stock(is_msg_public(msg) ? XSTYPE_FALSE : XSTYPE_TRUE), redir,
  1499. id, 0, NULL, NULL, 0)),
  1500. xs_html_tag("p", NULL));
  1501. }
  1502. return controls;
  1503. }
  1504. xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
  1505. int level, const char *md5, int hide_children)
  1506. {
  1507. const char *id = xs_dict_get(msg, "id");
  1508. const char *type = xs_dict_get(msg, "type");
  1509. const char *actor;
  1510. const char *v;
  1511. int has_title = 0;
  1512. int collapse_threads = 0;
  1513. const char *proxy = NULL;
  1514. if (user && !read_only && xs_is_true(xs_dict_get(srv_config, "proxy_media")))
  1515. proxy = user->actor;
  1516. /* do not show non-public messages in the public timeline */
  1517. if ((read_only || !user) && !is_msg_public(msg))
  1518. return NULL;
  1519. if (id && is_instance_blocked(id))
  1520. return NULL;
  1521. if (user && level == 0 && xs_is_true(xs_dict_get(user->config, "collapse_threads")))
  1522. collapse_threads = 1;
  1523. /* hidden? do nothing more for this conversation */
  1524. if (user && is_hidden(user, id)) {
  1525. xs *s1 = xs_fmt("%s_entry", md5);
  1526. /* return just an dummy anchor, to keep position after hitting 'Hide' */
  1527. return xs_html_tag("div",
  1528. xs_html_tag("a",
  1529. xs_html_attr("name", s1)));
  1530. }
  1531. /* avoid too deep nesting, as it may be a loop */
  1532. if (level >= MAX_CONVERSATION_LEVELS)
  1533. return xs_html_tag("mark",
  1534. xs_html_text(L("Truncated (too deep)")));
  1535. if (strcmp(type, "Follow") == 0) {
  1536. return xs_html_tag("div",
  1537. xs_html_attr("class", "snac-post"),
  1538. xs_html_tag("div",
  1539. xs_html_attr("class", "snac-post-header"),
  1540. xs_html_tag("div",
  1541. xs_html_attr("class", "snac-origin"),
  1542. xs_html_text(L("follows you"))),
  1543. html_msg_icon(read_only ? NULL : user, xs_dict_get(msg, "actor"), msg, proxy, NULL)));
  1544. }
  1545. else
  1546. if (!xs_match(type, POSTLIKE_OBJECT_TYPE)) {
  1547. /* skip oddities */
  1548. snac_debug(user, 1, xs_fmt("html_entry: ignoring object type '%s' %s", type, id));
  1549. return NULL;
  1550. }
  1551. /* ignore notes with "name", as they are votes to Questions */
  1552. if (strcmp(type, "Note") == 0 && !xs_is_null(xs_dict_get(msg, "name")))
  1553. return NULL;
  1554. /* get the attributedTo */
  1555. if ((actor = get_atto(msg)) == NULL)
  1556. return NULL;
  1557. /* ignore muted morons immediately */
  1558. if (user && is_muted(user, actor)) {
  1559. xs *s1 = xs_fmt("%s_entry", md5);
  1560. /* return just an dummy anchor, to keep position after hitting 'MUTE' */
  1561. return xs_html_tag("div",
  1562. xs_html_tag("a",
  1563. xs_html_attr("name", s1)));
  1564. }
  1565. if ((user == NULL || strcmp(actor, user->actor) != 0)
  1566. && !valid_status(actor_get(actor, NULL)))
  1567. return NULL;
  1568. /** html_entry top tag **/
  1569. xs_html *entry_top = xs_html_tag("div", NULL);
  1570. {
  1571. xs *s1 = xs_fmt("%s_entry", md5);
  1572. xs_html_add(entry_top,
  1573. xs_html_tag("a",
  1574. xs_html_attr("name", s1)));
  1575. }
  1576. xs_html *entry = xs_html_tag("div",
  1577. xs_html_attr("class", level == 0 ? "snac-post" : "snac-child"));
  1578. xs_html_add(entry_top,
  1579. entry);
  1580. /** post header **/
  1581. xs_html *score;
  1582. xs_html *post_header = xs_html_tag("div",
  1583. xs_html_attr("class", "snac-post-header"),
  1584. score = xs_html_tag("div",
  1585. xs_html_attr("class", "snac-score")));
  1586. xs_html_add(entry,
  1587. post_header);
  1588. if (user && is_pinned(user, id)) {
  1589. /* add a pin emoji */
  1590. xs_html_add(score,
  1591. xs_html_tag("span",
  1592. xs_html_attr("title", L("Pinned")),
  1593. xs_html_raw(" &#128204; ")));
  1594. }
  1595. if (user && !read_only && is_bookmarked(user, id)) {
  1596. /* add a bookmark emoji */
  1597. xs_html_add(score,
  1598. xs_html_tag("span",
  1599. xs_html_attr("title", L("Bookmarked")),
  1600. xs_html_raw(" &#128278; ")));
  1601. }
  1602. if (strcmp(type, "Question") == 0) {
  1603. /* add the ballot box emoji */
  1604. xs_html_add(score,
  1605. xs_html_tag("span",
  1606. xs_html_attr("title", L("Poll")),
  1607. xs_html_raw(" &#128499; ")));
  1608. if (user && was_question_voted(user, id)) {
  1609. /* add a check to show this poll was voted */
  1610. xs_html_add(score,
  1611. xs_html_tag("span",
  1612. xs_html_attr("title", L("Voted")),
  1613. xs_html_raw(" &#10003; ")));
  1614. }
  1615. }
  1616. if (strcmp(type, "Event") == 0) {
  1617. /* add the calendar emoji */
  1618. xs_html_add(score,
  1619. xs_html_tag("span",
  1620. xs_html_attr("title", L("Event")),
  1621. xs_html_raw(" &#128197; ")));
  1622. }
  1623. /* if it's a user from this same instance, add the score */
  1624. if (xs_startswith(id, srv_baseurl)) {
  1625. int n_likes = object_likes_len(id);
  1626. int n_boosts = object_announces_len(id);
  1627. /* alternate emojis: %d &#128077; %d &#128257; */
  1628. xs *s1 = xs_fmt("%d &#9733; %d &#8634;\n", n_likes, n_boosts);
  1629. xs_html_add(score,
  1630. xs_html_raw(s1));
  1631. }
  1632. xs *boosts = object_announces(id);
  1633. if (xs_list_len(boosts)) {
  1634. /* if somebody boosted this, show as origin */
  1635. const char *p = xs_list_get(boosts, -1);
  1636. xs *actor_r = NULL;
  1637. if (user && xs_list_in(boosts, user->md5) != -1) {
  1638. /* we boosted this */
  1639. xs_html_add(post_header,
  1640. xs_html_tag("div",
  1641. xs_html_attr("class", "snac-origin"),
  1642. xs_html_tag("a",
  1643. xs_html_attr("href", user->actor),
  1644. xs_html_text(xs_dict_get(user->config, "name"))),
  1645. xs_html_text(" "),
  1646. xs_html_text(L("boosted"))));
  1647. }
  1648. else
  1649. if (valid_status(object_get_by_md5(p, &actor_r))) {
  1650. xs *name = actor_name(actor_r, proxy);
  1651. if (!xs_is_null(name)) {
  1652. xs *href = NULL;
  1653. const char *id = xs_dict_get(actor_r, "id");
  1654. int fwers = 0;
  1655. int fwing = 0;
  1656. if (user != NULL) {
  1657. fwers = follower_check(user, id);
  1658. fwing = following_check(user, id);
  1659. }
  1660. if (!read_only && (fwers || fwing))
  1661. href = xs_fmt("%s/people#%s", user->actor, p);
  1662. else
  1663. href = xs_dup(id);
  1664. xs_html_add(post_header,
  1665. xs_html_tag("div",
  1666. xs_html_attr("class", "snac-origin"),
  1667. xs_html_tag("a",
  1668. xs_html_attr("href", href),
  1669. xs_html_raw(name)), /* already sanitized */
  1670. xs_html_text(" "),
  1671. xs_html_text(L("boosted"))));
  1672. }
  1673. }
  1674. }
  1675. if (user && strcmp(type, "Note") == 0) {
  1676. /* is the parent not here? */
  1677. const char *parent = get_in_reply_to(msg);
  1678. if (!xs_is_null(parent) && *parent) {
  1679. xs *md5 = xs_md5_hex(parent, strlen(parent));
  1680. if (!timeline_here(user, md5)) {
  1681. xs_html_add(post_header,
  1682. xs_html_tag("div",
  1683. xs_html_attr("class", "snac-origin"),
  1684. xs_html_text(L("in reply to")),
  1685. xs_html_text(" "),
  1686. xs_html_tag("a",
  1687. xs_html_attr("href", parent),
  1688. xs_html_text("»"))));
  1689. }
  1690. }
  1691. }
  1692. xs_html_add(post_header,
  1693. html_msg_icon(read_only ? NULL : user, actor, msg, proxy, md5));
  1694. /** post content **/
  1695. xs_html *snac_content_wrap = xs_html_tag("div",
  1696. xs_html_attr("class", "e-content snac-content"));
  1697. xs_html_add(entry,
  1698. snac_content_wrap);
  1699. if (!has_title && !xs_is_null(v = xs_dict_get(msg, "name"))) {
  1700. xs_html_add(snac_content_wrap,
  1701. xs_html_tag("h3",
  1702. xs_html_attr("class", "snac-entry-title"),
  1703. xs_html_text(v)));
  1704. has_title = 1;
  1705. }
  1706. xs_html *snac_content = NULL;
  1707. v = xs_dict_get(msg, "summary");
  1708. /* is it sensitive? */
  1709. if (xs_type(xs_dict_get(msg, "sensitive")) == XSTYPE_TRUE) {
  1710. if (xs_is_null(v) || *v == '\0')
  1711. v = "...";
  1712. const char *cw = "";
  1713. if (user) {
  1714. /* only show it when not in the public timeline and the config setting is "open" */
  1715. cw = xs_dict_get(user->config, "cw");
  1716. if (xs_is_null(cw) || read_only)
  1717. cw = "";
  1718. }
  1719. snac_content = xs_html_tag("details",
  1720. xs_html_attr(cw, NULL),
  1721. xs_html_tag("summary",
  1722. xs_html_text(v),
  1723. xs_html_text(L(" [SENSITIVE CONTENT]"))));
  1724. }
  1725. else {
  1726. /* print the summary as a header (sites like e.g. Friendica can contain one) */
  1727. if (!has_title && !xs_is_null(v) && *v) {
  1728. xs_html_add(snac_content_wrap,
  1729. xs_html_tag("h3",
  1730. xs_html_attr("class", "snac-entry-title"),
  1731. xs_html_text(v)));
  1732. has_title = 1;
  1733. }
  1734. snac_content = xs_html_tag("div", NULL);
  1735. }
  1736. xs_html_add(snac_content_wrap,
  1737. snac_content);
  1738. {
  1739. /** build the content string **/
  1740. const char *content = xs_dict_get(msg, "content");
  1741. if (xs_type(content) != XSTYPE_STRING) {
  1742. if (!xs_is_null(content))
  1743. srv_archive_error("unexpected_content_xstype",
  1744. "content field type", xs_stock(XSTYPE_DICT), msg);
  1745. content = "";
  1746. }
  1747. /* skip ugly line breaks at the beginning */
  1748. while (xs_startswith(content, "<br>"))
  1749. content += 4;
  1750. xs *c = sanitize(content);
  1751. /* do some tweaks to the content */
  1752. c = xs_replace_i(c, "\r", "");
  1753. while (xs_endswith(c, "<br><br>"))
  1754. c = xs_crop_i(c, 0, -4);
  1755. c = xs_replace_i(c, "<br><br>", "<p>");
  1756. c = xs_str_cat(c, "<p>");
  1757. /* replace the :shortnames: */
  1758. c = replace_shortnames(c, xs_dict_get(msg, "tag"), 2, proxy);
  1759. /* Peertube videos content is in markdown */
  1760. const char *mtype = xs_dict_get(msg, "mediaType");
  1761. if (xs_type(mtype) == XSTYPE_STRING && strcmp(mtype, "text/markdown") == 0) {
  1762. /* a full conversion could be better */
  1763. c = xs_replace_i(c, "\r", "");
  1764. c = xs_replace_i(c, "\n", "<br>");
  1765. }
  1766. /* c contains sanitized HTML */
  1767. xs_html_add(snac_content,
  1768. xs_html_raw(c));
  1769. }
  1770. if (strcmp(type, "Question") == 0) { /** question content **/
  1771. const xs_list *oo = xs_dict_get(msg, "oneOf");
  1772. const xs_list *ao = xs_dict_get(msg, "anyOf");
  1773. const xs_list *p;
  1774. const xs_dict *v;
  1775. int closed = 0;
  1776. const char *f_closed = NULL;
  1777. xs_html *poll = xs_html_tag("div", NULL);
  1778. if (read_only)
  1779. closed = 1; /* non-identified page; show as closed */
  1780. else
  1781. if (user && xs_startswith(id, user->actor))
  1782. closed = 1; /* we questioned; closed for us */
  1783. else
  1784. if (user && was_question_voted(user, id))
  1785. closed = 1; /* we already voted; closed for us */
  1786. if ((f_closed = xs_dict_get(msg, "closed")) != NULL) {
  1787. /* it has a closed date... but is it in the past? */
  1788. time_t t0 = time(NULL);
  1789. time_t t1 = xs_parse_iso_date(f_closed, 0);
  1790. if (t1 < t0)
  1791. closed = 2;
  1792. }
  1793. /* get the appropriate list of options */
  1794. p = oo != NULL ? oo : ao;
  1795. if (closed || user == NULL) {
  1796. /* closed poll */
  1797. xs_html *poll_result = xs_html_tag("table",
  1798. xs_html_attr("class", "snac-poll-result"));
  1799. int c = 0;
  1800. while (xs_list_next(p, &v, &c)) {
  1801. const char *name = xs_dict_get(v, "name");
  1802. const xs_dict *replies = xs_dict_get(v, "replies");
  1803. if (xs_is_string(name) && xs_is_dict(replies)) {
  1804. const char *ti = xs_number_str(xs_dict_get(replies, "totalItems"));
  1805. if (xs_is_string(ti))
  1806. xs_html_add(poll_result,
  1807. xs_html_tag("tr",
  1808. xs_html_tag("td",
  1809. xs_html_text(name),
  1810. xs_html_text(":")),
  1811. xs_html_tag("td",
  1812. xs_html_text(ti))));
  1813. }
  1814. }
  1815. xs_html_add(poll,
  1816. poll_result);
  1817. }
  1818. else {
  1819. /* poll still active */
  1820. xs *vote_action = xs_fmt("%s/admin/vote", user->actor);
  1821. xs_html *form;
  1822. xs_html *poll_form = xs_html_tag("div",
  1823. xs_html_attr("class", "snac-poll-form"),
  1824. form = xs_html_tag("form",
  1825. xs_html_attr("autocomplete", "off"),
  1826. xs_html_attr("method", "post"),
  1827. xs_html_attr("action", vote_action),
  1828. xs_html_sctag("input",
  1829. xs_html_attr("type", "hidden"),
  1830. xs_html_attr("name", "actor"),
  1831. xs_html_attr("value", actor)),
  1832. xs_html_sctag("input",
  1833. xs_html_attr("type", "hidden"),
  1834. xs_html_attr("name", "irt"),
  1835. xs_html_attr("value", id))));
  1836. int c = 0;
  1837. while (xs_list_next(p, &v, &c)) {
  1838. const char *name = xs_dict_get(v, "name");
  1839. const xs_dict *replies = xs_dict_get(v, "replies");
  1840. if (name) {
  1841. char *ti = (char *)xs_number_str(xs_dict_get(replies, "totalItems"));
  1842. xs_html *btn = xs_html_sctag("input",
  1843. xs_html_attr("id", name),
  1844. xs_html_attr("value", name),
  1845. xs_html_attr("name", "question"));
  1846. if (!xs_is_null(oo)) {
  1847. xs_html_add(btn,
  1848. xs_html_attr("type", "radio"),
  1849. xs_html_attr("required", "required"));
  1850. }
  1851. else
  1852. xs_html_add(btn,
  1853. xs_html_attr("type", "checkbox"));
  1854. xs_html_add(form,
  1855. btn,
  1856. xs_html_text(" "),
  1857. xs_html_tag("span",
  1858. xs_html_attr("title", ti),
  1859. xs_html_text(name)),
  1860. xs_html_sctag("br", NULL));
  1861. }
  1862. }
  1863. xs_html_add(form,
  1864. xs_html_tag("p", NULL),
  1865. xs_html_sctag("input",
  1866. xs_html_attr("type", "submit"),
  1867. xs_html_attr("class", "button"),
  1868. xs_html_attr("value", L("Vote"))));
  1869. xs_html_add(poll,
  1870. poll_form);
  1871. }
  1872. /* if it's *really* closed, say it */
  1873. if (closed == 2) {
  1874. xs_html_add(poll,
  1875. xs_html_tag("p",
  1876. xs_html_text(L("Closed"))));
  1877. }
  1878. else {
  1879. /* show when the poll closes */
  1880. const char *end_time = xs_dict_get(msg, "endTime");
  1881. /* Pleroma does not have an endTime field;
  1882. it has a closed time in the future */
  1883. if (xs_is_null(end_time))
  1884. end_time = xs_dict_get(msg, "closed");
  1885. if (!xs_is_null(end_time)) {
  1886. time_t t0 = time(NULL);
  1887. time_t t1 = xs_parse_iso_date(end_time, 0);
  1888. if (t1 > 0 && t1 > t0) {
  1889. time_t diff_time = t1 - t0;
  1890. xs *tf = xs_str_time_diff(diff_time);
  1891. char *p = tf;
  1892. /* skip leading zeros */
  1893. for (; *p == '0' || *p == ':'; p++);
  1894. xs_html_add(poll,
  1895. xs_html_tag("p",
  1896. xs_html_text(L("Closes in")),
  1897. xs_html_text(" "),
  1898. xs_html_text(p)));
  1899. }
  1900. }
  1901. }
  1902. xs_html_add(snac_content,
  1903. poll);
  1904. }
  1905. /** attachments **/
  1906. xs *attach = get_attachments(msg);
  1907. {
  1908. /* make custom css for attachments easier */
  1909. xs_html *content_attachments = xs_html_tag("div",
  1910. xs_html_attr("class", "snac-content-attachments"));
  1911. xs_html_add(snac_content,
  1912. content_attachments);
  1913. const char *content = xs_dict_get(msg, "content");
  1914. int c = 0;
  1915. const xs_dict *a;
  1916. while (xs_list_next(attach, &a, &c)) {
  1917. const char *type = xs_dict_get(a, "type");
  1918. const char *o_href = xs_dict_get(a, "href");
  1919. const char *name = xs_dict_get(a, "name");
  1920. /* if this image is already in the post content, skip */
  1921. if (content && xs_str_in(content, o_href) != -1)
  1922. continue;
  1923. /* drop silently any attachment that may include JavaScript */
  1924. if (strcmp(type, "image/svg+xml") == 0 ||
  1925. strcmp(type, "text/html") == 0)
  1926. continue;
  1927. /* do this attachment include an icon? */
  1928. const xs_dict *icon = xs_dict_get(a, "icon");
  1929. if (xs_type(icon) == XSTYPE_DICT) {
  1930. const char *icon_mtype = xs_dict_get(icon, "mediaType");
  1931. const char *icon_url = xs_dict_get(icon, "url");
  1932. if (icon_mtype && icon_url && xs_startswith(icon_mtype, "image/")) {
  1933. xs_html_add(content_attachments,
  1934. xs_html_tag("a",
  1935. xs_html_attr("href", icon_url),
  1936. xs_html_attr("target", "_blank"),
  1937. xs_html_sctag("img",
  1938. xs_html_attr("loading", "lazy"),
  1939. xs_html_attr("src", icon_url))));
  1940. }
  1941. }
  1942. xs *href = make_url(o_href, proxy, 0);
  1943. if (xs_startswith(type, "image/") || strcmp(type, "Image") == 0) {
  1944. xs_html_add(content_attachments,
  1945. xs_html_tag("a",
  1946. xs_html_attr("href", href),
  1947. xs_html_attr("target", "_blank"),
  1948. xs_html_sctag("img",
  1949. xs_html_attr("loading", "lazy"),
  1950. xs_html_attr("src", href),
  1951. xs_html_attr("alt", name),
  1952. xs_html_attr("title", name))));
  1953. }
  1954. else
  1955. if (xs_startswith(type, "video/")) {
  1956. xs_html_add(content_attachments,
  1957. xs_html_tag("video",
  1958. xs_html_attr("preload", "none"),
  1959. xs_html_attr("style", "width: 100%"),
  1960. xs_html_attr("class", "snac-embedded-video"),
  1961. xs_html_attr("controls", NULL),
  1962. xs_html_attr("src", href),
  1963. xs_html_text(L("Video")),
  1964. xs_html_text(": "),
  1965. xs_html_tag("a",
  1966. xs_html_attr("href", href),
  1967. xs_html_text(name))));
  1968. }
  1969. else
  1970. if (xs_startswith(type, "audio/")) {
  1971. xs_html_add(content_attachments,
  1972. xs_html_tag("audio",
  1973. xs_html_attr("preload", "none"),
  1974. xs_html_attr("style", "width: 100%"),
  1975. xs_html_attr("class", "snac-embedded-audio"),
  1976. xs_html_attr("controls", NULL),
  1977. xs_html_attr("src", href),
  1978. xs_html_text(L("Audio")),
  1979. xs_html_text(": "),
  1980. xs_html_tag("a",
  1981. xs_html_attr("href", href),
  1982. xs_html_text(name))));
  1983. }
  1984. else
  1985. if (strcmp(type, "Link") == 0) {
  1986. xs_html_add(content_attachments,
  1987. xs_html_tag("p",
  1988. xs_html_tag("a",
  1989. xs_html_attr("href", o_href),
  1990. xs_html_text(href))));
  1991. /* do not generate an Alt... */
  1992. name = NULL;
  1993. }
  1994. else {
  1995. xs_html_add(content_attachments,
  1996. xs_html_tag("p",
  1997. xs_html_tag("a",
  1998. xs_html_attr("href", o_href),
  1999. xs_html_text(L("Attachment")),
  2000. xs_html_text(": "),
  2001. xs_html_text(o_href))));
  2002. /* do not generate an Alt... */
  2003. name = NULL;
  2004. }
  2005. if (name != NULL && *name) {
  2006. xs_html_add(content_attachments,
  2007. xs_html_tag("p",
  2008. xs_html_attr("class", "snac-alt-text"),
  2009. xs_html_tag("details",
  2010. xs_html_tag("summary",
  2011. xs_html_text(L("Alt..."))),
  2012. xs_html_text(name))));
  2013. }
  2014. }
  2015. }
  2016. /* has this message an audience (i.e., comes from a channel or community)? */
  2017. const char *audience = xs_dict_get(msg, "audience");
  2018. if (strcmp(type, "Page") == 0 && !xs_is_null(audience)) {
  2019. xs_html *au_tag = xs_html_tag("p",
  2020. xs_html_text("("),
  2021. xs_html_tag("a",
  2022. xs_html_attr("href", audience),
  2023. xs_html_attr("title", L("Source channel or community")),
  2024. xs_html_text(audience)),
  2025. xs_html_text(")"));
  2026. xs_html_add(snac_content_wrap,
  2027. au_tag);
  2028. }
  2029. /* does it have a location? */
  2030. const xs_dict *location = xs_dict_get(msg, "location");
  2031. if (xs_type(location) == XSTYPE_DICT) {
  2032. const xs_number *latitude = xs_dict_get(location, "latitude");
  2033. const xs_number *longitude = xs_dict_get(location, "longitude");
  2034. const char *name = xs_dict_get(location, "name");
  2035. const char *address = xs_dict_get(location, "address");
  2036. xs *label_list = xs_list_new();
  2037. if (xs_type(name) == XSTYPE_STRING)
  2038. label_list = xs_list_append(label_list, name);
  2039. if (xs_type(address) == XSTYPE_STRING)
  2040. label_list = xs_list_append(label_list, address);
  2041. if (xs_list_len(label_list)) {
  2042. const char *url = xs_dict_get(location, "url");
  2043. xs *label = xs_join(label_list, ", ");
  2044. if (xs_type(url) == XSTYPE_STRING) {
  2045. xs_html_add(snac_content_wrap,
  2046. xs_html_tag("p",
  2047. xs_html_text(L("Location: ")),
  2048. xs_html_tag("a",
  2049. xs_html_attr("href", url),
  2050. xs_html_attr("target", "_blank"),
  2051. xs_html_text(label))));
  2052. }
  2053. else
  2054. if (!xs_is_null(latitude) && !xs_is_null(longitude)) {
  2055. xs *url = xs_fmt("https://openstreetmap.org/search/?query=%s,%s",
  2056. xs_number_str(latitude), xs_number_str(longitude));
  2057. xs_html_add(snac_content_wrap,
  2058. xs_html_tag("p",
  2059. xs_html_text(L("Location: ")),
  2060. xs_html_tag("a",
  2061. xs_html_attr("href", url),
  2062. xs_html_attr("target", "_blank"),
  2063. xs_html_text(label))));
  2064. }
  2065. else
  2066. xs_html_add(snac_content_wrap,
  2067. xs_html_tag("p",
  2068. xs_html_text(L("Location: ")),
  2069. xs_html_text(label)));
  2070. }
  2071. }
  2072. if (strcmp(type, "Event") == 0) { /** Event start and end times **/
  2073. const char *s_time = xs_dict_get(msg, "startTime");
  2074. if (xs_is_string(s_time) && strlen(s_time) > 20) {
  2075. const char *e_time = xs_dict_get(msg, "endTime");
  2076. const char *tz = xs_dict_get(msg, "timezone");
  2077. xs *s = xs_replace_i(xs_dup(s_time), "T", " ");
  2078. xs *e = NULL;
  2079. if (xs_is_string(e_time) && strlen(e_time) > 20)
  2080. e = xs_replace_i(xs_dup(e_time), "T", " ");
  2081. /* if the event has a timezone, crop the offsets */
  2082. if (xs_is_string(tz)) {
  2083. s = xs_crop_i(s, 0, 19);
  2084. if (e)
  2085. e = xs_crop_i(e, 0, 19);
  2086. }
  2087. else
  2088. tz = "";
  2089. /* if start and end share the same day, crop it from the end */
  2090. if (e && memcmp(s, e, 11) == 0)
  2091. e = xs_crop_i(e, 11, 0);
  2092. if (e)
  2093. s = xs_str_cat(s, " / ", e);
  2094. if (*tz)
  2095. s = xs_str_cat(s, " (", tz, ")");
  2096. /* replace ugly decimals */
  2097. s = xs_replace_i(s, ".000", "");
  2098. xs_html_add(snac_content_wrap,
  2099. xs_html_tag("p",
  2100. xs_html_text(L("Time: ")),
  2101. xs_html_text(s)));
  2102. }
  2103. }
  2104. /* show all hashtags that has not been shown previously in the content */
  2105. const xs_list *tags = xs_dict_get(msg, "tag");
  2106. const char *o_content = xs_dict_get_def(msg, "content", "");
  2107. if (xs_is_string(o_content) && xs_is_list(tags) && xs_list_len(tags)) {
  2108. xs *content = xs_utf8_to_lower(o_content);
  2109. const xs_dict *tag;
  2110. xs_html *add_hashtags = xs_html_tag("ul",
  2111. xs_html_attr("class", "snac-more-hashtags"));
  2112. xs_list_foreach(tags, tag) {
  2113. const char *type = xs_dict_get(tag, "type");
  2114. if (xs_is_string(type) && strcmp(type, "Hashtag") == 0) {
  2115. const char *o_href = xs_dict_get(tag, "href");
  2116. const char *name = xs_dict_get(tag, "name");
  2117. if (xs_is_string(o_href) && xs_is_string(name)) {
  2118. xs *href = xs_utf8_to_lower(o_href);
  2119. if (xs_str_in(content, href) == -1 && xs_str_in(content, name) == -1) {
  2120. /* not in the content: add here */
  2121. xs_html_add(add_hashtags,
  2122. xs_html_tag("li",
  2123. xs_html_tag("a",
  2124. xs_html_attr("href", href),
  2125. xs_html_text(name),
  2126. xs_html_text(" "))));
  2127. }
  2128. }
  2129. }
  2130. }
  2131. xs_html_add(snac_content_wrap,
  2132. add_hashtags);
  2133. }
  2134. /** controls **/
  2135. if (!read_only && user) {
  2136. xs_html_add(entry,
  2137. html_entry_controls(user, actor, msg, md5));
  2138. }
  2139. /** children **/
  2140. if (!hide_children) {
  2141. xs *children = object_children(id);
  2142. int left = xs_list_len(children);
  2143. if (left) {
  2144. xs_html *ch_details = xs_html_tag("details",
  2145. xs_html_attr(collapse_threads ? "" : "open", NULL),
  2146. xs_html_tag("summary",
  2147. xs_html_text("...")));
  2148. xs_html_add(entry,
  2149. ch_details);
  2150. xs_html *ch_container = xs_html_tag("div",
  2151. xs_html_attr("class", level < 4 ? "snac-children" : "snac-children-too-deep"));
  2152. xs_html_add(ch_details,
  2153. ch_container);
  2154. xs_html *ch_older = NULL;
  2155. if (left > 3) {
  2156. xs_html_add(ch_container,
  2157. ch_older = xs_html_tag("details",
  2158. xs_html_tag("summary",
  2159. xs_html_text(L("Older...")))));
  2160. }
  2161. xs_list *p = children;
  2162. const char *cmd5;
  2163. int cnt = 0;
  2164. int o_cnt = 0;
  2165. while (xs_list_iter(&p, &cmd5)) {
  2166. xs *chd = NULL;
  2167. if (user)
  2168. timeline_get_by_md5(user, cmd5, &chd);
  2169. else
  2170. object_get_by_md5(cmd5, &chd);
  2171. if (chd != NULL) {
  2172. if (xs_is_null(xs_dict_get(chd, "name"))) {
  2173. xs_html *che = html_entry(user, chd, read_only,
  2174. level + 1, cmd5, hide_children);
  2175. if (che != NULL) {
  2176. if (left > 3) {
  2177. xs_html_add(ch_older,
  2178. che);
  2179. o_cnt++;
  2180. }
  2181. else
  2182. xs_html_add(ch_container,
  2183. che);
  2184. cnt++;
  2185. }
  2186. }
  2187. left--;
  2188. }
  2189. else
  2190. srv_debug(2, xs_fmt("cannot read child %s", cmd5));
  2191. }
  2192. /* if no children were finally added, hide the details */
  2193. if (cnt == 0)
  2194. xs_html_add(ch_details,
  2195. xs_html_attr("style", "display: none"));
  2196. if (o_cnt == 0 && ch_older)
  2197. xs_html_add(ch_older,
  2198. xs_html_attr("style", "display: none"));
  2199. }
  2200. }
  2201. return entry_top;
  2202. }
  2203. xs_html *html_footer(const snac *user)
  2204. {
  2205. return xs_html_tag("div",
  2206. xs_html_attr("class", "snac-footer"),
  2207. xs_html_tag("a",
  2208. xs_html_attr("href", srv_baseurl),
  2209. xs_html_text(L("about this site"))),
  2210. xs_html_text(" - "),
  2211. xs_html_text(L("powered by ")),
  2212. xs_html_tag("a",
  2213. xs_html_attr("href", WHAT_IS_SNAC_URL),
  2214. xs_html_tag("abbr",
  2215. xs_html_attr("title", "Social Networks Are Crap"),
  2216. xs_html_text("snac"))));
  2217. }
  2218. xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
  2219. int skip, int show, int show_more,
  2220. const char *title, const char *page,
  2221. int utl, const char *error)
  2222. /* returns the HTML for the timeline */
  2223. {
  2224. xs_list *p = (xs_list *)list;
  2225. const char *v;
  2226. double t = ftime();
  2227. int hide_children = xs_is_true(xs_dict_get(srv_config, "strict_public_timelines")) && read_only;
  2228. xs *desc = NULL;
  2229. xs *alternate = NULL;
  2230. if (xs_list_len(list) == 1) {
  2231. /* only one element? pick the description from the source */
  2232. const char *id = xs_list_get(list, 0);
  2233. xs *d = NULL;
  2234. object_get_by_md5(id, &d);
  2235. const char *sc = xs_dict_get(d, "sourceContent");
  2236. if (d && sc != NULL)
  2237. desc = xs_dup(sc);
  2238. alternate = xs_dup(xs_dict_get(d, "id"));
  2239. }
  2240. xs_html *head;
  2241. xs_html *body;
  2242. if (user) {
  2243. head = html_user_head(user, desc, alternate);
  2244. body = html_user_body(user, read_only);
  2245. }
  2246. else {
  2247. head = html_instance_head();
  2248. body = html_instance_body();
  2249. }
  2250. xs_html *html = xs_html_tag("html",
  2251. head,
  2252. body);
  2253. if (user && !read_only)
  2254. xs_html_add(body,
  2255. html_top_controls(user));
  2256. if (error != NULL) {
  2257. xs_html_add(body,
  2258. xs_html_tag("dialog",
  2259. xs_html_attr("open", NULL),
  2260. xs_html_tag("p",
  2261. xs_html_text(error)),
  2262. xs_html_tag("form",
  2263. xs_html_attr("method", "dialog"),
  2264. xs_html_sctag("input",
  2265. xs_html_attr("type", "submit"),
  2266. xs_html_attr("value", L("Dismiss"))))));
  2267. }
  2268. /* show links to the available lists */
  2269. if (user && !read_only) {
  2270. xs_html *lol = xs_html_tag("ul",
  2271. xs_html_attr("class", "snac-list-of-lists"));
  2272. xs_html_add(body, lol);
  2273. xs *lists = list_maint(user, NULL, 0); /* get list of lists */
  2274. int ct = 0;
  2275. const char *v;
  2276. while (xs_list_next(lists, &v, &ct)) {
  2277. const char *lname = xs_list_get(v, 1);
  2278. xs *url = xs_fmt("%s/list/%s", user->actor, xs_list_get(v, 0));
  2279. xs *ttl = xs_fmt(L("Timeline for list '%s'"), lname);
  2280. xs_html_add(lol,
  2281. xs_html_tag("li",
  2282. xs_html_tag("a",
  2283. xs_html_attr("href", url),
  2284. xs_html_attr("class", "snac-list-link"),
  2285. xs_html_attr("title", ttl),
  2286. xs_html_text(lname))));
  2287. }
  2288. {
  2289. /* show the list of pinned posts */
  2290. xs *url = xs_fmt("%s/pinned", user->actor);
  2291. xs_html_add(lol,
  2292. xs_html_tag("li",
  2293. xs_html_tag("a",
  2294. xs_html_attr("href", url),
  2295. xs_html_attr("class", "snac-list-link"),
  2296. xs_html_attr("title", L("Pinned posts")),
  2297. xs_html_text("pinned"))));
  2298. }
  2299. {
  2300. /* show the list of bookmarked posts */
  2301. xs *url = xs_fmt("%s/bookmarks", user->actor);
  2302. xs_html_add(lol,
  2303. xs_html_tag("li",
  2304. xs_html_tag("a",
  2305. xs_html_attr("href", url),
  2306. xs_html_attr("class", "snac-list-link"),
  2307. xs_html_attr("title", L("Bookmarked posts")),
  2308. xs_html_text("bookmarks"))));
  2309. }
  2310. {
  2311. /* show the list of drafts */
  2312. xs *url = xs_fmt("%s/drafts", user->actor);
  2313. xs_html_add(lol,
  2314. xs_html_tag("li",
  2315. xs_html_tag("a",
  2316. xs_html_attr("href", url),
  2317. xs_html_attr("class", "snac-list-link"),
  2318. xs_html_attr("title", L("Post drafts")),
  2319. xs_html_text("drafts"))));
  2320. }
  2321. /* the list of followed hashtags */
  2322. const char *followed_hashtags = xs_dict_get(user->config, "followed_hashtags");
  2323. if (xs_is_list(followed_hashtags) && xs_list_len(followed_hashtags)) {
  2324. xs_html *loht = xs_html_tag("ul",
  2325. xs_html_attr("class", "snac-list-of-lists"));
  2326. xs_html_add(body, loht);
  2327. const char *ht;
  2328. xs_list_foreach(followed_hashtags, ht) {
  2329. xs *url = xs_fmt("%s/admin?q=%s", user->actor, ht);
  2330. url = xs_replace_i(url, "#", "%23");
  2331. xs_html_add(loht,
  2332. xs_html_tag("li",
  2333. xs_html_tag("a",
  2334. xs_html_attr("href", url),
  2335. xs_html_attr("class", "snac-list-link"),
  2336. xs_html_text(ht))));
  2337. }
  2338. }
  2339. }
  2340. xs_html_add(body,
  2341. xs_html_tag("a",
  2342. xs_html_attr("name", "snac-posts")));
  2343. xs_html *posts = xs_html_tag("div",
  2344. xs_html_attr("class", "snac-posts"));
  2345. if (title) {
  2346. xs_html_add(posts,
  2347. xs_html_tag("h2",
  2348. xs_html_attr("class", "snac-header"),
  2349. xs_html_text(title)));
  2350. }
  2351. xs_html_add(body,
  2352. posts);
  2353. int mark_shown = 0;
  2354. while (xs_list_iter(&p, &v)) {
  2355. xs *msg = NULL;
  2356. int status;
  2357. /* "already seen" mark? */
  2358. if (strcmp(v, MD5_ALREADY_SEEN_MARK) == 0) {
  2359. if (skip == 0 && !mark_shown) {
  2360. xs *s = xs_fmt("%s/admin", user->actor);
  2361. xs_html_add(posts,
  2362. xs_html_tag("div",
  2363. xs_html_attr("class", "snac-no-more-unseen-posts"),
  2364. xs_html_text(L("No more unseen posts")),
  2365. xs_html_text(" - "),
  2366. xs_html_tag("a",
  2367. xs_html_attr("href", s),
  2368. xs_html_text(L("Back to top")))));
  2369. }
  2370. mark_shown = 1;
  2371. continue;
  2372. }
  2373. if (utl && user && !is_pinned_by_md5(user, v))
  2374. status = timeline_get_by_md5(user, v, &msg);
  2375. else
  2376. status = object_get_by_md5(v, &msg);
  2377. if (!valid_status(status))
  2378. continue;
  2379. /* if it's an instance page, discard messages from private users */
  2380. if (user == NULL && is_msg_from_private_user(msg))
  2381. continue;
  2382. /* is this message a non-public reply? */
  2383. if (user != NULL && !is_msg_public(msg)) {
  2384. const char *irt = get_in_reply_to(msg);
  2385. /* is it a reply to something not in the storage? */
  2386. if (!xs_is_null(irt) && !object_here(irt)) {
  2387. /* is it for me? */
  2388. const xs_list *to = xs_dict_get_def(msg, "to", xs_stock(XSTYPE_LIST));
  2389. const xs_list *cc = xs_dict_get_def(msg, "cc", xs_stock(XSTYPE_LIST));
  2390. if (xs_list_in(to, user->actor) == -1 && xs_list_in(cc, user->actor) == -1) {
  2391. snac_debug(user, 1, xs_fmt("skipping non-public reply to an unknown post %s", v));
  2392. continue;
  2393. }
  2394. }
  2395. }
  2396. xs_html *entry = html_entry(user, msg, read_only, 0, v, (user && !hide_children) ? 0 : 1);
  2397. if (entry != NULL)
  2398. xs_html_add(posts,
  2399. entry);
  2400. }
  2401. if (list && user && read_only) {
  2402. /** history **/
  2403. if (xs_type(xs_dict_get(srv_config, "disable_history")) != XSTYPE_TRUE) {
  2404. xs_html *ul = xs_html_tag("ul", NULL);
  2405. xs_html *history = xs_html_tag("div",
  2406. xs_html_attr("class", "snac-history"),
  2407. xs_html_tag("p",
  2408. xs_html_attr("class", "snac-history-title"),
  2409. xs_html_text(L("History"))),
  2410. ul);
  2411. xs *list = history_list(user);
  2412. xs_list *p = list;
  2413. const char *v;
  2414. while (xs_list_iter(&p, &v)) {
  2415. xs *fn = xs_replace(v, ".html", "");
  2416. xs *url = xs_fmt("%s/h/%s", user->actor, v);
  2417. xs_html_add(ul,
  2418. xs_html_tag("li",
  2419. xs_html_tag("a",
  2420. xs_html_attr("href", url),
  2421. xs_html_text(fn))));
  2422. }
  2423. xs_html_add(body,
  2424. history);
  2425. }
  2426. }
  2427. {
  2428. xs *s1 = xs_fmt("\n<!-- %lf seconds -->\n", ftime() - t);
  2429. xs_html_add(body,
  2430. xs_html_raw(s1));
  2431. }
  2432. if (show_more) {
  2433. xs *m = NULL;
  2434. xs *ss = xs_fmt("skip=%d&show=%d", skip + show, show);
  2435. xs *url = xs_dup(user == NULL ? srv_baseurl : user->actor);
  2436. if (page != NULL)
  2437. url = xs_str_cat(url, page);
  2438. if (xs_str_in(url, "?") != -1)
  2439. m = xs_fmt("%s&%s", url, ss);
  2440. else
  2441. m = xs_fmt("%s?%s", url, ss);
  2442. xs_html *more_links = xs_html_tag("p",
  2443. xs_html_tag("a",
  2444. xs_html_attr("href", url),
  2445. xs_html_attr("name", "snac-more"),
  2446. xs_html_text(L("Back to top"))),
  2447. xs_html_text(" - "),
  2448. xs_html_tag("a",
  2449. xs_html_attr("href", m),
  2450. xs_html_attr("name", "snac-more"),
  2451. xs_html_text(L("More..."))));
  2452. xs_html_add(body,
  2453. more_links);
  2454. }
  2455. xs_html_add(body,
  2456. html_footer(user));
  2457. return xs_html_render_s(html, "<!DOCTYPE html>\n");
  2458. }
  2459. xs_html *html_people_list(snac *user, xs_list *list, const char *header, const char *t, const char *proxy)
  2460. {
  2461. xs_html *snac_posts;
  2462. xs_html *people = xs_html_tag("div",
  2463. xs_html_tag("h2",
  2464. xs_html_attr("class", "snac-header"),
  2465. xs_html_text(header)),
  2466. snac_posts = xs_html_tag("details",
  2467. xs_html_attr("open", NULL),
  2468. xs_html_tag("summary",
  2469. xs_html_text("..."))));
  2470. const char *actor_id;
  2471. xs_list_foreach(list, actor_id) {
  2472. xs *md5 = xs_md5_hex(actor_id, strlen(actor_id));
  2473. xs *actor = NULL;
  2474. if (valid_status(actor_get(actor_id, &actor))) {
  2475. xs_html *snac_post = xs_html_tag("div",
  2476. xs_html_attr("class", "snac-post"),
  2477. xs_html_tag("a",
  2478. xs_html_attr("name", md5)),
  2479. xs_html_tag("div",
  2480. xs_html_attr("class", "snac-post-header"),
  2481. html_actor_icon(user, actor, xs_dict_get(actor, "published"),
  2482. NULL, NULL, 0, 1, proxy, NULL, NULL)));
  2483. /* content (user bio) */
  2484. const char *c = xs_dict_get(actor, "summary");
  2485. if (!xs_is_null(c)) {
  2486. xs *sc = sanitize(c);
  2487. xs_html *snac_content = xs_html_tag("div",
  2488. xs_html_attr("class", "snac-content"));
  2489. if (xs_startswith(sc, "<p>"))
  2490. xs_html_add(snac_content,
  2491. xs_html_raw(sc)); /* already sanitized */
  2492. else
  2493. xs_html_add(snac_content,
  2494. xs_html_tag("p",
  2495. xs_html_raw(sc))); /* already sanitized */
  2496. xs_html_add(snac_post, snac_content);
  2497. }
  2498. /* buttons */
  2499. xs *btn_form_action = xs_fmt("%s/admin/action", user->actor);
  2500. xs_html *snac_controls = xs_html_tag("div",
  2501. xs_html_attr("class", "snac-controls"));
  2502. xs_html *form = xs_html_tag("form",
  2503. xs_html_attr("autocomplete", "off"),
  2504. xs_html_attr("method", "post"),
  2505. xs_html_attr("action", btn_form_action),
  2506. xs_html_sctag("input",
  2507. xs_html_attr("type", "hidden"),
  2508. xs_html_attr("name", "actor"),
  2509. xs_html_attr("value", actor_id)),
  2510. xs_html_sctag("input",
  2511. xs_html_attr("type", "hidden"),
  2512. xs_html_attr("name", "actor-form"),
  2513. xs_html_attr("value", "yes")));
  2514. xs_html_add(snac_controls, form);
  2515. if (following_check(user, actor_id)) {
  2516. xs_html_add(form,
  2517. html_button("unfollow", L("Unfollow"),
  2518. L("Stop following this user's activity")));
  2519. if (is_limited(user, actor_id))
  2520. xs_html_add(form,
  2521. html_button("unlimit", L("Unlimit"),
  2522. L("Allow announces (boosts) from this user")));
  2523. else
  2524. xs_html_add(form,
  2525. html_button("limit", L("Limit"),
  2526. L("Block announces (boosts) from this user")));
  2527. }
  2528. else {
  2529. xs_html_add(form,
  2530. html_button("follow", L("Follow"),
  2531. L("Start following this user's activity")));
  2532. if (follower_check(user, actor_id))
  2533. xs_html_add(form,
  2534. html_button("delete", L("Delete"), L("Delete this user")));
  2535. }
  2536. if (pending_check(user, actor_id)) {
  2537. xs_html_add(form,
  2538. html_button("approve", L("Approve"),
  2539. L("Approve this follow request")));
  2540. xs_html_add(form,
  2541. html_button("discard", L("Discard"), L("Discard this follow request")));
  2542. }
  2543. if (is_muted(user, actor_id))
  2544. xs_html_add(form,
  2545. html_button("unmute", L("Unmute"),
  2546. L("Stop blocking activities from this user")));
  2547. else
  2548. xs_html_add(form,
  2549. html_button("mute", L("MUTE"),
  2550. L("Block any activity from this user")));
  2551. /* the post textarea */
  2552. xs *dm_div_id = xs_fmt("%s_%s_dm", md5, t);
  2553. xs *dm_form_id = xs_fmt("%s_reply_form", md5);
  2554. xs_html_add(snac_controls,
  2555. xs_html_tag("p", NULL),
  2556. html_note(user, L("Direct Message..."),
  2557. dm_div_id, dm_form_id,
  2558. "", "",
  2559. NULL, actor_id,
  2560. xs_stock(XSTYPE_FALSE), "",
  2561. xs_stock(XSTYPE_FALSE), NULL,
  2562. NULL, 0, NULL, NULL, 0),
  2563. xs_html_tag("p", NULL));
  2564. xs_html_add(snac_post, snac_controls);
  2565. xs_html_add(snac_posts, snac_post);
  2566. }
  2567. }
  2568. return people;
  2569. }
  2570. xs_str *html_people(snac *user)
  2571. {
  2572. const char *proxy = NULL;
  2573. if (xs_is_true(xs_dict_get(srv_config, "proxy_media")))
  2574. proxy = user->actor;
  2575. xs *wing = following_list(user);
  2576. xs *wers = follower_list(user);
  2577. xs_html *lists = xs_html_tag("div",
  2578. xs_html_attr("class", "snac-posts"));
  2579. if (xs_is_true(xs_dict_get(user->config, "approve_followers"))) {
  2580. xs *pending = pending_list(user);
  2581. xs_html_add(lists,
  2582. html_people_list(user, pending, L("Pending follow confirmations"), "p", proxy));
  2583. }
  2584. xs_html_add(lists,
  2585. html_people_list(user, wing, L("People you follow"), "i", proxy),
  2586. html_people_list(user, wers, L("People that follow you"), "e", proxy));
  2587. xs_html *html = xs_html_tag("html",
  2588. html_user_head(user, NULL, NULL),
  2589. xs_html_add(html_user_body(user, 0),
  2590. lists,
  2591. html_footer(user)));
  2592. return xs_html_render_s(html, "<!DOCTYPE html>\n");
  2593. }
  2594. xs_str *html_notifications(snac *user, int skip, int show)
  2595. {
  2596. const char *proxy = NULL;
  2597. if (xs_is_true(xs_dict_get(srv_config, "proxy_media")))
  2598. proxy = user->actor;
  2599. xs *n_list = notify_list(user, skip, show);
  2600. xs *n_time = notify_check_time(user, 0);
  2601. xs_html *body = html_user_body(user, 0);
  2602. xs_html *html = xs_html_tag("html",
  2603. html_user_head(user, NULL, NULL),
  2604. body);
  2605. xs *clear_all_action = xs_fmt("%s/admin/clear-notifications", user->actor);
  2606. xs_html_add(body,
  2607. xs_html_tag("form",
  2608. xs_html_attr("autocomplete", "off"),
  2609. xs_html_attr("method", "post"),
  2610. xs_html_attr("action", clear_all_action),
  2611. xs_html_attr("id", "clear"),
  2612. xs_html_sctag("input",
  2613. xs_html_attr("type", "submit"),
  2614. xs_html_attr("class", "snac-btn-like"),
  2615. xs_html_attr("value", L("Clear all")))));
  2616. xs_html *noti_new = NULL;
  2617. xs_html *noti_seen = NULL;
  2618. xs_html *posts = xs_html_tag("div",
  2619. xs_html_attr("class", "snac-posts"));
  2620. xs_html_add(body, posts);
  2621. xs_set rep;
  2622. xs_set_init(&rep);
  2623. /* dict to store previous notification labels */
  2624. xs *admiration_labels = xs_dict_new();
  2625. const xs_str *v;
  2626. xs_list_foreach(n_list, v) {
  2627. xs *noti = notify_get(user, v);
  2628. if (noti == NULL)
  2629. continue;
  2630. xs *obj = NULL;
  2631. const char *type = xs_dict_get(noti, "type");
  2632. const char *utype = xs_dict_get(noti, "utype");
  2633. const char *id = xs_dict_get(noti, "objid");
  2634. const char *date = xs_dict_get(noti, "date");
  2635. const char *id2 = xs_dict_get_path(noti, "msg.id");
  2636. xs *wrk = NULL;
  2637. if (xs_is_null(id))
  2638. continue;
  2639. if (is_hidden(user, id))
  2640. continue;
  2641. if (xs_is_string(id2) && xs_set_add(&rep, id2) != 1)
  2642. continue;
  2643. object_get(id, &obj);
  2644. const char *msg_id = NULL;
  2645. if (xs_is_dict(obj))
  2646. msg_id = xs_dict_get(obj, "id");
  2647. const char *actor_id = xs_dict_get(noti, "actor");
  2648. xs *actor = NULL;
  2649. if (!valid_status(actor_get(actor_id, &actor)))
  2650. continue;
  2651. xs *a_name = actor_name(actor, proxy);
  2652. const char *label = type;
  2653. if (strcmp(type, "Create") == 0)
  2654. label = L("Mention");
  2655. else
  2656. if (strcmp(type, "Update") == 0 && strcmp(utype, "Question") == 0)
  2657. label = L("Finished poll");
  2658. else
  2659. if (strcmp(type, "Undo") == 0 && strcmp(utype, "Follow") == 0)
  2660. label = L("Unfollow");
  2661. else
  2662. if (strcmp(type, "EmojiReact") == 0) {
  2663. const char *content = xs_dict_get_path(noti, "msg.content");
  2664. if (xs_type(content) == XSTYPE_STRING) {
  2665. wrk = xs_fmt("%s (%s)", type, content);
  2666. label = wrk;
  2667. }
  2668. }
  2669. else
  2670. if (strcmp(type, "Follow") == 0 && pending_check(user, actor_id))
  2671. label = L("Follow Request");
  2672. xs *s_date = xs_crop_i(xs_dup(date), 0, 10);
  2673. xs_html *this_html_label = xs_html_container(
  2674. xs_html_tag("b",
  2675. xs_html_text(label),
  2676. xs_html_text(" by "),
  2677. xs_html_tag("a",
  2678. xs_html_attr("href", actor_id),
  2679. xs_html_raw(a_name))), /* a_name is already sanitized */
  2680. xs_html_text(" "),
  2681. xs_html_tag("time",
  2682. xs_html_attr("class", "dt-published snac-pubdate"),
  2683. xs_html_attr("title", date),
  2684. xs_html_text(s_date)));
  2685. xs_html *html_label = NULL;
  2686. if (xs_is_string(msg_id)) {
  2687. const xs_val *prev_label = xs_dict_get(admiration_labels, msg_id);
  2688. if (xs_type(prev_label) == XSTYPE_DATA) {
  2689. /* there is a previous list of admiration labels! */
  2690. xs_data_get(&html_label, prev_label);
  2691. xs_html_add(html_label,
  2692. xs_html_sctag("br", NULL),
  2693. this_html_label);
  2694. continue;
  2695. }
  2696. }
  2697. xs_html *entry = NULL;
  2698. html_label = xs_html_tag("p",
  2699. this_html_label);
  2700. /* store in the admiration labels dict */
  2701. xs *pl = xs_data_new(&html_label, sizeof(html_label));
  2702. if (xs_is_string(msg_id))
  2703. admiration_labels = xs_dict_set(admiration_labels, msg_id, pl);
  2704. entry = xs_html_tag("div",
  2705. xs_html_attr("class", "snac-post-with-desc"),
  2706. html_label);
  2707. if (strcmp(type, "Follow") == 0 || strcmp(utype, "Follow") == 0 || strcmp(type, "Block") == 0) {
  2708. xs_html_add(entry,
  2709. xs_html_tag("div",
  2710. xs_html_attr("class", "snac-post"),
  2711. html_actor_icon(user, actor, NULL, NULL, NULL, 0, 0, proxy, NULL, NULL)));
  2712. }
  2713. else
  2714. if (strcmp(type, "Move") == 0) {
  2715. const xs_dict *o_msg = xs_dict_get(noti, "msg");
  2716. const char *target;
  2717. if (xs_type(o_msg) == XSTYPE_DICT && (target = xs_dict_get(o_msg, "target"))) {
  2718. xs *old_actor = NULL;
  2719. if (valid_status(actor_get(target, &old_actor))) {
  2720. xs_html_add(entry,
  2721. xs_html_tag("div",
  2722. xs_html_attr("class", "snac-post"),
  2723. html_actor_icon(user, old_actor, NULL, NULL, NULL, 0, 0, proxy, NULL, NULL)));
  2724. }
  2725. }
  2726. }
  2727. else
  2728. if (obj != NULL) {
  2729. xs *md5 = xs_md5_hex(id, strlen(id));
  2730. xs *ctxt = xs_fmt("%s/admin/p/%s#%s_entry", user->actor, md5, md5);
  2731. xs_html *h = html_entry(user, obj, 0, 0, md5, 1);
  2732. if (h != NULL) {
  2733. xs_html_add(entry,
  2734. xs_html_tag("p",
  2735. xs_html_tag("a",
  2736. xs_html_attr("href", ctxt),
  2737. xs_html_text(L("Context")))),
  2738. h);
  2739. }
  2740. }
  2741. if (strcmp(v, n_time) > 0) {
  2742. /* unseen notification */
  2743. if (noti_new == NULL) {
  2744. noti_new = xs_html_tag("div",
  2745. xs_html_tag("h2",
  2746. xs_html_attr("class", "snac-header"),
  2747. xs_html_text(L("New"))));
  2748. xs_html_add(posts,
  2749. noti_new);
  2750. }
  2751. xs_html_add(noti_new,
  2752. entry);
  2753. }
  2754. else {
  2755. /* already seen notification */
  2756. if (noti_seen == NULL) {
  2757. noti_seen = xs_html_tag("div",
  2758. xs_html_tag("h2",
  2759. xs_html_attr("class", "snac-header"),
  2760. xs_html_text(L("Already seen"))));
  2761. xs_html_add(posts,
  2762. noti_seen);
  2763. }
  2764. xs_html_add(noti_seen,
  2765. entry);
  2766. }
  2767. }
  2768. if (noti_new == NULL && noti_seen == NULL)
  2769. xs_html_add(body,
  2770. xs_html_tag("h2",
  2771. xs_html_attr("class", "snac-header"),
  2772. xs_html_text(L("None"))));
  2773. /* add the navigation footer */
  2774. xs *next_p = notify_list(user, skip + show, 1);
  2775. if (xs_list_len(next_p)) {
  2776. xs *url = xs_fmt("%s/notifications?skip=%d&show=%d",
  2777. user->actor, skip + show, show);
  2778. xs_html_add(body,
  2779. xs_html_tag("p",
  2780. xs_html_tag("a",
  2781. xs_html_attr("href", url),
  2782. xs_html_text(L("More...")))));
  2783. }
  2784. xs_set_free(&rep);
  2785. xs_html_add(body,
  2786. html_footer(user));
  2787. /* set the check time to now */
  2788. xs *dummy = notify_check_time(user, 1);
  2789. dummy = xs_free(dummy);
  2790. timeline_touch(user);
  2791. return xs_html_render_s(html, "<!DOCTYPE html>\n");
  2792. }
  2793. void set_user_lang(snac *user)
  2794. /* sets the language dict according to user configuration */
  2795. {
  2796. user->lang = NULL;
  2797. const char *lang = xs_dict_get(user->config, "lang");
  2798. if (xs_is_string(lang))
  2799. user->lang = xs_dict_get(srv_langs, lang);
  2800. }
  2801. int html_get_handler(const xs_dict *req, const char *q_path,
  2802. char **body, int *b_size, char **ctype,
  2803. xs_str **etag, xs_str **last_modified)
  2804. {
  2805. const char *accept = xs_dict_get(req, "accept");
  2806. int status = HTTP_STATUS_NOT_FOUND;
  2807. const snac *user = NULL;
  2808. snac snac;
  2809. xs *uid = NULL;
  2810. const char *p_path;
  2811. int cache = 1;
  2812. int save = 1;
  2813. int proxy = 0;
  2814. const char *v;
  2815. const xs_dict *q_vars = xs_dict_get(req, "q_vars");
  2816. xs *l = xs_split_n(q_path, "/", 2);
  2817. v = xs_list_get(l, 1);
  2818. if (xs_is_null(v)) {
  2819. srv_log(xs_fmt("html_get_handler bad query '%s'", q_path));
  2820. return HTTP_STATUS_NOT_FOUND;
  2821. }
  2822. if (strcmp(v, "share-bridge") == 0) {
  2823. /* temporary redirect for a post */
  2824. const char *login = xs_dict_get(q_vars, "login");
  2825. const char *content = xs_dict_get(q_vars, "content");
  2826. if (xs_type(login) == XSTYPE_STRING && xs_type(content) == XSTYPE_STRING) {
  2827. xs *b64 = xs_base64_enc(content, strlen(content));
  2828. srv_log(xs_fmt("share-bridge for user '%s'", login));
  2829. *body = xs_fmt("%s/%s/share?content=%s", srv_baseurl, login, b64);
  2830. return HTTP_STATUS_SEE_OTHER;
  2831. }
  2832. else
  2833. return HTTP_STATUS_NOT_FOUND;
  2834. }
  2835. else
  2836. if (strcmp(v, "auth-int-bridge") == 0) {
  2837. const char *login = xs_dict_get(q_vars, "login");
  2838. const char *id = xs_dict_get(q_vars, "id");
  2839. const char *action = xs_dict_get(q_vars, "action");
  2840. if (xs_is_string(login) && xs_is_string(id) && xs_is_string(action)) {
  2841. *body = xs_fmt("%s/%s/authorize_interaction?action=%s&id=%s",
  2842. srv_baseurl, login, action, id);
  2843. return HTTP_STATUS_SEE_OTHER;
  2844. }
  2845. else
  2846. return HTTP_STATUS_NOT_FOUND;
  2847. }
  2848. uid = xs_dup(v);
  2849. /* rss extension? */
  2850. if (xs_endswith(uid, ".rss")) {
  2851. uid = xs_crop_i(uid, 0, -4);
  2852. p_path = ".rss";
  2853. }
  2854. else
  2855. p_path = xs_list_get(l, 2);
  2856. if (!uid || !user_open(&snac, uid)) {
  2857. /* invalid user */
  2858. srv_debug(1, xs_fmt("html_get_handler bad user %s", uid));
  2859. return HTTP_STATUS_NOT_FOUND;
  2860. }
  2861. user = &snac; /* for L() */
  2862. set_user_lang(&snac);
  2863. if (xs_is_true(xs_dict_get(srv_config, "proxy_media")))
  2864. proxy = 1;
  2865. /* return the RSS if requested by Accept header */
  2866. if (accept != NULL) {
  2867. if (xs_str_in(accept, "text/xml") != -1 ||
  2868. xs_str_in(accept, "application/rss+xml") != -1)
  2869. p_path = ".rss";
  2870. }
  2871. /* check if server config variable 'disable_cache' is set */
  2872. if ((v = xs_dict_get(srv_config, "disable_cache")) && xs_type(v) == XSTYPE_TRUE)
  2873. cache = 0;
  2874. int skip = 0;
  2875. int def_show = xs_number_get(xs_dict_get_def(srv_config, "def_timeline_entries",
  2876. xs_dict_get_def(srv_config, "max_timeline_entries", "50")));
  2877. int show = def_show;
  2878. if ((v = xs_dict_get(q_vars, "skip")) != NULL)
  2879. skip = atoi(v), cache = 0, save = 0;
  2880. if ((v = xs_dict_get(q_vars, "show")) != NULL)
  2881. show = atoi(v), cache = 0, save = 0;
  2882. if ((v = xs_dict_get(q_vars, "da")) != NULL) {
  2883. /* user dismissed an announcement */
  2884. if (login(&snac, req)) {
  2885. double ts = atof(v);
  2886. xs *timestamp = xs_number_new(ts);
  2887. srv_log(xs_fmt("user dismissed announcements until %d", ts));
  2888. snac.config = xs_dict_set(snac.config, "last_announcement", timestamp);
  2889. user_persist(&snac, 0);
  2890. }
  2891. }
  2892. /* get a possible error message */
  2893. const char *error = xs_dict_get(q_vars, "error");
  2894. if (error != NULL)
  2895. cache = 0;
  2896. /* a show of 0 has no sense */
  2897. if (show == 0)
  2898. show = def_show;
  2899. if (p_path == NULL) { /** public timeline **/
  2900. xs *h = xs_str_localtime(0, "%Y-%m.html");
  2901. if (xs_type(xs_dict_get(snac.config, "private")) == XSTYPE_TRUE) {
  2902. /** empty public timeline for private users **/
  2903. *body = html_timeline(&snac, NULL, 1, 0, 0, 0, NULL, "", 1, error);
  2904. *b_size = strlen(*body);
  2905. status = HTTP_STATUS_OK;
  2906. }
  2907. else
  2908. if (cache && history_mtime(&snac, h) > timeline_mtime(&snac)) {
  2909. snac_debug(&snac, 1, xs_fmt("serving cached local timeline"));
  2910. status = history_get(&snac, h, body, b_size,
  2911. xs_dict_get(req, "if-none-match"), etag);
  2912. }
  2913. else {
  2914. xs *list = NULL;
  2915. int more = 0;
  2916. if (xs_is_true(xs_dict_get(srv_config, "strict_public_timelines")))
  2917. list = timeline_simple_list(&snac, "public", skip, show, &more);
  2918. else
  2919. list = timeline_list(&snac, "public", skip, show, &more);
  2920. xs *pins = pinned_list(&snac);
  2921. pins = xs_list_cat(pins, list);
  2922. *body = html_timeline(&snac, pins, 1, skip, show, more, NULL, "", 1, error);
  2923. *b_size = strlen(*body);
  2924. status = HTTP_STATUS_OK;
  2925. if (save)
  2926. history_add(&snac, h, *body, *b_size, etag);
  2927. }
  2928. }
  2929. else
  2930. if (strcmp(p_path, "admin") == 0) { /** private timeline **/
  2931. if (!login(&snac, req)) {
  2932. *body = xs_dup(uid);
  2933. status = HTTP_STATUS_UNAUTHORIZED;
  2934. }
  2935. else {
  2936. const char *q = xs_dict_get(q_vars, "q");
  2937. xs *url_acct = NULL;
  2938. /* searching for an URL? */
  2939. if (q && xs_match(q, "https://*|http://*")) {
  2940. /* may by an actor; try a webfinger */
  2941. xs *actor_obj = NULL;
  2942. if (valid_status(webfinger_request(q, &actor_obj, &url_acct))) {
  2943. /* it's an actor; do the dirty trick of changing q to the account name */
  2944. q = url_acct;
  2945. }
  2946. else {
  2947. /* bring it to the user's timeline */
  2948. xs *object = NULL;
  2949. int status;
  2950. status = activitypub_request(&snac, q, &object);
  2951. snac_debug(&snac, 1, xs_fmt("Request searched URL %s %d", q, status));
  2952. if (valid_status(status)) {
  2953. /* got it; also request the actor */
  2954. const char *attr_to = get_atto(object);
  2955. if (!xs_is_null(attr_to)) {
  2956. status = actor_request(&snac, attr_to, &actor_obj);
  2957. if (valid_status(status)) {
  2958. /* reset the query string to be the real id */
  2959. url_acct = xs_dup(xs_dict_get(object, "id"));
  2960. q = url_acct;
  2961. /* add the post to the timeline */
  2962. xs *md5 = xs_md5_hex(q, strlen(q));
  2963. if (!timeline_here(&snac, md5))
  2964. timeline_add(&snac, q, object);
  2965. }
  2966. }
  2967. }
  2968. }
  2969. /* fall through */
  2970. }
  2971. if (q && *q) {
  2972. if (xs_regex_match(q, "^@?[a-zA-Z0-9._]+@[a-zA-Z0-9-]+\\.")) {
  2973. /** search account **/
  2974. xs *actor = NULL;
  2975. xs *acct = NULL;
  2976. xs *l = xs_list_new();
  2977. xs_html *page = NULL;
  2978. if (valid_status(webfinger_request(q, &actor, &acct))) {
  2979. xs *actor_obj = NULL;
  2980. if (valid_status(actor_request(&snac, actor, &actor_obj))) {
  2981. actor_add(actor, actor_obj);
  2982. /* create a people list with only one element */
  2983. l = xs_list_append(xs_list_new(), actor);
  2984. xs *title = xs_fmt(L("Search results for account %s"), q);
  2985. page = html_people_list(&snac, l, title, "wf", NULL);
  2986. }
  2987. }
  2988. if (page == NULL) {
  2989. xs *title = xs_fmt(L("Account %s not found"), q);
  2990. page = xs_html_tag("div",
  2991. xs_html_tag("h2",
  2992. xs_html_attr("class", "snac-header"),
  2993. xs_html_text(title)));
  2994. }
  2995. xs_html *html = xs_html_tag("html",
  2996. html_user_head(&snac, NULL, NULL),
  2997. xs_html_add(html_user_body(&snac, 0),
  2998. page,
  2999. html_footer(user)));
  3000. *body = xs_html_render_s(html, "<!DOCTYPE html>\n");
  3001. *b_size = strlen(*body);
  3002. status = HTTP_STATUS_OK;
  3003. }
  3004. else
  3005. if (*q == '#') {
  3006. /** search by tag **/
  3007. xs *tl = tag_search(q, skip, show + 1);
  3008. int more = 0;
  3009. if (xs_list_len(tl) >= show + 1) {
  3010. /* drop the last one */
  3011. tl = xs_list_del(tl, -1);
  3012. more = 1;
  3013. }
  3014. xs *page = xs_fmt("/admin?q=%%23%s", q + 1);
  3015. xs *title = xs_fmt(xs_list_len(tl) ?
  3016. L("Search results for tag %s") : L("Nothing found for tag %s"), q);
  3017. *body = html_timeline(&snac, tl, 0, skip, show, more, title, page, 0, error);
  3018. *b_size = strlen(*body);
  3019. status = HTTP_STATUS_OK;
  3020. }
  3021. else {
  3022. /** search by content **/
  3023. int to = 0;
  3024. int msecs = atoi(xs_dict_get_def(q_vars, "msecs", "0"));
  3025. xs *tl = content_search(&snac, q, 1, skip, show, msecs, &to);
  3026. xs *title = NULL;
  3027. xs *page = xs_fmt("/admin?q=%s&msecs=%d", q, msecs + 10);
  3028. int tl_len = xs_list_len(tl);
  3029. if (to)
  3030. title = xs_fmt(L("Search results for '%s' (may be more)"), q);
  3031. else
  3032. if (tl_len)
  3033. title = xs_fmt(L("Search results for '%s'"), q);
  3034. else
  3035. if (skip)
  3036. title = xs_fmt(L("No more matches for '%s'"), q);
  3037. else
  3038. title = xs_fmt(L("Nothing found for '%s'"), q);
  3039. *body = html_timeline(&snac, tl, 0, skip, tl_len, to || tl_len == show,
  3040. title, page, 0, error);
  3041. *b_size = strlen(*body);
  3042. status = HTTP_STATUS_OK;
  3043. }
  3044. }
  3045. else {
  3046. /** the private timeline **/
  3047. double t = history_mtime(&snac, "timeline.html_");
  3048. /* if enabled by admin, return a cached page if its timestamp is:
  3049. a) newer than the timeline timestamp
  3050. b) newer than the start time of the server
  3051. */
  3052. if (cache && t > timeline_mtime(&snac) && t > p_state->srv_start_time) {
  3053. snac_debug(&snac, 1, xs_fmt("serving cached timeline"));
  3054. status = history_get(&snac, "timeline.html_", body, b_size,
  3055. xs_dict_get(req, "if-none-match"), etag);
  3056. }
  3057. else {
  3058. int more = 0;
  3059. snac_debug(&snac, 1, xs_fmt("building timeline"));
  3060. xs *list = timeline_list(&snac, "private", skip, show, &more);
  3061. *body = html_timeline(&snac, list, 0, skip, show,
  3062. more, NULL, "/admin", 1, error);
  3063. *b_size = strlen(*body);
  3064. status = HTTP_STATUS_OK;
  3065. if (save)
  3066. history_add(&snac, "timeline.html_", *body, *b_size, etag);
  3067. timeline_add_mark(&snac);
  3068. }
  3069. }
  3070. }
  3071. }
  3072. else
  3073. if (xs_startswith(p_path, "admin/p/")) { /** unique post by md5 **/
  3074. if (!login(&snac, req)) {
  3075. *body = xs_dup(uid);
  3076. status = HTTP_STATUS_UNAUTHORIZED;
  3077. }
  3078. else {
  3079. xs *l = xs_split(p_path, "/");
  3080. const char *md5 = xs_list_get(l, -1);
  3081. if (md5 && *md5 && timeline_here(&snac, md5)) {
  3082. xs *list0 = xs_list_append(xs_list_new(), md5);
  3083. xs *list = timeline_top_level(&snac, list0);
  3084. *body = html_timeline(&snac, list, 0, 0, 0, 0, NULL, "/admin", 1, error);
  3085. *b_size = strlen(*body);
  3086. status = HTTP_STATUS_OK;
  3087. }
  3088. }
  3089. }
  3090. else
  3091. if (strcmp(p_path, "people") == 0) { /** the list of people **/
  3092. if (!login(&snac, req)) {
  3093. *body = xs_dup(uid);
  3094. status = HTTP_STATUS_UNAUTHORIZED;
  3095. }
  3096. else {
  3097. *body = html_people(&snac);
  3098. *b_size = strlen(*body);
  3099. status = HTTP_STATUS_OK;
  3100. }
  3101. }
  3102. else
  3103. if (strcmp(p_path, "notifications") == 0) { /** the list of notifications **/
  3104. if (!login(&snac, req)) {
  3105. *body = xs_dup(uid);
  3106. status = HTTP_STATUS_UNAUTHORIZED;
  3107. }
  3108. else {
  3109. *body = html_notifications(&snac, skip, show);
  3110. *b_size = strlen(*body);
  3111. status = HTTP_STATUS_OK;
  3112. }
  3113. }
  3114. else
  3115. if (strcmp(p_path, "instance") == 0) { /** instance timeline **/
  3116. if (!login(&snac, req)) {
  3117. *body = xs_dup(uid);
  3118. status = HTTP_STATUS_UNAUTHORIZED;
  3119. }
  3120. else {
  3121. xs *list = timeline_instance_list(skip, show);
  3122. xs *next = timeline_instance_list(skip + show, 1);
  3123. *body = html_timeline(&snac, list, 0, skip, show,
  3124. xs_list_len(next), L("Showing instance timeline"), "/instance", 0, error);
  3125. *b_size = strlen(*body);
  3126. status = HTTP_STATUS_OK;
  3127. }
  3128. }
  3129. else
  3130. if (strcmp(p_path, "pinned") == 0) { /** list of pinned posts **/
  3131. if (!login(&snac, req)) {
  3132. *body = xs_dup(uid);
  3133. status = HTTP_STATUS_UNAUTHORIZED;
  3134. }
  3135. else {
  3136. xs *list = pinned_list(&snac);
  3137. *body = html_timeline(&snac, list, 0, skip, show,
  3138. 0, L("Pinned posts"), "", 0, error);
  3139. *b_size = strlen(*body);
  3140. status = HTTP_STATUS_OK;
  3141. }
  3142. }
  3143. else
  3144. if (strcmp(p_path, "bookmarks") == 0) { /** list of bookmarked posts **/
  3145. if (!login(&snac, req)) {
  3146. *body = xs_dup(uid);
  3147. status = HTTP_STATUS_UNAUTHORIZED;
  3148. }
  3149. else {
  3150. xs *list = bookmark_list(&snac);
  3151. *body = html_timeline(&snac, list, 0, skip, show,
  3152. 0, L("Bookmarked posts"), "", 0, error);
  3153. *b_size = strlen(*body);
  3154. status = HTTP_STATUS_OK;
  3155. }
  3156. }
  3157. else
  3158. if (strcmp(p_path, "drafts") == 0) { /** list of drafts **/
  3159. if (!login(&snac, req)) {
  3160. *body = xs_dup(uid);
  3161. status = HTTP_STATUS_UNAUTHORIZED;
  3162. }
  3163. else {
  3164. xs *list = draft_list(&snac);
  3165. *body = html_timeline(&snac, list, 0, skip, show,
  3166. 0, L("Post drafts"), "", 0, error);
  3167. *b_size = strlen(*body);
  3168. status = HTTP_STATUS_OK;
  3169. }
  3170. }
  3171. else
  3172. if (xs_startswith(p_path, "list/")) { /** list timelines **/
  3173. if (!login(&snac, req)) {
  3174. *body = xs_dup(uid);
  3175. status = HTTP_STATUS_UNAUTHORIZED;
  3176. }
  3177. else {
  3178. xs *l = xs_split(p_path, "/");
  3179. const char *lid = xs_list_get(l, -1);
  3180. xs *list = list_timeline(&snac, lid, skip, show);
  3181. xs *next = list_timeline(&snac, lid, skip + show, 1);
  3182. if (list != NULL) {
  3183. xs *ttl = timeline_top_level(&snac, list);
  3184. xs *base = xs_fmt("/list/%s", lid);
  3185. xs *name = list_maint(&snac, lid, 3);
  3186. xs *title = xs_fmt(L("Showing timeline for list '%s'"), name);
  3187. *body = html_timeline(&snac, ttl, 0, skip, show,
  3188. xs_list_len(next), title, base, 1, error);
  3189. *b_size = strlen(*body);
  3190. status = HTTP_STATUS_OK;
  3191. }
  3192. }
  3193. }
  3194. else
  3195. if (xs_startswith(p_path, "p/")) { /** a timeline with just one entry **/
  3196. if (xs_type(xs_dict_get(snac.config, "private")) == XSTYPE_TRUE)
  3197. return HTTP_STATUS_FORBIDDEN;
  3198. xs *id = xs_fmt("%s/%s", snac.actor, p_path);
  3199. xs *msg = NULL;
  3200. if (valid_status(object_get(id, &msg))) {
  3201. xs *md5 = xs_md5_hex(id, strlen(id));
  3202. xs *list = xs_list_new();
  3203. list = xs_list_append(list, md5);
  3204. *body = html_timeline(&snac, list, 1, 0, 0, 0, NULL, "", 1, error);
  3205. *b_size = strlen(*body);
  3206. status = HTTP_STATUS_OK;
  3207. }
  3208. }
  3209. else
  3210. if (xs_startswith(p_path, "s/")) { /** a static file **/
  3211. xs *l = xs_split(p_path, "/");
  3212. const char *id = xs_list_get(l, 1);
  3213. int sz;
  3214. if (id && *id) {
  3215. status = static_get(&snac, id, body, &sz,
  3216. xs_dict_get(req, "if-none-match"), etag);
  3217. if (valid_status(status)) {
  3218. *b_size = sz;
  3219. *ctype = (char *)xs_mime_by_ext(id);
  3220. }
  3221. }
  3222. }
  3223. else
  3224. if (xs_startswith(p_path, "h/")) { /** an entry from the history **/
  3225. if (xs_type(xs_dict_get(snac.config, "private")) == XSTYPE_TRUE)
  3226. return HTTP_STATUS_FORBIDDEN;
  3227. if (xs_type(xs_dict_get(srv_config, "disable_history")) == XSTYPE_TRUE)
  3228. return HTTP_STATUS_FORBIDDEN;
  3229. xs *l = xs_split(p_path, "/");
  3230. const char *id = xs_list_get(l, 1);
  3231. if (id && *id) {
  3232. if (xs_endswith(id, "timeline.html_")) {
  3233. /* Don't let them in */
  3234. *b_size = 0;
  3235. status = HTTP_STATUS_NOT_FOUND;
  3236. }
  3237. else
  3238. status = history_get(&snac, id, body, b_size,
  3239. xs_dict_get(req, "if-none-match"), etag);
  3240. }
  3241. }
  3242. else
  3243. if (strcmp(p_path, ".rss") == 0) { /** public timeline in RSS format **/
  3244. if (xs_type(xs_dict_get(snac.config, "private")) == XSTYPE_TRUE)
  3245. return HTTP_STATUS_FORBIDDEN;
  3246. int cnt = xs_number_get(xs_dict_get_def(srv_config, "max_public_entries", "20"));
  3247. xs *elems = timeline_simple_list(&snac, "public", 0, cnt, NULL);
  3248. xs *bio = xs_dup(xs_dict_get(snac.config, "bio"));
  3249. xs *rss_title = xs_fmt("%s (@%s@%s)",
  3250. xs_dict_get(snac.config, "name"),
  3251. snac.uid,
  3252. xs_dict_get(srv_config, "host"));
  3253. xs *rss_link = xs_fmt("%s.rss", snac.actor);
  3254. *body = timeline_to_rss(&snac, elems, rss_title, rss_link, bio);
  3255. *b_size = strlen(*body);
  3256. *ctype = "application/rss+xml; charset=utf-8";
  3257. status = HTTP_STATUS_OK;
  3258. snac_debug(&snac, 1, xs_fmt("serving RSS"));
  3259. }
  3260. else
  3261. if (proxy && (xs_startswith(p_path, "x/") || xs_startswith(p_path, "y/"))) { /** remote media by proxy **/
  3262. xs *proxy_prefix = NULL;
  3263. if (xs_startswith(p_path, "x/")) {
  3264. /* proxy usage authorized by http basic auth */
  3265. if (login(&snac, req))
  3266. proxy_prefix = xs_str_new("x/");
  3267. else {
  3268. *body = xs_dup(uid);
  3269. status = HTTP_STATUS_UNAUTHORIZED;
  3270. }
  3271. }
  3272. else {
  3273. /* proxy usage authorized by proxy_token */
  3274. xs *tks = xs_fmt("%s:%s", srv_proxy_token_seed, snac.actor);
  3275. xs *tk = xs_md5_hex(tks, strlen(tks));
  3276. xs *p = xs_fmt("y/%s/", tk);
  3277. if (xs_startswith(p_path, p))
  3278. proxy_prefix = xs_dup(p);
  3279. }
  3280. if (proxy_prefix) {
  3281. /* pick the raw path (including optional ? arguments) */
  3282. const char *raw_path = xs_dict_get(req, "raw_path");
  3283. /* skip to where the proxy/ string starts */
  3284. raw_path += xs_str_in(raw_path, proxy_prefix);
  3285. xs *url = xs_replace_n(raw_path, proxy_prefix, "https:/" "/", 1);
  3286. xs *hdrs = xs_dict_new();
  3287. hdrs = xs_dict_append(hdrs, "user-agent", USER_AGENT);
  3288. const char *ims = xs_dict_get(req, "if-modified-since");
  3289. const char *inm = xs_dict_get(req, "if-none-match");
  3290. if (ims) hdrs = xs_dict_append(hdrs, "if-modified-since", ims);
  3291. if (inm) hdrs = xs_dict_append(hdrs, "if-none-match", inm);
  3292. xs *rsp = xs_http_request("GET", url, hdrs,
  3293. NULL, 0, &status, body, b_size, 0);
  3294. if (valid_status(status)) {
  3295. const char *ct = xs_or(xs_dict_get(rsp, "content-type"), "");
  3296. const char *lm = xs_dict_get(rsp, "last-modified");
  3297. const char *et = xs_dict_get(rsp, "etag");
  3298. if (lm) *last_modified = xs_dup(lm);
  3299. if (et) *etag = xs_dup(et);
  3300. /* find the content-type in the static mime types,
  3301. and return that value instead of ct, which will
  3302. be destroyed when out of scope */
  3303. for (int n = 0; xs_mime_types[n]; n += 2) {
  3304. if (strcmp(ct, xs_mime_types[n + 1]) == 0) {
  3305. *ctype = (char *)xs_mime_types[n + 1];
  3306. break;
  3307. }
  3308. }
  3309. }
  3310. snac_debug(&snac, 1, xs_fmt("Proxy for %s %d", url, status));
  3311. }
  3312. }
  3313. else
  3314. if (strcmp(p_path, "share") == 0) { /** direct post **/
  3315. if (!login(&snac, req)) {
  3316. *body = xs_dup(uid);
  3317. status = HTTP_STATUS_UNAUTHORIZED;
  3318. }
  3319. else {
  3320. const char *b64 = xs_dict_get(q_vars, "content");
  3321. int sz;
  3322. xs *content = xs_base64_dec(b64, &sz);
  3323. xs *msg = msg_note(&snac, content, NULL, NULL, NULL, 0, NULL);
  3324. xs *c_msg = msg_create(&snac, msg);
  3325. timeline_add(&snac, xs_dict_get(msg, "id"), msg);
  3326. enqueue_message(&snac, c_msg);
  3327. snac_debug(&snac, 1, xs_fmt("web action 'share' received"));
  3328. *body = xs_fmt("%s/admin", snac.actor);
  3329. *b_size = strlen(*body);
  3330. status = HTTP_STATUS_SEE_OTHER;
  3331. }
  3332. }
  3333. else
  3334. if (strcmp(p_path, "authorize_interaction") == 0) { /** follow, like or boost from Mastodon **/
  3335. if (!login(&snac, req)) {
  3336. *body = xs_dup(uid);
  3337. status = HTTP_STATUS_UNAUTHORIZED;
  3338. }
  3339. else {
  3340. status = HTTP_STATUS_NOT_FOUND;
  3341. const char *id = xs_dict_get(q_vars, "id");
  3342. const char *action = xs_dict_get(q_vars, "action");
  3343. if (xs_is_string(id) && xs_is_string(action)) {
  3344. if (strcmp(action, "Follow") == 0) {
  3345. xs *msg = msg_follow(&snac, id);
  3346. if (msg != NULL) {
  3347. const char *actor = xs_dict_get(msg, "object");
  3348. following_add(&snac, actor, msg);
  3349. enqueue_output_by_actor(&snac, msg, actor, 0);
  3350. status = HTTP_STATUS_SEE_OTHER;
  3351. }
  3352. }
  3353. else
  3354. if (xs_match(action, "Like|Boost|Announce")) {
  3355. /* bring the post */
  3356. xs *msg = msg_admiration(&snac, id, *action == 'L' ? "Like" : "Announce");
  3357. if (msg != NULL) {
  3358. enqueue_message(&snac, msg);
  3359. timeline_admire(&snac, xs_dict_get(msg, "object"), snac.actor, *action == 'L' ? 1 : 0);
  3360. status = HTTP_STATUS_SEE_OTHER;
  3361. }
  3362. }
  3363. }
  3364. if (status == HTTP_STATUS_SEE_OTHER) {
  3365. *body = xs_fmt("%s/admin", snac.actor);
  3366. *b_size = strlen(*body);
  3367. }
  3368. }
  3369. }
  3370. else
  3371. status = HTTP_STATUS_NOT_FOUND;
  3372. user_free(&snac);
  3373. if (valid_status(status) && *ctype == NULL) {
  3374. *ctype = "text/html; charset=utf-8";
  3375. }
  3376. return status;
  3377. }
  3378. int html_post_handler(const xs_dict *req, const char *q_path,
  3379. char *payload, int p_size,
  3380. char **body, int *b_size, char **ctype)
  3381. {
  3382. (void)p_size;
  3383. (void)ctype;
  3384. int status = 0;
  3385. const snac *user = NULL;
  3386. snac snac;
  3387. const char *uid;
  3388. const char *p_path;
  3389. const xs_dict *p_vars;
  3390. xs *l = xs_split_n(q_path, "/", 2);
  3391. uid = xs_list_get(l, 1);
  3392. if (!uid || !user_open(&snac, uid)) {
  3393. /* invalid user */
  3394. srv_debug(1, xs_fmt("html_post_handler bad user %s", uid));
  3395. return HTTP_STATUS_NOT_FOUND;
  3396. }
  3397. p_path = xs_list_get(l, 2);
  3398. /* all posts must be authenticated */
  3399. if (!login(&snac, req)) {
  3400. user_free(&snac);
  3401. *body = xs_dup(uid);
  3402. return HTTP_STATUS_UNAUTHORIZED;
  3403. }
  3404. user = &snac; /* for L() */
  3405. set_user_lang(&snac);
  3406. p_vars = xs_dict_get(req, "p_vars");
  3407. if (p_path && strcmp(p_path, "admin/note") == 0) { /** **/
  3408. snac_debug(&snac, 1, xs_fmt("web action '%s' received", p_path));
  3409. /* post note */
  3410. const xs_str *content = xs_dict_get(p_vars, "content");
  3411. const xs_str *in_reply_to = xs_dict_get(p_vars, "in_reply_to");
  3412. const xs_str *to = xs_dict_get(p_vars, "to");
  3413. const xs_str *sensitive = xs_dict_get(p_vars, "sensitive");
  3414. const xs_str *summary = xs_dict_get(p_vars, "summary");
  3415. const xs_str *edit_id = xs_dict_get(p_vars, "edit_id");
  3416. int priv = !xs_is_null(xs_dict_get(p_vars, "mentioned_only"));
  3417. int store_as_draft = !xs_is_null(xs_dict_get(p_vars, "is_draft"));
  3418. xs *attach_list = xs_list_new();
  3419. /* iterate the attachments */
  3420. int max_attachments = xs_number_get(xs_dict_get_def(srv_config, "max_attachments", "4"));
  3421. for (int att_n = 0; att_n < max_attachments; att_n++) {
  3422. xs *url_lbl = xs_fmt("attach_url_%d", att_n);
  3423. xs *att_lbl = xs_fmt("attach_%d", att_n);
  3424. xs *alt_lbl = xs_fmt("alt_text_%d", att_n);
  3425. const char *attach_url = xs_dict_get(p_vars, url_lbl);
  3426. const xs_list *attach_file = xs_dict_get(p_vars, att_lbl);
  3427. const char *alt_text = xs_dict_get_def(p_vars, alt_lbl, "");
  3428. if (xs_is_string(attach_url) && *attach_url != '\0') {
  3429. xs *l = xs_list_new();
  3430. l = xs_list_append(l, attach_url);
  3431. l = xs_list_append(l, alt_text);
  3432. attach_list = xs_list_append(attach_list, l);
  3433. }
  3434. else
  3435. if (xs_is_list(attach_file)) {
  3436. const char *fn = xs_list_get(attach_file, 0);
  3437. if (xs_is_string(fn) && *fn != '\0') {
  3438. char *ext = strrchr(fn, '.');
  3439. xs *hash = xs_md5_hex(fn, strlen(fn));
  3440. xs *id = xs_fmt("%s%s", hash, ext);
  3441. xs *url = xs_fmt("%s/s/%s", snac.actor, id);
  3442. int fo = xs_number_get(xs_list_get(attach_file, 1));
  3443. int fs = xs_number_get(xs_list_get(attach_file, 2));
  3444. /* store */
  3445. static_put(&snac, id, payload + fo, fs);
  3446. xs *l = xs_list_new();
  3447. l = xs_list_append(l, url);
  3448. l = xs_list_append(l, alt_text);
  3449. attach_list = xs_list_append(attach_list, l);
  3450. }
  3451. }
  3452. }
  3453. if (content != NULL) {
  3454. xs *msg = NULL;
  3455. xs *c_msg = NULL;
  3456. xs *content_2 = xs_replace(content, "\r", "");
  3457. xs *poll_opts = NULL;
  3458. /* is there a valid set of poll options? */
  3459. const char *v = xs_dict_get(p_vars, "poll_options");
  3460. if (!xs_is_null(v) && *v) {
  3461. xs *v2 = xs_strip_i(xs_replace(v, "\r", ""));
  3462. poll_opts = xs_split(v2, "\n");
  3463. }
  3464. if (!xs_is_null(poll_opts) && xs_list_len(poll_opts)) {
  3465. /* get the rest of poll configuration */
  3466. const char *p_multiple = xs_dict_get(p_vars, "poll_multiple");
  3467. const char *p_end_secs = xs_dict_get(p_vars, "poll_end_secs");
  3468. int multiple = 0;
  3469. int end_secs = atoi(!xs_is_null(p_end_secs) ? p_end_secs : "60");
  3470. if (!xs_is_null(p_multiple) && strcmp(p_multiple, "on") == 0)
  3471. multiple = 1;
  3472. msg = msg_question(&snac, content_2, attach_list,
  3473. poll_opts, multiple, end_secs);
  3474. enqueue_close_question(&snac, xs_dict_get(msg, "id"), end_secs);
  3475. }
  3476. else
  3477. msg = msg_note(&snac, content_2, to, in_reply_to, attach_list, priv, NULL);
  3478. if (sensitive != NULL) {
  3479. msg = xs_dict_set(msg, "sensitive", xs_stock(XSTYPE_TRUE));
  3480. msg = xs_dict_set(msg, "summary", xs_is_null(summary) ? "..." : summary);
  3481. }
  3482. if (xs_is_null(edit_id)) {
  3483. /* new message */
  3484. const char *id = xs_dict_get(msg, "id");
  3485. if (store_as_draft) {
  3486. draft_add(&snac, id, msg);
  3487. }
  3488. else {
  3489. c_msg = msg_create(&snac, msg);
  3490. timeline_add(&snac, id, msg);
  3491. }
  3492. }
  3493. else {
  3494. /* an edition of a previous message */
  3495. xs *p_msg = NULL;
  3496. if (valid_status(object_get(edit_id, &p_msg))) {
  3497. /* copy relevant fields from previous version */
  3498. char *fields[] = { "id", "context", "url", "published",
  3499. "to", "inReplyTo", NULL };
  3500. int n;
  3501. for (n = 0; fields[n]; n++) {
  3502. const char *v = xs_dict_get(p_msg, fields[n]);
  3503. msg = xs_dict_set(msg, fields[n], v);
  3504. }
  3505. if (store_as_draft) {
  3506. draft_add(&snac, edit_id, msg);
  3507. }
  3508. else
  3509. if (is_draft(&snac, edit_id)) {
  3510. /* message was previously a draft; it's a create activity */
  3511. /* set the published field to now */
  3512. xs *published = xs_str_utctime(0, ISO_DATE_SPEC);
  3513. msg = xs_dict_set(msg, "published", published);
  3514. /* overwrite object */
  3515. object_add_ow(edit_id, msg);
  3516. c_msg = msg_create(&snac, msg);
  3517. timeline_add(&snac, edit_id, msg);
  3518. draft_del(&snac, edit_id);
  3519. }
  3520. else {
  3521. /* set the updated field */
  3522. xs *updated = xs_str_utctime(0, ISO_DATE_SPEC);
  3523. msg = xs_dict_set(msg, "updated", updated);
  3524. /* overwrite object, not updating the indexes */
  3525. object_add_ow(edit_id, msg);
  3526. /* update message */
  3527. c_msg = msg_update(&snac, msg);
  3528. }
  3529. }
  3530. else
  3531. snac_log(&snac, xs_fmt("cannot get object '%s' for editing", edit_id));
  3532. }
  3533. if (c_msg != NULL)
  3534. enqueue_message(&snac, c_msg);
  3535. history_del(&snac, "timeline.html_");
  3536. }
  3537. status = HTTP_STATUS_SEE_OTHER;
  3538. }
  3539. else
  3540. if (p_path && strcmp(p_path, "admin/action") == 0) { /** **/
  3541. /* action on an entry */
  3542. const char *id = xs_dict_get(p_vars, "id");
  3543. const char *actor = xs_dict_get(p_vars, "actor");
  3544. const char *action = xs_dict_get(p_vars, "action");
  3545. const char *group = xs_dict_get(p_vars, "group");
  3546. if (action == NULL)
  3547. return HTTP_STATUS_NOT_FOUND;
  3548. snac_debug(&snac, 1, xs_fmt("web action '%s' received", action));
  3549. status = HTTP_STATUS_SEE_OTHER;
  3550. if (strcmp(action, L("Like")) == 0) { /** **/
  3551. xs *msg = msg_admiration(&snac, id, "Like");
  3552. if (msg != NULL) {
  3553. enqueue_message(&snac, msg);
  3554. timeline_admire(&snac, xs_dict_get(msg, "object"), snac.actor, 1);
  3555. }
  3556. }
  3557. else
  3558. if (strcmp(action, L("Boost")) == 0) { /** **/
  3559. xs *msg = msg_admiration(&snac, id, "Announce");
  3560. if (msg != NULL) {
  3561. enqueue_message(&snac, msg);
  3562. timeline_admire(&snac, xs_dict_get(msg, "object"), snac.actor, 0);
  3563. }
  3564. }
  3565. else
  3566. if (strcmp(action, L("Unlike")) == 0) { /** **/
  3567. xs *msg = msg_repulsion(&snac, id, "Like");
  3568. if (msg != NULL) {
  3569. enqueue_message(&snac, msg);
  3570. }
  3571. }
  3572. else
  3573. if (strcmp(action, L("Unboost")) == 0) { /** **/
  3574. xs *msg = msg_repulsion(&snac, id, "Announce");
  3575. if (msg != NULL) {
  3576. enqueue_message(&snac, msg);
  3577. }
  3578. }
  3579. else
  3580. if (strcmp(action, L("MUTE")) == 0) { /** **/
  3581. mute(&snac, actor);
  3582. }
  3583. else
  3584. if (strcmp(action, L("Unmute")) == 0) { /** **/
  3585. unmute(&snac, actor);
  3586. }
  3587. else
  3588. if (strcmp(action, L("Hide")) == 0) { /** **/
  3589. if (is_draft(&snac, id))
  3590. draft_del(&snac, id);
  3591. else
  3592. hide(&snac, id);
  3593. }
  3594. else
  3595. if (strcmp(action, L("Limit")) == 0) { /** **/
  3596. limit(&snac, actor);
  3597. }
  3598. else
  3599. if (strcmp(action, L("Unlimit")) == 0) { /** **/
  3600. unlimit(&snac, actor);
  3601. }
  3602. else
  3603. if (strcmp(action, L("Follow")) == 0) { /** **/
  3604. xs *msg = msg_follow(&snac, actor);
  3605. if (msg != NULL) {
  3606. /* reload the actor from the message, in may be different */
  3607. actor = xs_dict_get(msg, "object");
  3608. following_add(&snac, actor, msg);
  3609. enqueue_output_by_actor(&snac, msg, actor, 0);
  3610. }
  3611. }
  3612. else
  3613. if (strcmp(action, L("Unfollow")) == 0) { /** **/
  3614. /* get the following object */
  3615. xs *object = NULL;
  3616. if (valid_status(following_get(&snac, actor, &object))) {
  3617. xs *msg = msg_undo(&snac, xs_dict_get(object, "object"));
  3618. following_del(&snac, actor);
  3619. enqueue_output_by_actor(&snac, msg, actor, 0);
  3620. snac_log(&snac, xs_fmt("unfollowed actor %s", actor));
  3621. }
  3622. else
  3623. snac_log(&snac, xs_fmt("actor is not being followed %s", actor));
  3624. }
  3625. else
  3626. if (strcmp(action, L("Follow Group")) == 0) { /** **/
  3627. xs *msg = msg_follow(&snac, group);
  3628. if (msg != NULL) {
  3629. /* reload the group from the message, in may be different */
  3630. group = xs_dict_get(msg, "object");
  3631. following_add(&snac, group, msg);
  3632. enqueue_output_by_actor(&snac, msg, group, 0);
  3633. }
  3634. }
  3635. else
  3636. if (strcmp(action, L("Unfollow Group")) == 0) { /** **/
  3637. /* get the following object */
  3638. xs *object = NULL;
  3639. if (valid_status(following_get(&snac, group, &object))) {
  3640. xs *msg = msg_undo(&snac, xs_dict_get(object, "object"));
  3641. following_del(&snac, group);
  3642. enqueue_output_by_actor(&snac, msg, group, 0);
  3643. snac_log(&snac, xs_fmt("unfollowed group %s", group));
  3644. }
  3645. else
  3646. snac_log(&snac, xs_fmt("actor is not being followed %s", actor));
  3647. }
  3648. else
  3649. if (strcmp(action, L("Delete")) == 0) { /** **/
  3650. const char *actor_form = xs_dict_get(p_vars, "actor-form");
  3651. if (actor_form != NULL) {
  3652. /* delete follower */
  3653. if (valid_status(follower_del(&snac, actor)))
  3654. snac_log(&snac, xs_fmt("deleted follower %s", actor));
  3655. else
  3656. snac_log(&snac, xs_fmt("error deleting follower %s", actor));
  3657. }
  3658. else {
  3659. /* delete an entry */
  3660. if (xs_startswith(id, snac.actor) && !is_draft(&snac, id)) {
  3661. /* it's a post by us: generate a delete */
  3662. xs *msg = msg_delete(&snac, id);
  3663. enqueue_message(&snac, msg);
  3664. snac_log(&snac, xs_fmt("posted tombstone for %s", id));
  3665. }
  3666. timeline_del(&snac, id);
  3667. draft_del(&snac, id);
  3668. snac_log(&snac, xs_fmt("deleted entry %s", id));
  3669. }
  3670. }
  3671. else
  3672. if (strcmp(action, L("Pin")) == 0) { /** **/
  3673. pin(&snac, id);
  3674. timeline_touch(&snac);
  3675. }
  3676. else
  3677. if (strcmp(action, L("Unpin")) == 0) { /** **/
  3678. unpin(&snac, id);
  3679. timeline_touch(&snac);
  3680. }
  3681. else
  3682. if (strcmp(action, L("Bookmark")) == 0) { /** **/
  3683. bookmark(&snac, id);
  3684. timeline_touch(&snac);
  3685. }
  3686. else
  3687. if (strcmp(action, L("Unbookmark")) == 0) { /** **/
  3688. unbookmark(&snac, id);
  3689. timeline_touch(&snac);
  3690. }
  3691. else
  3692. if (strcmp(action, L("Approve")) == 0) { /** **/
  3693. xs *fwreq = pending_get(&snac, actor);
  3694. if (fwreq != NULL) {
  3695. xs *reply = msg_accept(&snac, fwreq, actor);
  3696. enqueue_message(&snac, reply);
  3697. if (xs_is_null(xs_dict_get(fwreq, "published"))) {
  3698. /* add a date if it doesn't include one (Mastodon) */
  3699. xs *date = xs_str_utctime(0, ISO_DATE_SPEC);
  3700. fwreq = xs_dict_set(fwreq, "published", date);
  3701. }
  3702. timeline_add(&snac, xs_dict_get(fwreq, "id"), fwreq);
  3703. follower_add(&snac, actor);
  3704. pending_del(&snac, actor);
  3705. snac_log(&snac, xs_fmt("new follower %s", actor));
  3706. }
  3707. }
  3708. else
  3709. if (strcmp(action, L("Discard")) == 0) { /** **/
  3710. pending_del(&snac, actor);
  3711. }
  3712. else
  3713. status = HTTP_STATUS_NOT_FOUND;
  3714. /* delete the cached timeline */
  3715. if (status == HTTP_STATUS_SEE_OTHER)
  3716. history_del(&snac, "timeline.html_");
  3717. }
  3718. else
  3719. if (p_path && strcmp(p_path, "admin/user-setup") == 0) { /** **/
  3720. /* change of user data */
  3721. const char *v;
  3722. const char *p1, *p2;
  3723. if ((v = xs_dict_get(p_vars, "name")) != NULL)
  3724. snac.config = xs_dict_set(snac.config, "name", v);
  3725. if ((v = xs_dict_get(p_vars, "avatar")) != NULL)
  3726. snac.config = xs_dict_set(snac.config, "avatar", v);
  3727. if ((v = xs_dict_get(p_vars, "bio")) != NULL)
  3728. snac.config = xs_dict_set(snac.config, "bio", v);
  3729. if ((v = xs_dict_get(p_vars, "cw")) != NULL &&
  3730. strcmp(v, "on") == 0) {
  3731. snac.config = xs_dict_set(snac.config, "cw", "open");
  3732. } else { /* if the checkbox is not set, the parameter is missing */
  3733. snac.config = xs_dict_set(snac.config, "cw", "");
  3734. }
  3735. if ((v = xs_dict_get(p_vars, "email")) != NULL)
  3736. snac.config = xs_dict_set(snac.config, "email", v);
  3737. if ((v = xs_dict_get(p_vars, "telegram_bot")) != NULL)
  3738. snac.config = xs_dict_set(snac.config, "telegram_bot", v);
  3739. if ((v = xs_dict_get(p_vars, "telegram_chat_id")) != NULL)
  3740. snac.config = xs_dict_set(snac.config, "telegram_chat_id", v);
  3741. if ((v = xs_dict_get(p_vars, "ntfy_server")) != NULL)
  3742. snac.config = xs_dict_set(snac.config, "ntfy_server", v);
  3743. if ((v = xs_dict_get(p_vars, "ntfy_token")) != NULL)
  3744. snac.config = xs_dict_set(snac.config, "ntfy_token", v);
  3745. if ((v = xs_dict_get(p_vars, "purge_days")) != NULL) {
  3746. xs *days = xs_number_new(atof(v));
  3747. snac.config = xs_dict_set(snac.config, "purge_days", days);
  3748. }
  3749. if ((v = xs_dict_get(p_vars, "drop_dm_from_unknown")) != NULL && strcmp(v, "on") == 0)
  3750. snac.config = xs_dict_set(snac.config, "drop_dm_from_unknown", xs_stock(XSTYPE_TRUE));
  3751. else
  3752. snac.config = xs_dict_set(snac.config, "drop_dm_from_unknown", xs_stock(XSTYPE_FALSE));
  3753. if ((v = xs_dict_get(p_vars, "bot")) != NULL && strcmp(v, "on") == 0)
  3754. snac.config = xs_dict_set(snac.config, "bot", xs_stock(XSTYPE_TRUE));
  3755. else
  3756. snac.config = xs_dict_set(snac.config, "bot", xs_stock(XSTYPE_FALSE));
  3757. if ((v = xs_dict_get(p_vars, "private")) != NULL && strcmp(v, "on") == 0)
  3758. snac.config = xs_dict_set(snac.config, "private", xs_stock(XSTYPE_TRUE));
  3759. else
  3760. snac.config = xs_dict_set(snac.config, "private", xs_stock(XSTYPE_FALSE));
  3761. if ((v = xs_dict_get(p_vars, "auto_boost")) != NULL && strcmp(v, "on") == 0)
  3762. snac.config = xs_dict_set(snac.config, "auto_boost", xs_stock(XSTYPE_TRUE));
  3763. else
  3764. snac.config = xs_dict_set(snac.config, "auto_boost", xs_stock(XSTYPE_FALSE));
  3765. if ((v = xs_dict_get(p_vars, "collapse_threads")) != NULL && strcmp(v, "on") == 0)
  3766. snac.config = xs_dict_set(snac.config, "collapse_threads", xs_stock(XSTYPE_TRUE));
  3767. else
  3768. snac.config = xs_dict_set(snac.config, "collapse_threads", xs_stock(XSTYPE_FALSE));
  3769. if ((v = xs_dict_get(p_vars, "approve_followers")) != NULL && strcmp(v, "on") == 0)
  3770. snac.config = xs_dict_set(snac.config, "approve_followers", xs_stock(XSTYPE_TRUE));
  3771. else
  3772. snac.config = xs_dict_set(snac.config, "approve_followers", xs_stock(XSTYPE_FALSE));
  3773. if ((v = xs_dict_get(p_vars, "show_contact_metrics")) != NULL && strcmp(v, "on") == 0)
  3774. snac.config = xs_dict_set(snac.config, "show_contact_metrics", xs_stock(XSTYPE_TRUE));
  3775. else
  3776. snac.config = xs_dict_set(snac.config, "show_contact_metrics", xs_stock(XSTYPE_FALSE));
  3777. if ((v = xs_dict_get(p_vars, "web_ui_lang")) != NULL)
  3778. snac.config = xs_dict_set(snac.config, "lang", v);
  3779. snac.config = xs_dict_set(snac.config, "latitude", xs_dict_get_def(p_vars, "latitude", ""));
  3780. snac.config = xs_dict_set(snac.config, "longitude", xs_dict_get_def(p_vars, "longitude", ""));
  3781. if ((v = xs_dict_get(p_vars, "metadata")) != NULL)
  3782. snac.config = xs_dict_set(snac.config, "metadata", v);
  3783. /* uploads */
  3784. const char *uploads[] = { "avatar", "header", NULL };
  3785. int n;
  3786. for (n = 0; uploads[n]; n++) {
  3787. xs *var_name = xs_fmt("%s_file", uploads[n]);
  3788. const xs_list *uploaded_file = xs_dict_get(p_vars, var_name);
  3789. if (xs_type(uploaded_file) == XSTYPE_LIST) {
  3790. const char *fn = xs_list_get(uploaded_file, 0);
  3791. if (fn && *fn) {
  3792. const char *mimetype = xs_mime_by_ext(fn);
  3793. if (xs_startswith(mimetype, "image/")) {
  3794. const char *ext = strrchr(fn, '.');
  3795. xs *hash = xs_md5_hex(fn, strlen(fn));
  3796. xs *id = xs_fmt("%s%s", hash, ext);
  3797. xs *url = xs_fmt("%s/s/%s", snac.actor, id);
  3798. int fo = xs_number_get(xs_list_get(uploaded_file, 1));
  3799. int fs = xs_number_get(xs_list_get(uploaded_file, 2));
  3800. /* store */
  3801. static_put(&snac, id, payload + fo, fs);
  3802. snac.config = xs_dict_set(snac.config, uploads[n], url);
  3803. }
  3804. }
  3805. }
  3806. }
  3807. /* delete images by removing url from user.json */
  3808. for (n = 0; uploads[n]; n++) {
  3809. xs *var_name = xs_fmt("%s_delete", uploads[n]);
  3810. const char *delete_var = xs_dict_get(p_vars, var_name);
  3811. if (delete_var != NULL && strcmp(delete_var, "on") == 0) {
  3812. snac.config = xs_dict_set(snac.config, uploads[n], "");
  3813. }
  3814. }
  3815. /* password change? */
  3816. if ((p1 = xs_dict_get(p_vars, "passwd1")) != NULL &&
  3817. (p2 = xs_dict_get(p_vars, "passwd2")) != NULL &&
  3818. *p1 && strcmp(p1, p2) == 0) {
  3819. xs *pw = hash_password(snac.uid, p1, NULL);
  3820. snac.config = xs_dict_set(snac.config, "passwd", pw);
  3821. }
  3822. user_persist(&snac, 1);
  3823. status = HTTP_STATUS_SEE_OTHER;
  3824. }
  3825. else
  3826. if (p_path && strcmp(p_path, "admin/clear-notifications") == 0) { /** **/
  3827. notify_clear(&snac);
  3828. timeline_touch(&snac);
  3829. status = HTTP_STATUS_SEE_OTHER;
  3830. }
  3831. else
  3832. if (p_path && strcmp(p_path, "admin/vote") == 0) { /** **/
  3833. const char *irt = xs_dict_get(p_vars, "irt");
  3834. const char *opt = xs_dict_get(p_vars, "question");
  3835. const char *actor = xs_dict_get(p_vars, "actor");
  3836. xs *ls = NULL;
  3837. /* multiple choices? */
  3838. if (xs_type(opt) == XSTYPE_LIST)
  3839. ls = xs_dup(opt);
  3840. else
  3841. if (xs_type(opt) == XSTYPE_STRING) {
  3842. ls = xs_list_new();
  3843. ls = xs_list_append(ls, opt);
  3844. }
  3845. const xs_str *v;
  3846. int c = 0;
  3847. while (xs_list_next(ls, &v, &c)) {
  3848. xs *msg = msg_note(&snac, "", actor, irt, NULL, 1, NULL);
  3849. /* set the option */
  3850. msg = xs_dict_append(msg, "name", v);
  3851. xs *c_msg = msg_create(&snac, msg);
  3852. enqueue_message(&snac, c_msg);
  3853. timeline_add(&snac, xs_dict_get(msg, "id"), msg);
  3854. }
  3855. if (ls != NULL) {
  3856. /* get the poll object */
  3857. xs *poll = NULL;
  3858. if (valid_status(object_get(irt, &poll))) {
  3859. const char *date = xs_dict_get(poll, "endTime");
  3860. if (xs_is_null(date))
  3861. date = xs_dict_get(poll, "closed");
  3862. if (!xs_is_null(date)) {
  3863. time_t t = xs_parse_iso_date(date, 0) - time(NULL);
  3864. /* request the poll when it's closed;
  3865. Pleroma does not send and update when the poll closes */
  3866. enqueue_object_request(&snac, irt, t + 2);
  3867. }
  3868. }
  3869. }
  3870. status = HTTP_STATUS_SEE_OTHER;
  3871. }
  3872. else
  3873. if (p_path && strcmp(p_path, "admin/followed-hashtags") == 0) { /** **/
  3874. const char *followed_hashtags = xs_dict_get(p_vars, "followed_hashtags");
  3875. if (xs_is_string(followed_hashtags)) {
  3876. xs *new_hashtags = xs_list_new();
  3877. xs *l = xs_split(followed_hashtags, "\n");
  3878. const char *v;
  3879. xs_list_foreach(l, v) {
  3880. xs *s1 = xs_strip_i(xs_dup(v));
  3881. s1 = xs_replace_i(s1, " ", "");
  3882. if (*s1 == '\0')
  3883. continue;
  3884. xs *s2 = xs_utf8_to_lower(s1);
  3885. if (*s2 != '#')
  3886. s2 = xs_str_prepend_i(s2, "#");
  3887. new_hashtags = xs_list_append(new_hashtags, s2);
  3888. }
  3889. snac.config = xs_dict_set(snac.config, "followed_hashtags", new_hashtags);
  3890. user_persist(&snac, 0);
  3891. }
  3892. status = HTTP_STATUS_SEE_OTHER;
  3893. }
  3894. if (status == HTTP_STATUS_SEE_OTHER) {
  3895. const char *redir = xs_dict_get(p_vars, "redir");
  3896. if (xs_is_null(redir))
  3897. redir = "top";
  3898. *body = xs_fmt("%s/admin#%s", snac.actor, redir);
  3899. *b_size = strlen(*body);
  3900. }
  3901. user_free(&snac);
  3902. return status;
  3903. }
  3904. xs_str *timeline_to_rss(snac *user, const xs_list *timeline,
  3905. const char *title, const char *link, const char *desc)
  3906. /* converts a timeline to rss */
  3907. {
  3908. xs_html *rss = xs_html_tag("rss",
  3909. xs_html_attr("xmlns:content", "http:/" "/purl.org/rss/1.0/modules/content/"),
  3910. xs_html_attr("version", "2.0"),
  3911. xs_html_attr("xmlns:atom", "http:/" "/www.w3.org/2005/Atom"));
  3912. xs_html *channel = xs_html_tag("channel",
  3913. xs_html_tag("title",
  3914. xs_html_text(title)),
  3915. xs_html_tag("language",
  3916. xs_html_text("en")),
  3917. xs_html_tag("link",
  3918. xs_html_text(link)),
  3919. xs_html_sctag("atom:link",
  3920. xs_html_attr("href", link),
  3921. xs_html_attr("rel", "self"),
  3922. xs_html_attr("type", "application/rss+xml")),
  3923. xs_html_tag("generator",
  3924. xs_html_text(USER_AGENT)),
  3925. xs_html_tag("description",
  3926. xs_html_text(desc)));
  3927. xs_html_add(rss, channel);
  3928. int cnt = 0;
  3929. const char *v;
  3930. xs_list_foreach(timeline, v) {
  3931. xs *msg = NULL;
  3932. if (user) {
  3933. if (!valid_status(timeline_get_by_md5(user, v, &msg)))
  3934. continue;
  3935. }
  3936. else {
  3937. if (!valid_status(object_get_by_md5(v, &msg)))
  3938. continue;
  3939. }
  3940. const char *id = xs_dict_get(msg, "id");
  3941. const char *content = xs_dict_get(msg, "content");
  3942. const char *published = xs_dict_get(msg, "published");
  3943. if (user && !xs_startswith(id, user->actor))
  3944. continue;
  3945. if (!id || !content || !published)
  3946. continue;
  3947. /* create a title with the first line of the content */
  3948. xs *title = xs_replace(content, "<br>", "\n");
  3949. title = xs_regex_replace_i(title, "<[^>]+>", " ");
  3950. title = xs_regex_replace_i(title, "&[^;]+;", " ");
  3951. int i;
  3952. for (i = 0; title[i] && title[i] != '\n' && i < 50; i++);
  3953. if (title[i] != '\0') {
  3954. title[i] = '\0';
  3955. title = xs_str_cat(title, "...");
  3956. }
  3957. title = xs_strip_i(title);
  3958. /* convert the date */
  3959. time_t t = xs_parse_iso_date(published, 0);
  3960. xs *rss_date = xs_str_utctime(t, "%a, %d %b %Y %T +0000");
  3961. /* if it's the first one, add it to the header */
  3962. if (cnt == 0)
  3963. xs_html_add(channel,
  3964. xs_html_tag("lastBuildDate",
  3965. xs_html_text(rss_date)));
  3966. xs_html_add(channel,
  3967. xs_html_tag("item",
  3968. xs_html_tag("title",
  3969. xs_html_text(title)),
  3970. xs_html_tag("link",
  3971. xs_html_text(id)),
  3972. xs_html_tag("guid",
  3973. xs_html_text(id)),
  3974. xs_html_tag("pubDate",
  3975. xs_html_text(rss_date)),
  3976. xs_html_tag("description",
  3977. xs_html_text(content))));
  3978. cnt++;
  3979. }
  3980. return xs_html_render_s(rss, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
  3981. }