]> saetta.ns0.it Git - solipa/territorio/commitdiff
Introdotta libautoz (da fare la gestione).
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Wed, 27 Oct 2010 11:19:02 +0000 (13:19 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Wed, 27 Oct 2010 11:19:02 +0000 (13:19 +0200)
configure.ac
docs/territorio/examples/territorio.conf
src/commons.h
src/main.c

index d0bf6aeddc3743a1274487f0bb533cb478433e5f..821bf5f64a7f480dbbde4dc5bb0a1889e811608f 100644 (file)
@@ -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)
index 35b1960c7d4fe9af5065328f6c04d853e57c7ef8..e4f9853983be2632829f6c24043183576f86dc68 100644 (file)
@@ -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
index 2bb0a06801ab6659fd053d8d4cea895ebd5e768b..f48abb4bb429327c0dc0986b2e6d6124ee63df48 100644 (file)
@@ -26,6 +26,8 @@
 #include <gtk/gtk.h>
 
 #include <libgdaex.h>
+#include <libautoz/autoz.h>
+#include <libautoz/role_interface.h>
 
 typedef struct
        {
@@ -39,6 +41,8 @@ typedef struct
                const gchar *guifile;
 
                gchar *utente;
+               Autoz *autoz;
+               AutozIRole *role_utente;
        } TerritorioCommons;
 
 #endif /* __TERRITORIO_COMMONS_H__ */
index 195f81aebef526d4e1f9b76dcc416761c4a3007a..819f22a6f9e733ee1ebdc9ef77cb75e917d44898 100644 (file)
@@ -24,8 +24,9 @@
 
 #include <gtk/gtk.h>
 
-#include <libaute.h>
 #include <libgdaex.h>
+#include <libaute.h>
+#include <libautoz/autoz.h>
 
 #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;