]> saetta.ns0.it Git - bcity/fe/commitdiff
Use of libzakautho.
authorAndrea Zagli <azagli@libero.it>
Sat, 6 Feb 2016 09:38:09 +0000 (10:38 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 6 Feb 2016 09:38:09 +0000 (10:38 +0100)
configure.ac
doc/bcity_fe/examples/bcity_fe.conf
src/commons.h
src/index.c
src/login.c
src/main.c

index 3302de98c0f965405044f3af94faec349b148c51..1d1248bba4429892cfd8b6267523d1f7751e86a5 100644 (file)
@@ -41,13 +41,14 @@ PKG_CHECK_MODULES(BCITYFE, [glib-2.0 >= 2.36
                             gobject-2.0 >= 2.36
                             gmodule-2.0 >= 2.0.0
                             libxml-2.0 >= 2.0.0
-                                                       libgdaex >= 0.5.0
-                                                       libsolipa >= 0.5.0
-                                                       ctpl >= 0.3.0
-                                                       libzakauthe >= 0.5.0
+                            libgdaex >= 0.5.0
+                            libsolipa >= 0.5.0
+                            ctpl >= 0.3.0
+                            libzakauthe >= 0.5.0
+                            libzakautho >= 0.0.5
                             libzakutils
-                                                       libzakform
-                                                       libzakcgi])
+                            libzakform
+                            libzakcgi])
 
 AC_SUBST(BCITYFE_CFLAGS)
 AC_SUBST(BCITYFE_LIBS)
index 5bc008fb1d76f143c54715384571126c450158e9..2c36d5103a9e0df81617e47590054044bf53573f 100644 (file)
@@ -2,5 +2,8 @@
 plugin=/usr/local/lib/libzakautke/plugins/libzakauthedb.so
 cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=bcity;SEARCHPATH=zakauthedb
 
+[ZAKAUTHO]
+cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=autoz;SEARCHPATH=zakautho
+
 [DB]
 cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=bcity
index e302ff10173da18924e2e02953760c08268ab29e..f328484dd55d47e9036c0f30fe89c01d28df708d 100644 (file)
@@ -27,6 +27,8 @@
 #include <ctpl/ctpl.h>
 #include <libzakcgi/libzakcgi.h>
 #include <libgdaex/libgdaex.h>
+#include <libzakautho/autoz.h>
+#include <libzakautho/role_interface.h>
 
 typedef struct
        {
@@ -46,6 +48,9 @@ typedef struct
                ZakCgiSession *zcgi_session;
 
                GString *out;
+
+               ZakAutho *autho;
+               ZakAuthoIRole *role_utente;
        } Commons;
 
 
index c1197f408077000885a2a1f73bd3b0c266161595..d0dc695e94870d2c3de08119891391b94280ee0b 100644 (file)
@@ -256,7 +256,7 @@ index_save (GMatchInfo *minfo, gpointer user_data)
                        return;
                }
 
-       newid = gdaex_get_new_id(commons->gdaex, "segnalazioni", "id", NULL);
+       newid = gdaex_get_new_id (commons->gdaex, "segnalazioni", "id", NULL);
 
        sql = g_strdup_printf ("INSERT INTO segnalazioni"
                                                   " (id, utente, latitudine, longitudine, id_categorie)"
index 9a201a4b5235b206eef19541dfacb1ff8b601c21..f392fa8fed5bc06de9bad999a17f6414aa280190 100644 (file)
@@ -99,9 +99,20 @@ login_index (GMatchInfo *minfo, gpointer user_data)
                        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;
+                                       commons->role_utente = zak_autho_get_role_from_id (commons->autho, username);
+                                       if (commons->role_utente == NULL
+                                               || !zak_autho_is_allowed (commons->autho, commons->role_utente, zak_autho_get_resource_from_id (commons->autho, "ticket"), FALSE))
+                                               {
+                                                       msg = g_strdup ("<div class=\"alert alert-danger\" role=\"alert\">Utente non autorizzato.</div>\n");
+                                                       ctpl_environ_push_string (env, "msg", msg);
+                                                       g_free (msg);
+                                               }
+                                       else
+                                               {
+                                                       zak_cgi_session_set_value (commons->zcgi_session, "username", username);
+                                                       zak_cgi_main_redirect (commons->zcgi_main, "/bcity/bcity_fe/index/index");
+                                                       return;
+                                               }
                                }
                        else
                                {
index 397770f2422e3a56e8dd0885bc71d4cfe9c2913c..84a16d42aecd75e59bd3ad870842168117ef3e60 100644 (file)
@@ -44,6 +44,8 @@ main (int argc, char *argv[])
 
        gchar *filename;
 
+       GdaConnection *gdacon;
+
        gda_init ();
 
        /* inizializzazione commons */
@@ -82,6 +84,40 @@ main (int argc, char *argv[])
                        g_error ("Errore nella connessione al database: %s", cnc_string);
                }
 
+       /* leggo i parametri per libzakautho */
+       error = NULL;
+       cnc_string = g_key_file_get_value (commons->config, "ZAKAUTHO", "cnc_string", &error);
+       if (cnc_string == NULL || error != NULL)
+               {
+                       g_warning ("Impossibile leggere la stringa di connessione per libzakautho dal file di configurazione: %s.",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return 0;
+               }
+
+       error = NULL;
+       gdacon = gda_connection_open_from_string (NULL, cnc_string, NULL, 0, &error);
+       if (gdacon == NULL || error != NULL)
+               {
+                       g_warning ("Impossibile creare la connessione al db per libzakautho: %s.",
+                                  error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return 0;
+               }
+
+       commons->autho = zak_autho_new ();
+       if (commons->autho == NULL)
+               {
+                       g_warning ("Impossibile creare l'oggetto per libzakautho.");
+                       return 0;
+               }
+       if (!zak_autho_load_from_db (commons->autho, gdacon, NULL, TRUE))
+               {
+                       g_warning ("Impossibile caricare la configurazione per libzakautho dal db.");
+                       return 0;
+               }
+
+       zak_autho_set_role_name_prefix (commons->autho, g_key_file_get_value (commons->config, "ZAKAUTHO", "role_name_prefix", NULL));
+       zak_autho_set_resource_name_prefix (commons->autho, g_key_file_get_value (commons->config, "ZAKAUTHO", "resource_name_prefix", NULL));
+
        commons->zcgi_main = zak_cgi_main_new ();
 
        commons->out = g_string_new ("");