snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit c0333ea0c84e544c84dafcab48dbaa595d6d34b1
parent 9be801630a0dd71936cf19d303e5c80c385c44a0
Author: default <nobody@localhost>
Date:   Tue, 18 Jun 2024 06:40:35 +0200

Added auto boosting (contributed by sarahpw).

If `auto_boost` is set to `true` in am account's user.json, all mentions
to that account are automatically boosted to all its followers.

This is very similar to the behaviour of a 'Group' actor.

Diffstat:
Mactivitypub.c | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/activitypub.c b/activitypub.c @@ -934,6 +934,14 @@ void notify(snac *snac, const char *type, const char *utype, const char *actor, if (!xs_is_null(ntfy_server) && *ntfy_server) enqueue_ntfy(body, ntfy_server, ntfy_token); + /* auto boost */ + if (xs_match(type, "Create") && xs_type(xs_dict_get(snac->config, "auto_boost")) == XSTYPE_TRUE) { + xs *msg = msg_admiration(snac, objid, "Announce"); + enqueue_message(snac, msg); + + snac_debug(snac, 1, xs_fmt("auto boosted %s", objid)); + } + /* finally, store it in the notification folder */ if (strcmp(type, "Follow") == 0) objid = id;