content_search() also search into alt-text from attachments.

This commit is contained in:
default 2024-08-11 17:29:09 +02:00
parent 35503ed2b4
commit 382ff03349

16
data.c
View File

@ -2491,8 +2491,22 @@ xs_list *content_search(snac *user, const char *regex,
if (xs_is_null(content))
continue;
xs *c = xs_dup(content);
/* add alt-texts from attachments */
const xs_list *atts = xs_dict_get(post, "attachment");
int tc = 0;
const xs_dict *att;
while (xs_list_next(atts, &att, &tc)) {
const char *name = xs_dict_get(att, "name");
if (name != NULL)
c = xs_str_cat(c, " ", name);
}
/* strip HTML */
xs *c = xs_regex_replace(content, "<[^>]+>", " ");
c = xs_regex_replace_i(c, "<[^>]+>", " ");
c = xs_regex_replace_i(c, " {2,}", " ");
c = xs_tolower_i(c);