mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
Now you can vote from the mastoapi.
This commit is contained in:
parent
182ba33c76
commit
513d81c694
30
mastoapi.c
30
mastoapi.c
@ -2133,13 +2133,39 @@ int mastoapi_post_handler(const xs_dict *req, const char *q_path,
|
|||||||
mid = MID_TO_MD5(mid);
|
mid = MID_TO_MD5(mid);
|
||||||
|
|
||||||
if (valid_status(timeline_get_by_md5(&snac, mid, &msg))) {
|
if (valid_status(timeline_get_by_md5(&snac, mid, &msg))) {
|
||||||
|
const char *id = xs_dict_get(msg, "id");
|
||||||
|
const char *atto = xs_dict_get(msg, "attributedTo");
|
||||||
|
|
||||||
|
xs_list *opts = xs_dict_get(msg, "oneOf");
|
||||||
|
if (opts == NULL)
|
||||||
|
opts = xs_dict_get(msg, "anyOf");
|
||||||
|
|
||||||
if (op == NULL) {
|
if (op == NULL) {
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (strcmp(op, "votes") == 0) {
|
if (strcmp(op, "votes") == 0) {
|
||||||
const char *opts = xs_dict_get(args, "choices[]");
|
xs_list *choices = xs_dict_get(args, "choices[]");
|
||||||
|
|
||||||
if (xs_type(opts) == XSTYPE_LIST) {
|
if (xs_type(choices) == XSTYPE_LIST) {
|
||||||
|
xs_str *v;
|
||||||
|
|
||||||
|
while (xs_list_iter(&choices, &v)) {
|
||||||
|
int io = atoi(v);
|
||||||
|
const xs_dict *o = xs_list_get(opts, io);
|
||||||
|
|
||||||
|
if (o) {
|
||||||
|
const char *name = xs_dict_get(o, "name");
|
||||||
|
|
||||||
|
xs *msg = msg_note(&snac, "", atto, (char *)id, NULL, 1);
|
||||||
|
msg = xs_dict_append(msg, "name", name);
|
||||||
|
|
||||||
|
xs *c_msg = msg_create(&snac, msg);
|
||||||
|
enqueue_message(&snac, c_msg);
|
||||||
|
timeline_add(&snac, xs_dict_get(msg, "id"), msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
out = mastoapi_poll(&snac, msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user