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"
|
|
|
|
|
2022-09-27 10:38:46 +03:00
|
|
|
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;
|
2022-09-27 18:41:56 +03:00
|
|
|
xs *wrk = xs_str_new(NULL);
|
2022-09-27 10:38:46 +03:00
|
|
|
|
2022-09-27 11:51:50 +03:00
|
|
|
{
|
2022-09-27 18:41:56 +03:00
|
|
|
/* split by special markup */
|
|
|
|
xs *sm = xs_regex_split(content,
|
|
|
|
"(`[^`]+`|\\*\\*?[^\\*]+\\*?\\*|https?:/" "/[^ ]*)");
|
|
|
|
int n = 0;
|
2022-09-27 11:51:50 +03:00
|
|
|
|
2022-09-27 18:41:56 +03:00
|
|
|
p = sm;
|
2022-09-27 11:51:50 +03:00
|
|
|
while (xs_list_iter(&p, &v)) {
|
2022-09-27 18:41:56 +03:00
|
|
|
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);
|
2022-09-27 11:59:29 +03:00
|
|
|
}
|
2022-09-27 18:41:56 +03:00
|
|
|
else
|
|
|
|
/* surrounded text, copy directly */
|
|
|
|
wrk = xs_str_cat(wrk, v);
|
|
|
|
|
|
|
|
n++;
|
2022-09-27 11:51:50 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-27 18:41:56 +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);
|
2022-09-27 10:38:46 +03:00
|
|
|
|
|
|
|
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>");
|
2022-09-27 10:38:46 +03:00
|
|
|
|
|
|
|
*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) {
|
|
|
|
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\">🔒</span>");
|
|
|
|
|
|
|
|
if ((v = xs_dict_get(msg, "published")) == NULL)
|
|
|
|
v = " ";
|
|
|
|
|
|
|
|
{
|
|
|
|
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)
|
2022-09-29 10:11:43 +03:00
|
|
|
return os;
|
2022-09-28 11:40:35 +03:00
|
|
|
|
2022-09-28 16:41:07 +03:00
|
|
|
if (strcmp(type, "Follow") == 0)
|
2022-09-29 10:11:43 +03:00
|
|
|
return os;
|
2022-09-28 16:41:07 +03:00
|
|
|
|
|
|
|
/* bring the main actor */
|
|
|
|
if ((actor = xs_dict_get(msg, "attributedTo")) == NULL)
|
2022-09-29 10:11:43 +03:00
|
|
|
return os;
|
2022-09-28 16:41:07 +03:00
|
|
|
|
|
|
|
if (!valid_status(actor_get(snac, actor, &actor_o)))
|
2022-09-29 10:11:43 +03:00
|
|
|
return os;
|
|
|
|
|
|
|
|
xs *s = xs_str_new(NULL);
|
2022-09-28 16:41:07 +03:00
|
|
|
|
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 ★ %d ↺</div>\n",
|
|
|
|
likes, boosts);
|
|
|
|
|
|
|
|
s = xs_str_cat(s, s1);
|
|
|
|
}
|
|
|
|
|
2022-09-28 16:41:07 +03:00
|
|
|
if (level == 0) {
|
|
|
|
char *referrer;
|
|
|
|
|
|
|
|
s = xs_str_cat(s, "<div class=\"snac-post\">\n");
|
|
|
|
|
|
|
|
/* print the origin of the post, if any */
|
|
|
|
if ((referrer = xs_dict_get(meta, "referrer")) != NULL) {
|
|
|
|
xs *actor_r = NULL;
|
|
|
|
|
|
|
|
if (valid_status(actor_get(snac, referrer, &actor_r))) {
|
|
|
|
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,
|
2022-09-29 10:11:43 +03:00
|
|
|
L("boosted")
|
2022-09-28 16:41:07 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
s = xs_str_cat(s, s1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
|
2022-09-29 10:11:43 +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 {
|
|
|
|
xs *list = timeline_list(&snac, 0xfffffff);
|
|
|
|
|
|
|
|
*body = html_timeline(&snac, list, 0);
|
|
|
|
*b_size = strlen(*body);
|
|
|
|
status = 200;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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;
|
2022-09-30 06:36:46 +03:00
|
|
|
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 */
|
2022-09-30 10:29:28 +03:00
|
|
|
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;
|
|
|
|
|
|
|
|
if (strcmp(action, "Like") == 0) {
|
|
|
|
xs *msg = msg_admiration(&snac, id, "Like");
|
|
|
|
post(&snac, msg);
|
|
|
|
timeline_admire(&snac, id, snac.actor, 1);
|
|
|
|
|
|
|
|
status = 303;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (strcmp(action, "Boost") == 0) {
|
|
|
|
xs *msg = msg_admiration(&snac, id, "Announce");
|
|
|
|
post(&snac, msg);
|
|
|
|
timeline_admire(&snac, id, snac.actor, 0);
|
|
|
|
|
|
|
|
status = 303;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
status = 404;
|
2022-09-30 06:36:46 +03:00
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|