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
#include <gtk/gtk.h>
#include <libgdaex.h>
+#include <libautoz/autoz.h>
+#include <libautoz/role_interface.h>
typedef struct
{
const gchar *guifile;
gchar *utente;
+ Autoz *autoz;
+ AutozIRole *role_utente;
} TerritorioCommons;
#endif /* __TERRITORIO_COMMONS_H__ */
#include <gtk/gtk.h>
-#include <libaute.h>
#include <libgdaex.h>
+#include <libaute.h>
+#include <libautoz/autoz.h>
#include "aggregazioniterritoriali.h"
#include "commons.h"
{
GError *error;
+ GdaConnection *gdacon;
+
Aute *aute;
gchar **aute_params;
gsize n_aute_params;
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;