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)
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
#include <ctpl/ctpl.h>
#include <libzakcgi/libzakcgi.h>
#include <libgdaex/libgdaex.h>
+#include <libzakautho/autoz.h>
+#include <libzakautho/role_interface.h>
typedef struct
{
ZakCgiSession *zcgi_session;
GString *out;
+
+ ZakAutho *autho;
+ ZakAuthoIRole *role_utente;
} Commons;
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)"
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
{
gchar *filename;
+ GdaConnection *gdacon;
+
gda_init ();
/* inizializzazione commons */
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 ("");