From: Andrea Zagli Date: Sun, 7 Feb 2016 17:00:29 +0000 (+0100) Subject: Saving new user. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=6fa81638402f6af78d8a3688ebeffe42b6b1af73;p=bcity%2Ffe Saving new user. --- diff --git a/configure.ac b/configure.ac index fc359a2..8c66f32 100644 --- a/configure.ac +++ b/configure.ac @@ -48,7 +48,8 @@ PKG_CHECK_MODULES(BCITYFE, [glib-2.0 >= 2.36 libzakautho >= 0.0.5 libzakutils libzakform - libzakcgi]) + libzakcgi + libzakformgdaex]) AC_SUBST(BCITYFE_CFLAGS) AC_SUBST(BCITYFE_LIBS) diff --git a/data/bcity_fe/form/user_register.form b/data/bcity_fe/form/user_register.form index 3404934..00b456f 100644 --- a/data/bcity_fe/form/user_register.form +++ b/data/bcity_fe/form/user_register.form @@ -2,20 +2,25 @@ - email + code + string + TRUE email_conferma + FALSE name + string + 100 @@ -23,15 +28,18 @@ surname + string + 100 submit + FALSE Conferma - + diff --git a/debugcgi.sh b/debugcgi.sh new file mode 100755 index 0000000..f57bf57 --- /dev/null +++ b/debugcgi.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +PID=`ps ax | grep bcity_fe | grep -v grep | awk ' { print $1 }'` +gdb --pid $PID diff --git a/src/commons.h b/src/commons.h index a239d5a..4ead6fa 100644 --- a/src/commons.h +++ b/src/commons.h @@ -43,8 +43,6 @@ typedef struct gulong hid_main_on_before_execute; gulong hid_main_on_after_execute; - GdaEx *gdaex_sit; - ZakCgiMain *zcgi_main; ZakCgiSession *zcgi_session; diff --git a/src/user.c b/src/user.c index f984d0c..0f5c6c6 100644 --- a/src/user.c +++ b/src/user.c @@ -21,6 +21,7 @@ #endif #include +#include #include "user.h" @@ -30,6 +31,7 @@ user_register (GMatchInfo *minfo, gpointer user_data) CtplEnviron *env; ZakCgiForm *form; + ZakFormGdaexProvider *form_provider; gchar *filename; gchar *content; @@ -38,6 +40,10 @@ user_register (GMatchInfo *minfo, gpointer user_data) GPtrArray *ar_messages; GString *msg; + GError *error; + gchar *cnc_string; + GdaEx *gdaex_authedb; + Commons *commons = (Commons *)user_data; if (get_is_logged (commons)) @@ -63,7 +69,44 @@ user_register (GMatchInfo *minfo, gpointer user_data) zak_cgi_form_bind (form); if (zak_form_form_is_valid (ZAK_FORM_FORM (form))) { - ctpl_environ_push_string (env, "form", "Form is valid!!!"); + /* leggo i parametri per libzakautho */ + error = NULL; + cnc_string = g_key_file_get_value (commons->config, "ZAKAUTHE", "cnc_string", &error); + if (cnc_string == NULL || error != NULL) + { + g_warning ("Impossibile leggere la stringa di connessione per libzakauthe dal file di configurazione: %s.", + error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + ctpl_environ_push_string (env, "form", "Form is valid!!! NOT SAVED!!!"); + } + else + { + gdaex_authedb = gdaex_new_from_string (cnc_string); + if (gdaex_authedb == NULL) + { + g_warning ("Errore nella connessione al database libzakauthe: %s", cnc_string); + ctpl_environ_push_string (env, "form", "Form is valid!!! NOT SAVED!!!"); + } + else + { + form_provider = zak_form_gdaex_provider_new (gdaex_authedb, "users"); + if (form_provider == NULL) + { + g_warning ("Errore nella creazione dewl form_provider."); + ctpl_environ_push_string (env, "form", "Form is valid!!! NOT SAVED!!!"); + } + else + { + if (zak_form_form_insert (ZAK_FORM_FORM (form), ZAK_FORM_IPROVIDER (form_provider))) + { + ctpl_environ_push_string (env, "form", "Form is valid!!! SAVED WITH SUCCESS!!!"); + } + else + { + ctpl_environ_push_string (env, "form", "Form is valid!!! NOT SAVED!!!"); + } + } + } + } } else {