--- /dev/null
+<?xml version="1.0"?>
+<zakform>
+
+ <element type="zak_cgi_form_element_email">
+ <id>email</id>
+ <label>E-mail</label>
+ <validator type="zak_form_element_validator_notempty"></validator>
+ </element>
+
+ <element type="zak_cgi_form_element_email">
+ <id>email_conferma</id>
+ <label>Conferma E-mail</label>
+ <validator type="zak_form_element_validator_notempty"></validator>
+ </element>
+
+ <element type="zak_cgi_form_element_text">
+ <id>name</id>
+ <label>Nome</label>
+ <filter type="zak_form_element_filter_trim"></filter>
+ <validator type="zak_form_element_validator_notempty"></validator>
+ </element>
+
+ <element type="zak_cgi_form_element_text">
+ <id>surname</id>
+ <label>Cognome</label>
+ <filter type="zak_form_element_filter_trim"></filter>
+ <validator type="zak_form_element_validator_notempty"></validator>
+ </element>
+
+ <element type="zak_cgi_form_element_submit">
+ <id>submit</id>
+ <zak-cgi-content>Conferma</zak-cgi-content>
+ </element>
+
+ <validator type="zak_form_validator_compare" type_comp="e" element1="email" element2="email_conferma"></validator>
+
+</zakform>
#include <libgdaex/libgdaex.h>
#include "commons.h"
-#include "login.h"
#include "index.h"
+#include "login.h"
+#include "user.h"
int
main (int argc, char *argv[])
commons->configdir = g_strdup (CONFIGDIR);
commons->ctpldir = g_strdup (CTPLDIR);
+ commons->formdir = g_strdup (FORMDIR);
commons->imagesdir = g_strdup (IMAGESDIR);
/* leggo la configurazione dal file */
zak_cgi_url_connect (zcgi_url, "/login/index", (ZakCgiUrlConnectedFunction)login_index, commons);
zak_cgi_url_connect (zcgi_url, "/login/logout", (ZakCgiUrlConnectedFunction)login_logout, commons);
+
+ zak_cgi_url_connect (zcgi_url, "/user[/]?", (ZakCgiUrlConnectedFunction)user_register, commons);
+ zak_cgi_url_connect (zcgi_url, "/user/register", (ZakCgiUrlConnectedFunction)user_register, commons);
+
zak_cgi_url_dispatch (zcgi_url);
header = g_string_new (ZAK_CGI_STANDARD_HEADER_HTML);
--- /dev/null
+/*
+ * Copyright (C) 2016 Andrea Zagli <azagli@libero.it>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
+#include <libzakform/libzakform.h>
+
+#include "user.h"
+
+void
+user_register (GMatchInfo *minfo, gpointer user_data)
+{
+ CtplEnviron *env;
+
+ ZakCgiForm *form;
+
+ gchar *filename;
+ gchar *content;
+
+ guint i;
+ GPtrArray *ar_messages;
+ GString *msg;
+
+ Commons *commons = (Commons *)user_data;
+
+ if (get_is_logged (commons))
+ {
+ zak_cgi_main_redirect (commons->zcgi_main, "/bcity/bcity_fe/index/index");
+ return;
+ }
+
+ env = ctpl_environ_new ();
+ ctpl_environ_push_string (env, "form_msg", "");
+ ctpl_environ_push_string (env, "form", "");
+
+ form = zak_cgi_form_new (commons->zcgi_main,
+ "method", "post",
+ "action", "/bcity/bcity_fe/user/register",
+ NULL);
+
+ if (zak_form_form_load_from_file (ZAK_FORM_FORM (form), FORMDIR "/user_register.form"))
+ {
+ if (zak_cgi_main_is_post (commons->zcgi_main))
+ {
+ /* validating the form */
+ zak_cgi_form_bind (form);
+ if (zak_form_form_is_valid (ZAK_FORM_FORM (form)))
+ {
+ ctpl_environ_push_string (env, "form", "Form is valid!!!");
+ }
+ else
+ {
+ ctpl_environ_push_string (env, "form", zak_cgi_form_render (form));
+
+ ar_messages = zak_form_form_get_messages (ZAK_FORM_FORM (form));
+ if (ar_messages != NULL)
+ {
+ msg = g_string_new ("");
+ for (i = 0; i < ar_messages->len; i++)
+ {
+ g_string_append_printf (msg, "\n<li>%s</li>", (gchar *)g_ptr_array_index (ar_messages, i));
+ }
+ if (g_strcmp0 (msg->str, "") != 0)
+ {
+ g_string_prepend (msg, "<p class=\"bg-danger\"><ul>\n");
+ g_string_append (msg, "</ul></p>\n");
+
+ ctpl_environ_push_string (env, "form_msg", msg->str);
+ }
+ g_string_free (msg, TRUE);
+ }
+ }
+ }
+ else
+ {
+ ctpl_environ_push_string (env, "form", zak_cgi_form_render (form));
+ }
+ }
+
+ filename = g_build_filename (commons->ctpldir, "user_register.ctpl", NULL);
+ content = get_ctpl_filled (filename, env);
+ g_free (filename);
+ ctpl_environ_unref (env);
+
+ env = ctpl_environ_new ();
+ ctpl_environ_push_string (env, "head", "");
+ ctpl_environ_push_string (env, "body_tag", "");
+ ctpl_environ_push_string (env, "body", content);
+
+ filename = g_build_filename (commons->ctpldir, "template.ctpl", NULL);
+ g_string_printf (commons->out, "%s",
+ get_ctpl_filled (filename, env));
+ g_free (filename);
+ ctpl_environ_unref (env);
+
+ g_free (content);
+}
--- /dev/null
+/*
+ * Copyright (C) 2016 Andrea Zagli <azagli@libero.it>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __USER_H__
+#define __USER_H__
+
+
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
+#include "commons.h"
+
+
+void user_register (GMatchInfo *minfo, gpointer user_data);
+
+
+#endif /* __INDEX_H__ */