snac2/html.c

954 lines
25 KiB
C
Raw Normal View History

2022-09-27 10:07:07 +03:00
/* snac - A simple, minimalistic ActivityPub instance */
/* copyright (c) 2022 grunfink - MIT license */
#include "xs.h"
#include "xs_io.h"
2022-09-28 06:36:35 +03:00
#include "xs_encdec.h"
2022-09-27 10:07:07 +03:00
#include "xs_json.h"
2022-09-27 11:51:50 +03:00
#include "xs_regex.h"
2022-09-28 11:27:01 +03:00
#include "xs_set.h"
2022-09-29 10:52:23 +03:00
#include "xs_openssl.h"
2022-09-27 10:07:07 +03:00
#include "snac.h"
d_char *not_really_markdown(char *content, d_char **f_content)
/* formats a content using some Markdown rules */
{
d_char *s = NULL;
int in_pre = 0;
int in_blq = 0;
xs *list;
char *p, *v;
xs *wrk = xs_str_new(NULL);
2022-09-27 11:51:50 +03:00
{
/* split by special markup */
xs *sm = xs_regex_split(content,
"(`[^`]+`|\\*\\*?[^\\*]+\\*?\\*|https?:/" "/[^ ]*)");
int n = 0;
2022-09-27 11:51:50 +03:00
p = sm;
2022-09-27 11:51:50 +03:00
while (xs_list_iter(&p, &v)) {
if ((n & 0x1)) {
/* markup */
if (xs_startswith(v, "`")) {
xs *s1 = xs_crop(xs_dup(v), 1, -1);
xs *s2 = xs_fmt("<code>%s</code>", s1);
wrk = xs_str_cat(wrk, s2);
}
else
if (xs_startswith(v, "**")) {
xs *s1 = xs_crop(xs_dup(v), 2, -2);
xs *s2 = xs_fmt("<b>%s</b>", s1);
wrk = xs_str_cat(wrk, s2);
}
else
if (xs_startswith(v, "*")) {
xs *s1 = xs_crop(xs_dup(v), 1, -1);
xs *s2 = xs_fmt("<i>%s</i>", s1);
wrk = xs_str_cat(wrk, s2);
}
else
if (xs_startswith(v, "http")) {
xs *s1 = xs_fmt("<a href=\"%s\">%s</a>", v, v);
wrk = xs_str_cat(wrk, s1);
}
else
/* what the hell is this */
wrk = xs_str_cat(wrk, v);
}
else
/* surrounded text, copy directly */
wrk = xs_str_cat(wrk, v);
n++;
2022-09-27 11:51:50 +03:00
}
}
/* now work by lines */
2022-09-27 11:51:50 +03:00
p = list = xs_split(wrk, "\n");
s = xs_str_new(NULL);
while (xs_list_iter(&p, &v)) {
xs *ss = xs_strip(xs_dup(v));
if (xs_startswith(ss, "```")) {
if (!in_pre)
s = xs_str_cat(s, "<pre>");
else
s = xs_str_cat(s, "</pre>");
in_pre = !in_pre;
continue;
}
if (xs_startswith(ss, ">")) {
/* delete the > and subsequent spaces */
ss = xs_strip(xs_crop(ss, 1, 0));
if (!in_blq) {
s = xs_str_cat(s, "<blockquote>");
in_blq = 1;
}
s = xs_str_cat(s, ss);
s = xs_str_cat(s, "<br>");
continue;
}
if (in_blq) {
s = xs_str_cat(s, "</blockquote>");
in_blq = 0;
}
s = xs_str_cat(s, ss);
s = xs_str_cat(s, "<br>");
}
if (in_blq)
s = xs_str_cat(s, "</blockquote>");
if (in_pre)
s = xs_str_cat(s, "</pre>");
/* some beauty fixes */
2022-09-27 11:20:33 +03:00
s = xs_replace_i(s, "</blockquote><br>", "</blockquote>");
*f_content = s;
return *f_content;
}
2022-09-28 06:22:08 +03:00
2022-09-28 06:36:35 +03:00
int login(snac *snac, char *headers)
/* tries a login */
{
int logged_in = 0;
char *auth = xs_dict_get(headers, "authorization");
if (auth && xs_startswith(auth, "Basic ")) {
int sz;
xs *s1 = xs_crop(xs_dup(auth), 6, 0);
xs *s2 = xs_base64_dec(s1, &sz);
xs *l1 = xs_split_n(s2, ":", 1);
if (xs_list_len(l1) == 2) {
logged_in = check_password(
xs_list_get(l1, 0), xs_list_get(l1, 1),
xs_dict_get(snac->config, "passwd"));
}
}
return logged_in;
}
2022-09-29 10:19:42 +03:00
d_char *html_msg_icon(snac *snac, d_char *os, char *msg)
2022-09-28 08:05:23 +03:00
{
char *actor_id;
xs *actor = NULL;
2022-09-29 10:19:42 +03:00
xs *s = xs_str_new(NULL);
2022-09-28 08:05:23 +03:00
if ((actor_id = xs_dict_get(msg, "attributedTo")) == NULL)
actor_id = xs_dict_get(msg, "actor");
if (actor_id && valid_status(actor_get(snac, actor_id, &actor))) {
xs *name = NULL;
xs *avatar = NULL;
char *v;
/* get the name */
if ((v = xs_dict_get(actor, "name")) == NULL || *v == '\0') {
2022-09-28 08:05:23 +03:00
if ((v = xs_dict_get(actor, "preferredUsername")) == NULL) {
v = "user";
}
}
name = xs_dup(v);
/* get the avatar */
if ((v = xs_dict_get(actor, "icon")) != NULL &&
(v = xs_dict_get(v, "url")) != NULL) {
avatar = xs_dup(v);
}
if (avatar == NULL)
avatar = xs_fmt("data:image/png;base64, %s", susie);
{
2022-09-28 18:12:39 +03:00
xs *s1 = xs_fmt("<p><img class=\"snac-avatar\" src=\"%s\" alt=\"\"/>\n", avatar);
2022-09-28 08:05:23 +03:00
s = xs_str_cat(s, s1);
}
{
xs *s1 = xs_fmt("<a href=\"%s\" class=\"p-author h-card snac-author\">%s</a>",
2022-09-28 10:46:21 +03:00
actor_id, name);
2022-09-28 08:05:23 +03:00
s = xs_str_cat(s, s1);
}
if (strcmp(xs_dict_get(msg, "type"), "Note") == 0) {
xs *s1 = xs_fmt(" <a href=\"%s\">»</a>", xs_dict_get(msg, "id"));
s = xs_str_cat(s, s1);
}
if (!is_msg_public(snac, msg))
s = xs_str_cat(s, " <span title=\"private\">&#128274;</span>");
if ((v = xs_dict_get(msg, "published")) == NULL)
v = "&nbsp;";
{
xs *s1 = xs_fmt("<br>\n<time class=\"dt-published snac-pubdate\">%s</time>\n", v);
s = xs_str_cat(s, s1);
}
}
2022-09-29 10:19:42 +03:00
return xs_str_cat(os, s);
2022-09-28 08:05:23 +03:00
}
2022-09-28 10:46:21 +03:00
d_char *html_user_header(snac *snac, d_char *s, int local)
2022-09-28 10:29:09 +03:00
/* creates the HTML header */
{
char *p, *v;
s = xs_str_cat(s, "<!DOCTYPE html>\n<html>\n<head>\n");
s = xs_str_cat(s, "<meta name=\"viewport\" "
"content=\"width=device-width, initial-scale=1\"/>\n");
s = xs_str_cat(s, "<meta name=\"generator\" "
"content=\"" USER_AGENT "\"/>\n");
/* add server CSS */
p = xs_dict_get(srv_config, "cssurls");
while (xs_list_iter(&p, &v)) {
xs *s1 = xs_fmt("<link rel=\"stylesheet\" type=\"text/css\" href=\"%s\"/>\n", v);
s = xs_str_cat(s, s1);
}
/* add the user CSS */
{
xs *css = NULL;
int size;
if (valid_status(static_get(snac, "style.css", &css, &size))) {
xs *s1 = xs_fmt("<style>%s</style>\n", css);
s = xs_str_cat(s, s1);
}
}
{
xs *s1 = xs_fmt("<title>%s</title>\n", xs_dict_get(snac->config, "name"));
s = xs_str_cat(s, s1);
}
s = xs_str_cat(s, "</head>\n<body>\n");
2022-09-28 10:46:21 +03:00
/* top nav */
2022-09-28 18:39:32 +03:00
s = xs_str_cat(s, "<nav class=\"snac-top-nav\">");
2022-09-28 10:46:21 +03:00
{
xs *s1;
if (local)
2022-09-28 17:16:18 +03:00
s1 = xs_fmt("<a href=\"%s/admin\">%s</a></nav>\n", snac->actor, L("admin"));
2022-09-28 10:46:21 +03:00
else
2022-09-28 17:16:18 +03:00
s1 = xs_fmt("<a href=\"%s\">%s</a></nav>\n", snac->actor, L("public"));
2022-09-28 10:46:21 +03:00
s = xs_str_cat(s, s1);
}
/* user info */
{
2022-09-28 11:21:57 +03:00
xs *bio = NULL;
char *_tmpl =
"<div class=\"h-card snac-top-user\">\n"
"<p class=\"p-name snac-top-user-name\">%s</p>\n"
"<p class=\"snac-top-user-id\">@%s@%s</p>\n"
"<div class=\"p-note snac-top-user-bio\">%s</div>\n"
"</div>\n";
not_really_markdown(xs_dict_get(snac->config, "bio"), &bio);
xs *s1 = xs_fmt(_tmpl,
xs_dict_get(snac->config, "name"),
xs_dict_get(snac->config, "uid"), xs_dict_get(srv_config, "host"),
bio
);
2022-09-28 10:46:21 +03:00
s = xs_str_cat(s, s1);
2022-09-28 11:21:57 +03:00
}
2022-09-28 10:46:21 +03:00
2022-09-28 11:21:57 +03:00
return s;
}
2022-09-28 10:46:21 +03:00
2022-09-28 11:21:57 +03:00
d_char *html_top_controls(snac *snac, d_char *s)
/* generates the top controls */
{
char *_tmpl =
"<div class=\"snac-top-controls\">\n"
"<div class=\"snac-note\">\n"
"<form method=\"post\" action=\"%s/admin/note\">\n"
"<textarea class=\"snac-textarea\" name=\"content\" "
"rows=\"8\" wrap=\"virtual\" required=\"required\"></textarea>\n"
"<input type=\"hidden\" name=\"in_reply_to\" value=\"\">\n"
"<input type=\"submit\" class=\"button\" value=\"%s\">\n"
"</form><p>\n"
"</div>\n"
"<div class=\"snac-top-controls-more\">\n"
"<details><summary>%s</summary>\n"
"<form method=\"post\" action=\"%s/admin/action\">\n"
"<input type=\"text\" name=\"actor\" required=\"required\">\n"
"<input type=\"submit\" name=\"action\" value=\"%s\"> %s\n"
"</form></p>\n"
"<form method=\"post\" action=\"%s\">\n"
"<input type=\"text\" name=\"id\" required=\"required\">\n"
"<input type=\"submit\" name=\"action\" value=\"%s\"> %s\n"
"</form></p>\n"
"<details><summary>%s</summary>\n"
"<div class=\"snac-user-setup\">\n"
"<form method=\"post\" action=\"%s/admin/user-setup\">\n"
"<p>%s:<br>\n"
"<input type=\"text\" name=\"name\" value=\"%s\"></p>\n"
"<p>%s:<br>\n"
"<input type=\"text\" name=\"avatar\" value=\"%s\"></p>\n"
"<p>%s:<br>\n"
"<textarea name=\"bio\" cols=60 rows=4>%s</textarea></p>\n"
"<p>%s:<br>\n"
"<input type=\"password\" name=\"passwd1\" value=\"\"></p>\n"
"<p>%s:<br>\n"
"<input type=\"password\" name=\"passwd2\" value=\"\"></p>\n"
"<input type=\"submit\" class=\"button\" value=\"%s\">\n"
"</form>\n"
"</div>\n"
"</details>\n"
"</details>\n"
"</div>\n"
"</div>\n";
xs *s1 = xs_fmt(_tmpl,
snac->actor,
L("Post"),
L("More options..."),
snac->actor,
L("Follow"), L("(by URL or user@host)"),
snac->actor,
L("Boost"), L("(by URL)"),
L("User setup..."),
snac->actor,
L("User name"),
xs_dict_get(snac->config, "name"),
L("Avatar URL"),
xs_dict_get(snac->config, "avatar"),
L("Bio"),
xs_dict_get(snac->config, "bio"),
L("Password (only to change it)"),
L("Repeat Password"),
L("Update user info")
);
s = xs_str_cat(s, s1);
2022-09-28 10:46:21 +03:00
2022-09-28 10:29:09 +03:00
return s;
}
2022-09-29 11:27:09 +03:00
d_char *html_button(d_char *s, char *clss, char *label)
{
xs *s1 = xs_fmt(
"<input type=\"submit\" name=\"action\" "
"class=\"snac-btn-%s\" value=\"%s\">\n",
clss, label);
return xs_str_cat(s, s1);
}
2022-09-29 10:52:23 +03:00
d_char *html_entry_controls(snac *snac, d_char *os, char *msg)
{
char *id = xs_dict_get(msg, "id");
char *actor = xs_dict_get(msg, "attributedTo");
2022-09-29 11:18:28 +03:00
char *meta = xs_dict_get(msg, "_snac");
2022-09-29 10:52:23 +03:00
xs *s = xs_str_new(NULL);
xs *md5 = xs_md5_hex(id, strlen(id));
s = xs_str_cat(s, "<div class=\"snac-controls\">\n");
{
xs *s1 = xs_fmt(
"<form method=\"post\" action=\"%s/admin/action\">\n"
"<input type=\"hidden\" name=\"id\" value=\"%s\">\n"
"<input type=\"hidden\" name=\"actor\" value=\"%s\">\n"
"<input type=\"button\" name=\"action\" "
"value=\"%s\" onclick=\""
"x = document.getElementById('%s_reply'); "
"if (x.style.display == 'block') "
" x.style.display = 'none'; else "
" x.style.display = 'block';"
"\">\n",
snac->actor, id, actor,
L("Reply"),
md5
);
s = xs_str_cat(s, s1);
}
if (strcmp(actor, snac->actor) != 0) {
/* controls for other actors than this one */
2022-09-29 11:18:28 +03:00
char *l;
l = xs_dict_get(meta, "liked_by");
if (xs_list_in(l, snac->actor) == -1) {
/* not already liked; add button */
2022-09-29 11:27:09 +03:00
s = html_button(s, "like", L("Like"));
2022-09-29 11:18:28 +03:00
}
l = xs_dict_get(meta, "announced_by");
if (xs_list_in(l, snac->actor) == -1) {
/* not already boosted; add button */
2022-09-29 11:27:09 +03:00
s = html_button(s, "boost", L("Boost"));
2022-09-29 11:18:28 +03:00
}
if (following_check(snac, actor)) {
2022-09-29 11:27:09 +03:00
s = html_button(s, "unfollow", L("Unfollow"));
2022-09-29 11:18:28 +03:00
}
else {
2022-09-29 11:27:09 +03:00
s = html_button(s, "follow", L("Follow"));
s = html_button(s, "mute", L("MUTE"));
2022-09-29 11:18:28 +03:00
}
}
2022-09-29 11:27:09 +03:00
s = html_button(s, "delete", L("Delete"));
2022-09-29 10:52:23 +03:00
s = xs_str_cat(s, "</form>\n");
{
2022-09-29 11:27:09 +03:00
/* the post textarea */
2022-09-29 10:52:23 +03:00
xs *ct = xs_str_new("");
xs *s1 = xs_fmt(
"<p><div class=\"snac-note\" style=\"display: none\" id=\"%s_reply\">\n"
"<form method=\"post\" action=\"%s/admin/note\" id=\"%s_reply_form\">\n"
"<textarea class=\"snac-textarea\" name=\"content\" "
"rows=\"4\" wrap=\"virtual\" required=\"required\">%s</textarea>\n"
"<input type=\"hidden\" name=\"in_reply_to\" value=\"%s\">\n"
"<input type=\"submit\" class=\"button\" value=\"%s\">\n"
"</form><p></div>\n",
md5,
snac->actor, md5,
ct,
id,
L("Post")
);
s = xs_str_cat(s, s1);
}
2022-09-29 11:18:28 +03:00
s = xs_str_cat(s, "</div>\n");
2022-09-29 10:52:23 +03:00
return xs_str_cat(os, s);
}
d_char *html_entry(snac *snac, d_char *os, char *msg, xs_set *seen, int local, int level)
2022-09-28 11:40:35 +03:00
{
2022-09-28 16:41:07 +03:00
char *id = xs_dict_get(msg, "id");
char *type = xs_dict_get(msg, "type");
char *meta = xs_dict_get(msg, "_snac");
xs *actor_o = NULL;
char *actor;
2022-09-28 11:40:35 +03:00
/* return if already seen */
if (xs_set_add(seen, id) == 0)
return os;
2022-09-28 11:40:35 +03:00
xs *s = xs_str_new(NULL);
if (strcmp(type, "Follow") == 0) {
actor = xs_dict_get(msg, "actor");
s = xs_str_cat(s, "<div class=\"snac-post\">\n");
xs *s1 = xs_fmt("<div class=\"snac-origin\">%s</div>\n", L("follows you"));
s = xs_str_cat(s, s1);
s = html_msg_icon(snac, s, msg);
s = xs_str_cat(s, "</div>\n");
return xs_str_cat(os, s);
}
2022-09-28 16:41:07 +03:00
/* bring the main actor */
if ((actor = xs_dict_get(msg, "attributedTo")) == NULL)
return os;
2022-09-28 16:41:07 +03:00
2022-10-01 08:45:36 +03:00
/* ignore muted morons immediately */
if (is_muted(snac, actor))
return os;
2022-09-28 16:41:07 +03:00
if (!valid_status(actor_get(snac, actor, &actor_o)))
return os;
2022-09-28 18:39:32 +03:00
/* if this is our post, add the score */
if (xs_startswith(id, snac->actor)) {
int likes = xs_list_len(xs_dict_get(meta, "liked_by"));
int boosts = xs_list_len(xs_dict_get(meta, "announced_by"));
xs *s1 = xs_fmt(
"<div class=\"snac-score\">%d &#9733; %d &#8634;</div>\n",
likes, boosts);
s = xs_str_cat(s, s1);
}
2022-09-28 16:41:07 +03:00
if (level == 0) {
2022-10-01 20:10:12 +03:00
char *p;
2022-09-28 16:41:07 +03:00
s = xs_str_cat(s, "<div class=\"snac-post\">\n");
/* print the origin of the post, if any */
2022-10-01 20:10:12 +03:00
if (!xs_is_null(p = xs_dict_get(meta, "referrer"))) {
2022-09-28 16:41:07 +03:00
xs *actor_r = NULL;
2022-10-01 20:10:12 +03:00
if (valid_status(actor_get(snac, p, &actor_r))) {
2022-09-28 16:41:07 +03:00
char *name;
if ((name = xs_dict_get(actor_r, "name")) == NULL)
name = xs_dict_get(actor_r, "preferredUsername");
xs *s1 = xs_fmt(
2022-09-28 17:16:18 +03:00
"<div class=\"snac-origin\">"
"<a href=\"%s\">%s</a> %s</div>\n",
2022-09-28 16:41:07 +03:00
xs_dict_get(actor_r, "id"),
name,
L("boosted")
2022-09-28 16:41:07 +03:00
);
s = xs_str_cat(s, s1);
}
}
else
2022-10-01 20:10:12 +03:00
if (!xs_is_null((p = xs_dict_get(meta, "parent"))) && *p) {
/* this may happen if any of the autor or the parent aren't here */
xs *s1 = xs_fmt(
"<div class=\"snac-origin\">%s "
"<a href=\"%s\">»</a></div>\n",
2022-10-01 20:10:12 +03:00
L("in reply to"), p
);
s = xs_str_cat(s, s1);
}
else
if (!xs_is_null((p = xs_dict_get(meta, "announced_by"))) &&
xs_list_in(p, snac->actor) != -1) {
/* we boosted this */
xs *s1 = xs_fmt(
"<div class=\"snac-origin\">"
"<a href=\"%s\">%s</a> %s</a></div>",
snac->actor, xs_dict_get(snac->config, "name"), L("liked")
);
s = xs_str_cat(s, s1);
}
else
if (!xs_is_null((p = xs_dict_get(meta, "liked_by"))) &&
xs_list_in(p, snac->actor) != -1) {
/* we liked this */
xs *s1 = xs_fmt(
"<div class=\"snac-origin\">"
"<a href=\"%s\">%s</a> %s</a></div>",
snac->actor, xs_dict_get(snac->config, "name"), L("liked")
);
s = xs_str_cat(s, s1);
}
2022-09-28 16:41:07 +03:00
}
else
s = xs_str_cat(s, "<div class=\"snac-child\">\n");
s = html_msg_icon(snac, s, msg);
/* add the content */
2022-09-28 18:12:39 +03:00
s = xs_str_cat(s, "<div class=\"e-content snac-content\">\n");
2022-09-28 16:41:07 +03:00
{
xs *c = xs_dup(xs_dict_get(msg, "content"));
/* do some tweaks to the content */
c = xs_replace_i(c, "\r", "");
while (xs_endswith(c, "<br><br>"))
c = xs_crop(c, 0, -4);
c = xs_replace_i(c, "<br><br>", "<p>");
if (!xs_startswith(c, "<p>")) {
xs *s1 = c;
c = xs_fmt("<p>%s</p>", s1);
}
2022-09-28 18:12:39 +03:00
s = xs_str_cat(s, c);
}
2022-09-28 16:41:07 +03:00
2022-09-29 10:52:23 +03:00
s = xs_str_cat(s, "\n");
2022-09-28 18:12:39 +03:00
/* add the attachments */
char *attach;
2022-09-28 17:16:18 +03:00
2022-09-28 18:12:39 +03:00
if ((attach = xs_dict_get(msg, "attachment")) != NULL) {
char *v;
while (xs_list_iter(&attach, &v)) {
char *t = xs_dict_get(v, "mediaType");
2022-09-28 17:16:18 +03:00
2022-09-28 18:12:39 +03:00
if (t && xs_startswith(t, "image/")) {
char *url = xs_dict_get(v, "url");
char *name = xs_dict_get(v, "name");
2022-09-28 17:16:18 +03:00
2022-09-28 18:12:39 +03:00
if (url != NULL) {
xs *s1 = xs_fmt("<p><img src=\"%s\" alt=\"%s\"/></p>\n",
url, xs_is_null(name) ? "" : name);
2022-09-28 17:16:18 +03:00
2022-09-28 18:12:39 +03:00
s = xs_str_cat(s, s1);
2022-09-28 17:16:18 +03:00
}
}
}
2022-09-28 18:12:39 +03:00
}
2022-09-29 10:19:42 +03:00
s = xs_str_cat(s, "</div>\n");
2022-09-28 18:12:39 +03:00
2022-09-29 10:52:23 +03:00
/** controls **/
if (!local)
s = html_entry_controls(snac, s, msg);
/** children **/
2022-09-28 18:12:39 +03:00
char *children = xs_dict_get(meta, "children");
if (xs_list_len(children)) {
int left = xs_list_len(children);
char *id;
s = xs_str_cat(s, "<div class=\"snac-children\">\n");
if (left > 3)
s = xs_str_cat(s, "<details><summary>...</summary>\n");
while (xs_list_iter(&children, &id)) {
xs *chd = timeline_find(snac, id);
if (left == 0)
s = xs_str_cat(s, "</details>\n");
if (chd != NULL)
2022-09-29 10:52:23 +03:00
s = html_entry(snac, s, chd, seen, local, level + 1);
2022-09-28 18:12:39 +03:00
else
snac_debug(snac, 1, xs_fmt("cannot read from timeline child %s", id));
left--;
}
2022-09-28 17:16:18 +03:00
2022-09-29 10:19:42 +03:00
s = xs_str_cat(s, "</div>\n");
2022-09-28 16:41:07 +03:00
}
2022-09-29 10:19:42 +03:00
s = xs_str_cat(s, "</div>\n");
2022-09-28 16:41:07 +03:00
return xs_str_cat(os, s);
2022-09-28 11:40:35 +03:00
}
2022-09-28 17:16:18 +03:00
d_char *html_user_footer(snac *snac, d_char *s)
{
xs *s1 = xs_fmt(
"<div class=\"snac-footer\">\n"
"<a href=\"%s\">%s</a> - "
"powered by <abbr title=\"Social Networks Are Crap\">snac</abbr></div>\n",
srv_baseurl,
L("about this site")
);
return xs_str_cat(s, s1);
}
2022-09-28 08:05:23 +03:00
d_char *html_timeline(snac *snac, char *list, int local)
/* returns the HTML for the timeline */
{
d_char *s = xs_str_new(NULL);
2022-09-28 11:40:35 +03:00
xs_set *seen = xs_set_new(4096);
char *v;
2022-09-28 18:18:30 +03:00
double t = ftime();
2022-09-28 08:05:23 +03:00
2022-09-28 10:46:21 +03:00
s = html_user_header(snac, s, local);
2022-09-28 08:05:23 +03:00
2022-09-28 11:21:57 +03:00
if (!local)
s = html_top_controls(snac, s);
2022-09-28 16:41:07 +03:00
s = xs_str_cat(s, "<div class=\"snac-posts\">\n");
2022-09-28 11:40:35 +03:00
while (xs_list_iter(&list, &v)) {
xs *msg = timeline_get(snac, v);
2022-09-29 10:52:23 +03:00
s = html_entry(snac, s, msg, seen, local, 0);
2022-09-28 11:40:35 +03:00
}
2022-09-29 10:19:42 +03:00
s = xs_str_cat(s, "</div>\n");
2022-09-28 11:40:35 +03:00
2022-09-28 17:16:18 +03:00
s = html_user_footer(snac, s);
2022-09-28 16:41:07 +03:00
2022-09-28 18:18:30 +03:00
{
xs *s1 = xs_fmt("<!-- %lf seconds -->\n", ftime() - t);
s = xs_str_cat(s, s1);
}
2022-09-28 16:41:07 +03:00
s = xs_str_cat(s, "</body>\n</html>\n");
2022-09-28 11:40:35 +03:00
xs_set_free(seen);
2022-09-28 08:05:23 +03:00
return s;
}
2022-09-28 06:22:08 +03:00
int html_get_handler(d_char *req, char *q_path, char **body, int *b_size, char **ctype)
{
2022-09-28 08:05:23 +03:00
int status = 404;
snac snac;
char *uid, *p_path;
xs *l = xs_split_n(q_path, "/", 2);
uid = xs_list_get(l, 1);
if (!uid || !user_open(&snac, uid)) {
/* invalid user */
srv_log(xs_fmt("html_get_handler bad user %s", uid));
return 404;
}
p_path = xs_list_get(l, 2);
if (p_path == NULL) {
/* public timeline */
xs *list = local_list(&snac, 0xfffffff);
*body = html_timeline(&snac, list, 1);
*b_size = strlen(*body);
status = 200;
}
else
if (strcmp(p_path, "admin") == 0) {
/* private timeline */
if (!login(&snac, req))
status = 401;
else {
2022-09-30 10:56:29 +03:00
if (history_mtime(&snac, "_timeline.html") > timeline_mtime(&snac)) {
snac_debug(&snac, 1, xs_fmt("serving cached timeline"));
2022-09-28 08:05:23 +03:00
2022-09-30 10:56:29 +03:00
*body = history_get(&snac, "_timeline.html");
*b_size = strlen(*body);
status = 200;
}
else {
snac_debug(&snac, 1, xs_fmt("building timeline"));
xs *list = timeline_list(&snac, 0xfffffff);
*body = html_timeline(&snac, list, 0);
*b_size = strlen(*body);
status = 200;
history_add(&snac, "_timeline.html", *body, *b_size);
}
2022-09-28 08:05:23 +03:00
}
}
else
2022-09-29 14:15:57 +03:00
if (xs_startswith(p_path, "p/")) {
2022-09-28 08:05:23 +03:00
/* a timeline with just one entry */
2022-09-29 14:15:57 +03:00
xs *id = xs_fmt("%s/%s", snac.actor, p_path);
xs *fn = _timeline_find_fn(&snac, id);
if (fn != NULL) {
xs *list = xs_list_new();
list = xs_list_append(list, fn);
*body = html_timeline(&snac, list, 1);
*b_size = strlen(*body);
status = 200;
}
2022-09-28 08:05:23 +03:00
}
else
2022-09-29 14:15:57 +03:00
if (xs_startswith(p_path, "s/")) {
2022-09-28 08:05:23 +03:00
/* a static file */
}
else
2022-09-29 14:15:57 +03:00
if (xs_startswith(p_path, "h/")) {
2022-09-28 08:05:23 +03:00
/* an entry from the history */
}
else
status = 404;
user_free(&snac);
if (valid_status(status)) {
*ctype = "text/html; charset=utf-8";
}
2022-09-28 06:22:08 +03:00
return status;
}
int html_post_handler(d_char *req, char *q_path, d_char *payload, int p_size,
char **body, int *b_size, char **ctype)
{
int status = 0;
snac snac;
char *uid, *p_path;
char *p_vars;
xs *l = xs_split_n(q_path, "/", 2);
uid = xs_list_get(l, 1);
if (!uid || !user_open(&snac, uid)) {
/* invalid user */
srv_log(xs_fmt("html_get_handler bad user %s", uid));
return 404;
}
p_path = xs_list_get(l, 2);
/* all posts must be authenticated */
if (!login(&snac, req))
return 401;
p_vars = xs_dict_get(req, "p_vars");
{
xs *j1 = xs_json_dumps_pp(req, 4);
printf("%s\n", j1);
printf("[%s]\n", p_path);
}
if (p_path && strcmp(p_path, "admin/note") == 0) {
/* post note */
char *content = xs_dict_get(p_vars, "content");
char *in_reply_to = xs_dict_get(p_vars, "in_reply_to");
if (content != NULL) {
xs *msg = NULL;
xs *c_msg = NULL;
msg = msg_note(&snac, content, NULL, in_reply_to);
c_msg = msg_create(&snac, msg);
post(&snac, c_msg);
timeline_add(&snac, xs_dict_get(msg, "id"), msg, in_reply_to, NULL);
}
status = 303;
}
else
if (p_path && strcmp(p_path, "admin/action") == 0) {
/* action on an entry */
char *id = xs_dict_get(p_vars, "id");
char *actor = xs_dict_get(p_vars, "actor");
char *action = xs_dict_get(p_vars, "action");
if (action == NULL)
return 404;
2022-10-01 08:45:36 +03:00
snac_debug(&snac, 1, xs_fmt("web action '%s' received", action));
status = 303;
if (strcmp(action, L("Like")) == 0) {
xs *msg = msg_admiration(&snac, id, "Like");
post(&snac, msg);
timeline_admire(&snac, id, snac.actor, 1);
}
else
2022-10-01 08:45:36 +03:00
if (strcmp(action, L("Boost")) == 0) {
xs *msg = msg_admiration(&snac, id, "Announce");
post(&snac, msg);
timeline_admire(&snac, id, snac.actor, 0);
2022-10-01 08:45:36 +03:00
}
else
if (strcmp(action, L("MUTE")) == 0) {
mute(&snac, actor);
}
else
if (strcmp(action, L("Follow")) == 0) {
2022-10-01 10:12:33 +03:00
xs *msg = msg_follow(&snac, actor);
2022-10-01 09:05:20 +03:00
/* reload the actor from the message, in may be different */
actor = xs_dict_get(msg, "object");
following_add(&snac, actor, msg);
enqueue_output(&snac, msg, actor, 0);
2022-10-01 08:45:36 +03:00
}
else
if (strcmp(action, L("Unfollow")) == 0) {
2022-10-01 10:12:33 +03:00
/* get the following object */
xs *object = NULL;
if (valid_status(following_get(&snac, actor, &object))) {
xs *msg = msg_undo(&snac, xs_dict_get(object, "object"));
following_del(&snac, actor);
enqueue_output(&snac, msg, actor, 0);
snac_log(&snac, xs_fmt("unfollowed actor %s", actor));
}
else
snac_log(&snac, xs_fmt("actor is not being followed %s", actor));
2022-10-01 08:45:36 +03:00
}
else
if (strcmp(action, L("Delete")) == 0) {
}
else
status = 404;
2022-10-01 08:45:36 +03:00
/* delete the cached timeline */
if (status == 303)
history_del(&snac, "_timeline.html");
}
else
if (p_path && strcmp(p_path, "admin/user-setup") == 0) {
/* change of user data */
}
if (status == 303) {
*body = xs_fmt("%s/admin", snac.actor);
*b_size = strlen(*body);
}
2022-09-28 06:22:08 +03:00
return status;
}