]> saetta.ns0.it Git - solipa/territorio/commitdiff
Gestione autorizzazioni.
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Thu, 28 Oct 2010 07:14:41 +0000 (09:14 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Thu, 28 Oct 2010 07:14:41 +0000 (09:14 +0200)
15 files changed:
src/aggregazioneterritoriale.c
src/aggregazioniterritoriali.c
src/comune.c
src/comuni.c
src/importaregioniprovinceistat.c
src/province.c
src/provincia.c
src/regione.c
src/regioni.c
src/stati.c
src/stato.c
src/tipiaggregazioneterritoriale.c
src/tipoaggregazioneterritoriale.c
src/via.c
src/vie.c

index 3946c4b5623f7bd9fa0499f3170034ff2733f31f..8401b4fe6219f770af0c531af8a3e78329329f6b 100644 (file)
@@ -18,6 +18,7 @@
  */
 
 #include <libgtkform/form.h>
+#include <libautoz/autoz.h>
 
 #include "aggregazioneterritoriale.h"
 
@@ -113,6 +114,7 @@ TerritorioAggregazioneTerritoriale
 *territorio_aggregazione_territoriale_new (TerritorioCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioAggregazioneTerritoriale *a = TERRITORIO_AGGREGAZIONE_TERRITORIALE (g_object_new (territorio_aggregazione_territoriale_get_type (), NULL));
 
@@ -163,6 +165,12 @@ TerritorioAggregazioneTerritoriale
                        territorio_aggregazione_territoriale_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button42")), FALSE);
+               }
+
        return a;
 }
 
index 37732f6628af2b78e28efbb4b276fdc74d1b7e2e..e56ef3af768d9985e0da0b02dca9eacfd365aa35 100644 (file)
@@ -17,6 +17,8 @@
  *
  */
 
+#include <libautoz/autoz.h>
+
 #include "aggregazioniterritoriali.h"
 #include "aggregazioneterritoriale.h"
 
@@ -120,6 +122,7 @@ TerritorioAggregazioniTerritoriali
 *territorio_aggregazioni_territoriali_new (TerritorioCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioAggregazioniTerritoriali *a = TERRITORIO_AGGREGAZIONI_TERRITORIALI (g_object_new (territorio_aggregazioni_territoriali_get_type (), NULL));
 
@@ -178,6 +181,13 @@ TerritorioAggregazioniTerritoriali
 
        territorio_aggregazioni_territoriali_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button36")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button38")), FALSE);
+               }
+
        return a;
 }
 
index ce2d74e4fd7e3fe8b0978cab580799eb53768c59..78b91e1941e37634ac5d124f704d01714a7dd83f 100644 (file)
@@ -18,6 +18,7 @@
  */
 
 #include <libgtkform/form.h>
+#include <libautoz/autoz.h>
 
 #include "comune.h"
 #include "province.h"
@@ -119,6 +120,7 @@ TerritorioComune
 *territorio_comune_new (TerritorioCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioComune *a = TERRITORIO_COMUNE (g_object_new (territorio_comune_get_type (), NULL));
 
@@ -171,6 +173,12 @@ TerritorioComune
                        territorio_comune_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button28")), FALSE);
+               }
+
        return a;
 }
 
index 455c0a5426ffbb734fd34dfdea6d2efc6cb6ac87..864978fda4567c5888e1d51f52581e6119fb2799 100644 (file)
@@ -17,6 +17,8 @@
  *
  */
 
+#include <libautoz/autoz.h>
+
 #include "comuni.h"
 #include "comune.h"
 #include "ricercacomuni.h"
@@ -130,6 +132,7 @@ TerritorioComuni
 *territorio_comuni_new (TerritorioCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioComuni *a = TERRITORIO_COMUNI (g_object_new (territorio_comuni_get_type (), NULL));
 
@@ -190,6 +193,13 @@ TerritorioComuni
 
        territorio_comuni_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button22")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button24")), FALSE);
+               }
+
        return a;
 }
 
index 28f77fe6e57b426f810cba41996c7d4dc357a468..88208bd6de65f0083373397f9de2a15ddc2cdd59 100644 (file)
@@ -105,8 +105,8 @@ TerritorioImportaRegioniProvinceIstat
                        guint id_province;
 
                        filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (fchooser));
-                       g_message (filename);
                        gtk_widget_destroy (fchooser);
+                       g_message (filename);
 
                        GdaSet *plist = gda_set_new_inline (14,
                                                            "SEPARATOR", G_TYPE_STRING, ";",
@@ -135,6 +135,7 @@ TerritorioImportaRegioniProvinceIstat
                                        gtk_widget_destroy (dialog);
                                        return NULL;
                                }
+                       gda_data_model_dump (dm, stderr);
 
                        /*errors = gda_data_model_import_get_errors (GDA_DATA_MODEL_IMPORT (dm));
                        if (errors != NULL)
@@ -156,11 +157,8 @@ TerritorioImportaRegioniProvinceIstat
                                        return NULL;
                                }*/
 
-                       plist = gda_set_new_inline (1, "OVERWRITE", G_TYPE_BOOLEAN, TRUE);
-                       gda_data_model_export_to_file (dm, GDA_DATA_MODEL_IO_TEXT_SEPARATED, "importato.csv",
-                                                              NULL, 0, NULL, 0, plist, NULL);
-
                        rows = gda_data_model_get_n_rows (dm);
+                       g_message ("Numero di record: %d.", rows);
                        if (rows < 1)
                                {
                                        dialog = gtk_message_dialog_new (w_main,
@@ -172,7 +170,10 @@ TerritorioImportaRegioniProvinceIstat
                                        gtk_widget_destroy (dialog);
                                        return NULL;
                                }
-                       g_message ("Numero di record: %d.", rows);
+
+                       plist = gda_set_new_inline (1, "OVERWRITE", G_TYPE_BOOLEAN, TRUE);
+                       gda_data_model_export_to_file (dm, GDA_DATA_MODEL_IO_TEXT_SEPARATED, "importato.csv",
+                                                              NULL, 0, NULL, 0, plist, NULL);
 
                        /* TODO
                         * segnarsi i record aggiornati, perché alla fine del ciclo quelli
index 06d2b5a2ad4389bc9600184a9ef578ca3fee0821..b1f79d3407b7e925e955268ec1e9f7d1d9aa7f2b 100644 (file)
@@ -17,6 +17,8 @@
  *
  */
 
+#include <libautoz/autoz.h>
+
 #include "province.h"
 #include "provincia.h"
 #include "ricercaprovince.h"
@@ -130,6 +132,7 @@ TerritorioProvince
 *territorio_province_new (TerritorioCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioProvince *a = TERRITORIO_PROVINCE (g_object_new (territorio_province_get_type (), NULL));
 
@@ -190,6 +193,13 @@ TerritorioProvince
 
        territorio_province_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button15")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button17")), FALSE);
+               }
+
        return a;
 }
 
index 38a9294f2c8436348edcb1ed78da5fac1023f2f6..e39fe0c4be85082fb7c4bf6777a87b07d53a42bc 100644 (file)
@@ -18,6 +18,7 @@
  */
 
 #include <libgtkform/form.h>
+#include <libautoz/autoz.h>
 
 #include "provincia.h"
 #include "regioni.h"
@@ -119,6 +120,7 @@ TerritorioProvincia
 *territorio_provincia_new (TerritorioCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioProvincia *a = TERRITORIO_PROVINCIA (g_object_new (territorio_provincia_get_type (), NULL));
 
@@ -171,6 +173,12 @@ TerritorioProvincia
                        territorio_provincia_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button21")), FALSE);
+               }
+
        return a;
 }
 
index 539d8bb6b3b67d122ade24c25c49c7129a8a8044..9c6ac0229bd3e9da2c758ed298fe6b2f4df1db51 100644 (file)
@@ -18,6 +18,7 @@
  */
 
 #include <libgtkform/form.h>
+#include <libautoz/autoz.h>
 
 #include "regione.h"
 
@@ -113,6 +114,7 @@ TerritorioRegione
 *territorio_regione_new (TerritorioCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioRegione *a = TERRITORIO_REGIONE (g_object_new (territorio_regione_get_type (), NULL));
 
@@ -162,6 +164,12 @@ TerritorioRegione
                        territorio_regione_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button14")), FALSE);
+               }
+
        return a;
 }
 
index b677feb57b5ce7cb2a5df20ff98fc96ac1de1d79..f9a675565e4e2d963372674d64df780c7822bb68 100644 (file)
@@ -17,6 +17,8 @@
  *
  */
 
+#include <libautoz/autoz.h>
+
 #include "regioni.h"
 #include "regione.h"
 
@@ -120,6 +122,7 @@ TerritorioRegioni
 *territorio_regioni_new (TerritorioCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioRegioni *a = TERRITORIO_REGIONI (g_object_new (territorio_regioni_get_type (), NULL));
 
@@ -178,6 +181,13 @@ TerritorioRegioni
 
        territorio_regioni_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button8")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button10")), FALSE);
+               }
+
        return a;
 }
 
index a206cfa4f9b67f26ab59c1a0da7b46bd09b95f06..c8147b114e0276d82339b8b871995fed6832c4bd 100644 (file)
@@ -17,6 +17,8 @@
  *
  */
 
+#include <libautoz/autoz.h>
+
 #include "stati.h"
 #include "stato.h"
 
@@ -120,6 +122,7 @@ TerritorioStati
 *territorio_stati_new (TerritorioCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioStati *a = TERRITORIO_STATI (g_object_new (territorio_stati_get_type (), NULL));
 
@@ -178,6 +181,13 @@ TerritorioStati
 
        territorio_stati_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button1")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button3")), FALSE);
+               }
+
        return a;
 }
 
index 1a6615da0e34dc95d7d31954ce08623218fc752b..8c53aeb97679b887723bb7f3d371d667e3448459 100644 (file)
@@ -18,6 +18,7 @@
  */
 
 #include <libgtkform/form.h>
+#include <libautoz/autoz.h>
 
 #include "stato.h"
 
@@ -113,6 +114,7 @@ TerritorioStato
 *territorio_stato_new (TerritorioCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioStato *a = TERRITORIO_STATO (g_object_new (territorio_stato_get_type (), NULL));
 
@@ -162,6 +164,12 @@ TerritorioStato
                        territorio_stato_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button7")), FALSE);
+               }
+
        return a;
 }
 
index d5ad4f5918573dfb6199c786cde3e46f0b46ec39..a1fb4533abe192d79331a7c02982b92b2eb99f8f 100644 (file)
@@ -17,6 +17,8 @@
  *
  */
 
+#include <libautoz/autoz.h>
+
 #include "tipiaggregazioneterritoriale.h"
 #include "tipoaggregazioneterritoriale.h"
 
@@ -120,6 +122,7 @@ TerritorioTipiAggregazioneTerritoriale
 *territorio_tipi_aggregazione_territoriale_new (TerritorioCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioTipiAggregazioneTerritoriale *a = TERRITORIO_TIPI_AGGREGAZIONE_TERRITORIALE (g_object_new (territorio_tipi_aggregazione_territoriale_get_type (), NULL));
 
@@ -178,6 +181,13 @@ TerritorioTipiAggregazioneTerritoriale
 
        territorio_tipi_aggregazione_territoriale_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button29")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button31")), FALSE);
+               }
+
        return a;
 }
 
index 7de324be488274a62dbde0382ed37755ce27309a..c1fe3553d6dd3f3586de7ab420ccfd8cb279ce09 100644 (file)
@@ -18,6 +18,7 @@
  */
 
 #include <libgtkform/form.h>
+#include <libautoz/autoz.h>
 
 #include "tipoaggregazioneterritoriale.h"
 
@@ -113,6 +114,7 @@ TerritorioTipoAggregazioneTerritoriale
 *territorio_tipo_aggregazione_territoriale_new (TerritorioCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioTipoAggregazioneTerritoriale *a = TERRITORIO_TIPO_AGGREGAZIONE_TERRITORIALE (g_object_new (territorio_tipo_aggregazione_territoriale_get_type (), NULL));
 
@@ -162,6 +164,12 @@ TerritorioTipoAggregazioneTerritoriale
                        territorio_tipo_aggregazione_territoriale_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button35")), FALSE);
+               }
+
        return a;
 }
 
index 957dd20390565d65f1ad758b3df36eabfbe21de4..da3bd9ad3449fea5dcf0e402b91f2b725c3c3dac 100644 (file)
--- a/src/via.c
+++ b/src/via.c
@@ -18,6 +18,7 @@
  */
 
 #include <libgtkform/form.h>
+#include <libautoz/autoz.h>
 
 #include "via.h"
 #include "comuni.h"
@@ -119,6 +120,7 @@ TerritorioVia
 *territorio_via_new (TerritorioCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioVia *a = TERRITORIO_VIA (g_object_new (territorio_via_get_type (), NULL));
 
@@ -171,6 +173,12 @@ TerritorioVia
                        territorio_via_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button52")), FALSE);
+               }
+
        return a;
 }
 
index 9f7aba7ba78c3a0d3868556c84b5e80961bbf0e6..a777a2d425c684d8f3e8c4b08bd5bb2fb4cc7ee0 100644 (file)
--- a/src/vie.c
+++ b/src/vie.c
@@ -18,6 +18,7 @@
  */
 
 #include <string.h>
+#include <libautoz/autoz.h>
 
 #include "vie.h"
 #include "via.h"
@@ -140,6 +141,7 @@ TerritorioVie
 *territorio_vie_new (TerritorioCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        TerritorioVie *a = TERRITORIO_VIE (g_object_new (territorio_vie_get_type (), NULL));
 
@@ -202,6 +204,13 @@ TerritorioVie
 
        territorio_vie_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "territorio_rw");
+       if (!autoz_is_allowed (priv->commons->autoz, priv->commons->role_utente, ires1, FALSE))
+               {
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button45")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button47")), FALSE);
+               }
+
        return a;
 }