|
@@ -1375,10 +1375,11 @@ xs_list *mastoapi_timeline(snac *user, const xs_dict *args, const char *index_fn
|
|
|
|
|
|
xs *st = mastoapi_status(user, msg);
|
|
|
|
|
|
- if (st != NULL)
|
|
|
+ if (st != NULL) {
|
|
|
out = xs_list_append(out, st);
|
|
|
+ cnt++;
|
|
|
+ }
|
|
|
|
|
|
- cnt++;
|
|
|
} while (cnt < limit && index_desc_next(f, md5));
|
|
|
}
|
|
|
|
|
@@ -1697,62 +1698,8 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
|
|
|
xs *l = xs_split(cmd, "/");
|
|
|
const char *list = xs_list_get(l, -1);
|
|
|
|
|
|
- xs *timeline = list_timeline(&snac1, list, 0, 2048);
|
|
|
- xs *out = xs_list_new();
|
|
|
- int c = 0;
|
|
|
- const char *md5;
|
|
|
-
|
|
|
- while (xs_list_next(timeline, &md5, &c)) {
|
|
|
- xs *msg = NULL;
|
|
|
-
|
|
|
-
|
|
|
- if (!valid_status(timeline_get_by_md5(&snac1, md5, &msg)))
|
|
|
- continue;
|
|
|
-
|
|
|
-
|
|
|
- const char *id = xs_dict_get(msg, "id");
|
|
|
- const char *type = xs_dict_get(msg, "type");
|
|
|
- if (!xs_match(type, POSTLIKE_OBJECT_TYPE))
|
|
|
- continue;
|
|
|
-
|
|
|
- const char *from = NULL;
|
|
|
- if (strcmp(type, "Page") == 0)
|
|
|
- from = xs_dict_get(msg, "audience");
|
|
|
-
|
|
|
- if (from == NULL)
|
|
|
- from = get_atto(msg);
|
|
|
-
|
|
|
- if (from == NULL)
|
|
|
- continue;
|
|
|
-
|
|
|
-
|
|
|
- if (strcmp(from, snac1.actor) && !following_check(&snac1, from)) {
|
|
|
-
|
|
|
- xs *idx = object_announces(id);
|
|
|
-
|
|
|
- if (xs_list_len(idx) == 0)
|
|
|
- continue;
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- if (is_muted(&snac1, from))
|
|
|
- continue;
|
|
|
-
|
|
|
-
|
|
|
- if (is_hidden(&snac1, id))
|
|
|
- continue;
|
|
|
-
|
|
|
-
|
|
|
- it's a poll vote, so discard it */
|
|
|
- if (!xs_is_null(xs_dict_get(msg, "name")) && !xs_match(type, "Page|Video"))
|
|
|
- continue;
|
|
|
-
|
|
|
-
|
|
|
- xs *st = mastoapi_status(&snac1, msg);
|
|
|
-
|
|
|
- if (st != NULL)
|
|
|
- out = xs_list_append(out, st);
|
|
|
- }
|
|
|
+ xs *ifn = list_timeline_fn(&snac1, list);
|
|
|
+ xs *out = mastoapi_timeline(NULL, args, ifn);
|
|
|
|
|
|
*body = xs_json_dumps(out, 4);
|
|
|
*ctype = "application/json";
|