mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
If an account has metadata, return them as attachment PropertyValues in msg_actor().
This commit is contained in:
parent
5a3c7cf985
commit
c4b2d3bc69
@ -972,6 +972,26 @@ xs_dict *msg_actor(snac *snac)
|
|||||||
msg = xs_dict_set(msg, "image", d);
|
msg = xs_dict_set(msg, "image", d);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* add the metadata as attachments of PropertyValue */
|
||||||
|
xs_dict *metadata = xs_dict_get(snac->config, "metadata");
|
||||||
|
if (xs_type(metadata) == XSTYPE_DICT) {
|
||||||
|
xs *attach = xs_list_new();
|
||||||
|
xs_str *k;
|
||||||
|
xs_str *v;
|
||||||
|
|
||||||
|
while (xs_dict_iter(&metadata, &k, &v)) {
|
||||||
|
xs *d = xs_dict_new();
|
||||||
|
|
||||||
|
d = xs_dict_append(d, "type", "PropertyValue");
|
||||||
|
d = xs_dict_append(d, "name", k);
|
||||||
|
d = xs_dict_append(d, "value", v);
|
||||||
|
|
||||||
|
attach = xs_list_append(attach, d);
|
||||||
|
}
|
||||||
|
|
||||||
|
msg = xs_dict_set(msg, "attachment", attach);
|
||||||
|
}
|
||||||
|
|
||||||
return msg;
|
return msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user