From aeff7af93281edf716f336585cb96c8cb4477c40 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 30 Jan 2016 16:55:26 +0100 Subject: [PATCH] Enabled login via libzakauthe. --- configure.ac | 1 + data/bcity_fe/ctpl/login_index.ctpl | 13 ++--- src/commons.c | 2 +- src/login.c | 81 ++++++++++++++++++++++++++++- 4 files changed, 89 insertions(+), 8 deletions(-) diff --git a/configure.ac b/configure.ac index 0198b21..3302de9 100644 --- a/configure.ac +++ b/configure.ac @@ -44,6 +44,7 @@ PKG_CHECK_MODULES(BCITYFE, [glib-2.0 >= 2.36 libgdaex >= 0.5.0 libsolipa >= 0.5.0 ctpl >= 0.3.0 + libzakauthe >= 0.5.0 libzakutils libzakform libzakcgi]) diff --git a/data/bcity_fe/ctpl/login_index.ctpl b/data/bcity_fe/ctpl/login_index.ctpl index e44f297..35c9e09 100644 --- a/data/bcity_fe/ctpl/login_index.ctpl +++ b/data/bcity_fe/ctpl/login_index.ctpl @@ -1,8 +1,9 @@ -
+{msg} + - - - - - + + + + +
diff --git a/src/commons.c b/src/commons.c index 034033b..aa952b6 100644 --- a/src/commons.c +++ b/src/commons.c @@ -88,5 +88,5 @@ gchar gboolean get_is_logged (Commons *commons) { - return (zak_cgi_session_get_value (commons->zcgi_session, "user_name") != NULL); + return (zak_cgi_session_get_value (commons->zcgi_session, "username") != NULL); } diff --git a/src/login.c b/src/login.c index 3e25211..da5bd6c 100644 --- a/src/login.c +++ b/src/login.c @@ -22,21 +22,99 @@ #include +#include + #include "login.h" +static gchar +*login_post (Commons *commons) +{ + GError *error; + + guint i; + + ZakAuthe *authe; + gchar **authe_params; + gsize n_authe_params; + GSList *sl_authe_params; + + gchar *username; + gchar *password; + + /* leggo i parametri per l'autenticazione */ + error = NULL; + authe_params = g_key_file_get_keys (commons->config, "ZAKAUTHE", &n_authe_params, &error); + if (authe_params == NULL) + { + syslog (LOG_MAKEPRI(LOG_SYSLOG, LOG_DEBUG), "Impossibile leggere la configurazione per il sistema di autenticazione."); + return FALSE; + } + + sl_authe_params = NULL; + for (i = 0; i < n_authe_params; i++) + { + error = NULL; + sl_authe_params = g_slist_append (sl_authe_params, g_key_file_get_string (commons->config, "ZAKAUTHE", authe_params[i], &error)); + } + + g_strfreev (authe_params); + + /* autenticazione */ + authe = zak_authe_new (); + zak_authe_set_config (authe, sl_authe_params); + + username = g_strdup ((gchar *)g_value_get_string ((GValue *)zak_cgi_main_get_stdin_field (commons->zcgi_main, "username"))); + password = g_strdup ((gchar *)g_value_get_string ((GValue *)zak_cgi_main_get_stdin_field (commons->zcgi_main, "password"))); + + if (!zak_authe_authe_nogui (authe, username, password, NULL)) + { + g_free (username); + username = NULL; + } + return username; +} + void login_index (GMatchInfo *minfo, gpointer user_data) { CtplEnviron *env; + gchar *msg; + gchar *username; gchar *filename; gchar *content; 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, "msg", ""); + if (zak_cgi_main_is_post (commons->zcgi_main)) + { + username = login_post (commons); + if (username != NULL) + { + zak_cgi_session_set_value (commons->zcgi_session, "username", username); + zak_cgi_main_redirect (commons->zcgi_main, "/bcity/bcity_fe/index/index"); + return; + } + else + { + msg = g_strdup ("
Utente o password non validi.
\n"); + ctpl_environ_push_string (env, "msg", msg); + g_free (msg); + } + } + filename = g_build_filename (commons->ctpldir, "login_index.ctpl", NULL); - content = get_ctpl_filled (filename, NULL); + content = get_ctpl_filled (filename, env); g_free (filename); + ctpl_environ_unref (env); env = ctpl_environ_new (); ctpl_environ_push_string (env, "head", ""); @@ -46,6 +124,7 @@ login_index (GMatchInfo *minfo, gpointer user_data) g_string_printf (commons->out, "%s", get_ctpl_filled (filename, env)); g_free (filename); + ctpl_environ_unref (env); g_free (content); } -- 2.49.0