]> saetta.ns0.it Git - bcity/fe/commitdiff
Started new user registration.
authorAndrea Zagli <azagli@libero.it>
Sun, 7 Feb 2016 12:57:40 +0000 (13:57 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 7 Feb 2016 12:57:40 +0000 (13:57 +0100)
12 files changed:
configure.ac
data/bcity_fe/Makefile.am
data/bcity_fe/ctpl/Makefile.am
data/bcity_fe/ctpl/login_index.ctpl
data/bcity_fe/ctpl/user_register.ctpl [new file with mode: 0644]
data/bcity_fe/form/Makefile.am [new file with mode: 0644]
data/bcity_fe/form/user_register.form [new file with mode: 0644]
src/Makefile.am
src/commons.h
src/main.c
src/user.c [new file with mode: 0644]
src/user.h [new file with mode: 0644]

index 1d1248bba4429892cfd8b6267523d1f7751e86a5..fc359a2ea89d53d4dcc8423dd6686978665c5fda 100644 (file)
@@ -83,6 +83,7 @@ AC_CONFIG_FILES([
        data/Makefile
        data/bcity_fe/Makefile
        data/bcity_fe/ctpl/Makefile
+       data/bcity_fe/form/Makefile
        doc/Makefile
        doc/bcity_fe/Makefile
        doc/bcity_fe/db/Makefile
index c909be9ab28fe916602656727256fd034f8164fd..33533362cf1e32be6ca9f51e58ab78b155c1428c 100644 (file)
@@ -1 +1 @@
-SUBDIRS = ctpl
+SUBDIRS = ctpl form
index 7b71168249bd00193932c8d3a9c5d69e237d01c8..1f4969a89145ac2388dad80f60b432bbb264e232 100644 (file)
@@ -5,6 +5,7 @@ ctpl_DATA = \
             index_index.ctpl \
             index_category.ctpl \
             index_save.ctpl \
-            login_index.ctpl
+            login_index.ctpl \
+            user_register.ctpl
 
 EXTRA_DIST =
index 35c9e098602c4a1655b9e878c8e4ff0fd43ac58c..439d92ada8ef11f4e6725923213b683daf7e3048 100644 (file)
@@ -7,3 +7,7 @@
          <input type="password" id="password" name="password" class="form-control" placeholder="Password" required>
          <button id="submit" name="submit" class="btn btn-lg btn-primary btn-block" type="submit">Accedi</button>
 </form>
+<div style="text-align: center;">
+o<br />
+<a href ="/bcity/bcity_fe/user/register">registrati</a>
+</div>
diff --git a/data/bcity_fe/ctpl/user_register.ctpl b/data/bcity_fe/ctpl/user_register.ctpl
new file mode 100644 (file)
index 0000000..81be586
--- /dev/null
@@ -0,0 +1,4 @@
+<h1>B-City</h1>
+
+{form_msg}
+{form}
diff --git a/data/bcity_fe/form/Makefile.am b/data/bcity_fe/form/Makefile.am
new file mode 100644 (file)
index 0000000..7c15d87
--- /dev/null
@@ -0,0 +1,6 @@
+formdir = $(datadir)/$(PACKAGE)/form
+
+form_DATA = \
+            user_register.form
+
+EXTRA_DIST =
diff --git a/data/bcity_fe/form/user_register.form b/data/bcity_fe/form/user_register.form
new file mode 100644 (file)
index 0000000..3404934
--- /dev/null
@@ -0,0 +1,37 @@
+<?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>
index c92a86a9e47d5e201484e8c72b5e3cac8fb0bc87..b71a43005478a516d6b649cec47286261eb5a220 100644 (file)
@@ -1,10 +1,12 @@
 configdir = $(datadir)/$(PACKAGE)/conf
 ctpldir = $(datadir)/$(PACKAGE)/ctpl
+formdir = $(datadir)/$(PACKAGE)/form
 imagesdir = $(datadir)/$(PACKAGE)/images
 
 AM_CPPFLAGS = $(BCITYFE_CFLAGS) \
               -DCONFIGDIR=\""$(configdir)"\" \
               -DCTPLDIR=\""$(ctpldir)"\" \
+              -DFORMDIR=\""$(formdir)"\" \
               -DIMAGESDIR=\""$(imagesdir)"\"
 
 LIBS = $(BCITYFE_LIBS) \
@@ -19,4 +21,6 @@ bcity_fe_SOURCES = \
                    index.h \
                    login.c \
                    login.h \
-                   main.c
+                   main.c \
+                   user.c \
+                   user.h
index f328484dd55d47e9036c0f30fe89c01d28df708d..a239d5a73ba7a6bddb4d3e0ed4ff68789183609c 100644 (file)
@@ -34,6 +34,7 @@ typedef struct
        {
                gchar *configdir;
                gchar *ctpldir;
+               gchar *formdir;
                gchar *imagesdir;
 
                GKeyFile *config;
index cbf9888e931ddcb4b8554445a7407b1feca326d0..65e196f3aa5d73cefdfcf7eba6b25b6120223489 100644 (file)
@@ -26,8 +26,9 @@
 #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[])
@@ -53,6 +54,7 @@ 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 */
@@ -140,6 +142,10 @@ main (int argc, char *argv[])
        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);
diff --git a/src/user.c b/src/user.c
new file mode 100644 (file)
index 0000000..f984d0c
--- /dev/null
@@ -0,0 +1,114 @@
+/*
+ * 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);
+}
diff --git a/src/user.h b/src/user.h
new file mode 100644 (file)
index 0000000..863d8f2
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+ * 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__ */