mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 13:25:04 +00:00
Create polls from the web interface.
This commit is contained in:
parent
142b4d6d86
commit
42918d44a0
1 changed files with 24 additions and 1 deletions
23
html.c
23
html.c
|
@ -1769,7 +1769,30 @@ int html_post_handler(const xs_dict *req, const char *q_path,
|
||||||
xs *msg = NULL;
|
xs *msg = NULL;
|
||||||
xs *c_msg = NULL;
|
xs *c_msg = NULL;
|
||||||
xs *content_2 = xs_replace(content, "\r", "");
|
xs *content_2 = xs_replace(content, "\r", "");
|
||||||
|
xs *poll_opts = NULL;
|
||||||
|
|
||||||
|
/* is there a valid set of poll options? */
|
||||||
|
const char *v = xs_dict_get(p_vars, "poll_options");
|
||||||
|
if (!xs_is_null(v) && *v) {
|
||||||
|
xs *v2 = xs_strip_i(xs_replace(v, "\r", ""));
|
||||||
|
|
||||||
|
poll_opts = xs_split(v2, "\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!xs_is_null(poll_opts) && xs_list_len(poll_opts)) {
|
||||||
|
/* get the rest of poll configuration */
|
||||||
|
const char *p_multiple = xs_dict_get(p_vars, "poll_multiple");
|
||||||
|
const char *p_end_secs = xs_dict_get(p_vars, "poll_end_secs");
|
||||||
|
|
||||||
|
int end_secs = atoi(!xs_is_null(p_end_secs) ? p_end_secs : "60");
|
||||||
|
int multiple = !xs_is_null(p_multiple);
|
||||||
|
|
||||||
|
msg = msg_question(&snac, content_2, attach_list,
|
||||||
|
poll_opts, multiple, end_secs);
|
||||||
|
|
||||||
|
enqueue_close_question(&snac, xs_dict_get(msg, "id"), end_secs);
|
||||||
|
}
|
||||||
|
else
|
||||||
msg = msg_note(&snac, content_2, to, in_reply_to, attach_list, priv);
|
msg = msg_note(&snac, content_2, to, in_reply_to, attach_list, priv);
|
||||||
|
|
||||||
if (sensitive != NULL) {
|
if (sensitive != NULL) {
|
||||||
|
|
Loading…
Reference in a new issue