From b7d0f297c3a6984327f808eb60af177078e5c742 Mon Sep 17 00:00:00 2001 From: default Date: Mon, 16 Oct 2023 20:49:58 +0200 Subject: [PATCH] mastoapi: Don't exclude posts of type Page or Article. --- Makefile | 2 +- mastoapi.c | 17 +++++++++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index e32730b..9cbdabc 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ httpd.o: httpd.c xs.h xs_io.h xs_json.h xs_socket.h xs_httpd.h xs_mime.h \ xs_time.h xs_openssl.h snac.h main.o: main.c xs.h xs_io.h xs_json.h snac.h mastoapi.o: mastoapi.c xs.h xs_openssl.h xs_json.h xs_io.h xs_time.h \ - xs_glob.h xs_set.h xs_random.h xs_url.h xs_mime.h snac.h + xs_glob.h xs_set.h xs_random.h xs_url.h xs_mime.h xs_match.h snac.h snac.o: snac.c xs.h xs_io.h xs_unicode.h xs_json.h xs_curl.h xs_openssl.h \ xs_socket.h xs_url.h xs_httpd.h xs_mime.h xs_regex.h xs_set.h xs_time.h \ xs_glob.h xs_random.h xs_match.h snac.h diff --git a/mastoapi.c b/mastoapi.c index c30640b..8e1fb9d 100644 --- a/mastoapi.c +++ b/mastoapi.c @@ -13,6 +13,7 @@ #include "xs_random.h" #include "xs_url.h" #include "xs_mime.h" +#include "xs_match.h" #include "snac.h" @@ -1336,15 +1337,19 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path, continue; /* discard non-Notes */ + const char *id = xs_dict_get(msg, "id"); const char *type = xs_dict_get(msg, "type"); - if (strcmp(type, "Note") != 0 && strcmp(type, "Question") != 0) + if (!xs_match(type, "Note|Question|Page|Article")) continue; - const char *atto = xs_dict_get(msg, "attributedTo"); - const char *id = xs_dict_get(msg, "id"); + const char *from; + if (strcmp(type, "Page") == 0) + from = xs_dict_get(msg, "audience"); + else + from = xs_dict_get(msg, "attributedTo"); /* is this message from a person we don't follow? */ - if (strcmp(atto, snac1.actor) && !following_check(&snac1, atto)) { + if (strcmp(from, snac1.actor) && !following_check(&snac1, from)) { /* discard if it was not boosted */ xs *idx = object_announces(id); @@ -1353,7 +1358,7 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path, } /* discard notes from muted morons */ - if (is_muted(&snac1, atto)) + if (is_muted(&snac1, from)) continue; /* discard hidden notes */ @@ -1361,7 +1366,7 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path, continue; /* discard poll votes (they have a name) */ - if (!xs_is_null(xs_dict_get(msg, "name"))) + if (strcmp(type, "Page") != 0 && !xs_is_null(xs_dict_get(msg, "name"))) continue; /* convert the Note into a Mastodon status */