summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--html.c28
-rw-r--r--snac.h1
2 files changed, 29 insertions, 0 deletions
diff --git a/html.c b/html.c
index 990fb94..576d94f 100644
--- a/html.c
+++ b/html.c
@@ -3700,6 +3700,34 @@ int html_post_handler(const xs_dict *req, const char *q_path,
3700 timeline_touch(&snac); 3700 timeline_touch(&snac);
3701 } 3701 }
3702 else 3702 else
3703 if (strcmp(action, L("Approve")) == 0) { /** **/
3704 xs *fwreq = pending_get(&snac, actor);
3705
3706 if (fwreq != NULL) {
3707 xs *reply = msg_accept(&snac, fwreq, actor);
3708
3709 enqueue_message(&snac, reply);
3710
3711 if (xs_is_null(xs_dict_get(fwreq, "published"))) {
3712 /* add a date if it doesn't include one (Mastodon) */
3713 xs *date = xs_str_utctime(0, ISO_DATE_SPEC);
3714 fwreq = xs_dict_set(fwreq, "published", date);
3715 }
3716
3717 timeline_add(&snac, xs_dict_get(fwreq, "id"), fwreq);
3718
3719 follower_add(&snac, actor);
3720
3721 pending_del(&snac, actor);
3722
3723 snac_log(&snac, xs_fmt("new follower %s", actor));
3724 }
3725 }
3726 else
3727 if (strcmp(action, L("Discard")) == 0) { /** **/
3728 pending_del(&snac, actor);
3729 }
3730 else
3703 status = HTTP_STATUS_NOT_FOUND; 3731 status = HTTP_STATUS_NOT_FOUND;
3704 3732
3705 /* delete the cached timeline */ 3733 /* delete the cached timeline */
diff --git a/snac.h b/snac.h
index b4cb525..fc7a657 100644
--- a/snac.h
+++ b/snac.h
@@ -320,6 +320,7 @@ xs_dict *msg_update(snac *snac, const xs_dict *object);
320xs_dict *msg_ping(snac *user, const char *rcpt); 320xs_dict *msg_ping(snac *user, const char *rcpt);
321xs_dict *msg_pong(snac *user, const char *rcpt, const char *object); 321xs_dict *msg_pong(snac *user, const char *rcpt, const char *object);
322xs_dict *msg_move(snac *user, const char *new_account); 322xs_dict *msg_move(snac *user, const char *new_account);
323xs_dict *msg_accept(snac *snac, const xs_val *object, const char *to);
323xs_dict *msg_question(snac *user, const char *content, xs_list *attach, 324xs_dict *msg_question(snac *user, const char *content, xs_list *attach,
324 const xs_list *opts, int multiple, int end_secs); 325 const xs_list *opts, int multiple, int end_secs);
325 326