From: Andrea Zagli Date: Wed, 27 Oct 2010 11:19:02 +0000 (+0200) Subject: Introdotta libautoz (da fare la gestione). X-Git-Tag: gtk3~31 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=dbcc917bbbce8817a79d99b3fcf5f2e4733cda5c;p=solipa%2Fterritorio Introdotta libautoz (da fare la gestione). --- diff --git a/configure.ac b/configure.ac index d0bf6ae..821bf5f 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,8 @@ AC_PROG_RANLIB PKG_CHECK_MODULES(TERRITORIO, [gio-2.0 >= 2.20 gtk+-2.0 >= 2.16 libgtkform >= 0.1.3 - libaute >= 0.0.2]) + libaute >= 0.0.2 + libautoz >= 0.0.1]) AC_SUBST(TERRITORIO_CFLAGS) AC_SUBST(TERRITORIO_LIBS) diff --git a/docs/territorio/examples/territorio.conf b/docs/territorio/examples/territorio.conf index 35b1960..e4f9853 100644 --- a/docs/territorio/examples/territorio.conf +++ b/docs/territorio/examples/territorio.conf @@ -2,5 +2,8 @@ plugin=/usr/local/lib/libaute/plugins/libaute-db cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=aute +[AUTOZ] +cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autoz + [DB] cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=territorio diff --git a/src/commons.h b/src/commons.h index 2bb0a06..f48abb4 100644 --- a/src/commons.h +++ b/src/commons.h @@ -26,6 +26,8 @@ #include #include +#include +#include typedef struct { @@ -39,6 +41,8 @@ typedef struct const gchar *guifile; gchar *utente; + Autoz *autoz; + AutozIRole *role_utente; } TerritorioCommons; #endif /* __TERRITORIO_COMMONS_H__ */ diff --git a/src/main.c b/src/main.c index 195f81a..819f22a 100644 --- a/src/main.c +++ b/src/main.c @@ -24,8 +24,9 @@ #include -#include #include +#include +#include #include "aggregazioniterritoriali.h" #include "commons.h" @@ -185,6 +186,8 @@ main (int argc, char *argv[]) { GError *error; + GdaConnection *gdacon; + Aute *aute; gchar **aute_params; gsize n_aute_params; @@ -257,6 +260,42 @@ main (int argc, char *argv[]) commons->utente = g_strdup (utente); + /* leggo i parametri per libautoz */ + error = NULL; + cnc_string = g_key_file_get_value (config, "AUTOZ", "cnc_string", &error); + if (cnc_string == NULL) + { + g_warning ("Impossibile leggere la stringa di connessione per libautoz dal file di configurazione: %s.\n", 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) + { + g_warning ("Impossibile creare la connessione al db per libautoz: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio"); + return 0; + } + + commons->autoz = autoz_new (); + if (commons->autoz == NULL) + { + g_warning ("Impossibile creare l'oggetto per libautoz."); + return 0; + } + if (!autoz_load_from_db (commons->autoz, gdacon, NULL, TRUE)) + { + g_warning ("Impossibile caricare la configurazione per libautoz dal db."); + return 0; + } + + commons->role_utente = autoz_get_role_from_id (commons->autoz, commons->utente); + if (commons->role_utente == NULL) + { + g_warning ("Utente «%s» non trovato nell configurazione di libautoz.", commons->utente); + return 0; + } + #ifdef G_OS_WIN32 gchar *moddir;