From 78bf2fe4a5bf37514f6dfd203ef969da0bf40c2e Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Mon, 22 Sep 2025 17:32:44 +0200 Subject: Setup project skeleton --- form_topic.c | 63 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 form_topic.c (limited to 'form_topic.c') diff --git a/form_topic.c b/form_topic.c new file mode 100644 index 0000000..ffd67eb --- /dev/null +++ b/form_topic.c @@ -0,0 +1,63 @@ +#define _POSIX_C_SOURCE 200809L + +#include "form.h" +#include +#include + +int form_topic(struct html_node *const n, const unsigned long category, + const unsigned long section) +{ + int ret = -1; + struct dynstr d; + struct html_node *div, *form, *lname, *iname, *textarea, *submit; + + dynstr_init(&d); + + if (dynstr_append(&d, "/create/%lu/%lu", category, section)) + { + fprintf(stderr, "%s: dynstr_append failed\n", __func__); + goto end; + } + else if (!(div = html_node_add_child(n, "div")) + || !(form = html_node_add_child(div, "form")) + || !(lname = html_node_add_child(form, "label")) + || !(iname = html_node_add_child(form, "input")) + || !(textarea = html_node_add_child(form, "textarea")) + || !(submit = html_node_add_child(form, "input"))) + { + fprintf(stderr, "%s: html_node_add_child failed\n", __func__); + goto end; + } + else if (html_node_add_attr(form, "action", d.str) + || html_node_add_attr(form, "form", "topicform") + || html_node_add_attr(form, "method", "post") + || html_node_add_attr(lname, "for", "name") + || html_node_add_attr(iname, "type", "text") + || html_node_add_attr(iname, "id", "name") + || html_node_add_attr(iname, "name", "name") + || html_node_add_attr(iname, "hint", "Topic name") + || html_node_add_attr(iname, "size", "50") + || html_node_add_attr(textarea, "id", "post") + || html_node_add_attr(textarea, "name", "post") + || html_node_add_attr(textarea, "maxlength", "1800") + || html_node_add_attr(textarea, "cols", "72") + || html_node_add_attr(textarea, "rows", "8") + || html_node_add_attr(submit, "type", "submit") + || html_node_add_attr(submit, "value", "Create")) + { + fprintf(stderr, "%s: html_node_add_attr failed\n", __func__); + goto end; + } + else if (html_node_set_value(lname, "Topic name") + || html_node_set_value(textarea, "")) + { + fprintf(stderr, "%s: html_node_set_value failed\n", __func__); + goto end; + } + + ret = 0; + +end: + dynstr_free(&d); + return ret; +} -- cgit v1.2.3