]> saetta.ns0.it Git - solipa/organigramma/commitdiff
Integrazione con libautoz (closes #528).
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 4 Dec 2012 11:06:44 +0000 (12:06 +0100)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 4 Dec 2012 11:06:44 +0000 (12:06 +0100)
36 files changed:
docs/organigramma/examples/organigramma.conf
src/commons.h
src/main.c
src/nodi.c
src/nodo.c
src/persona.c
src/personaincarico.c
src/personanodo.c
src/personanodorecapito.c
src/personarecapito.c
src/personaufficio.c
src/personaufficiorecapito.c
src/persone.c
src/posizioneeconomica.c
src/posizionieconomiche.c
src/profiliprofessionali.c
src/profiloprofessionale.c
src/struttura.c
src/strutturaindirizzo.c
src/strutture.c
src/tipinodo.c
src/tipiprestazione.c
src/tipirapportolavoro.c
src/tipirecapito.c
src/tiponodo.c
src/tipoprestazione.c
src/tiporapportolavoro.c
src/tiporecapito.c
src/titoli.c
src/titolo.c
src/uffici.c
src/ufficio.c
src/ufficionodo.c
src/ufficioorario.c
src/ufficiorecapito.c
src/ufficiostanza.c

index 5828ab6fe2fe7ba5aff8373abad1ad4d7e6a03b5..9e67dfb785cb79423440b595ba29316866aaf170 100644 (file)
@@ -8,5 +8,8 @@ cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autoz
 plugin=/usr/local/lib/libaute/plugins/libaute-db
 cnc_string=PostgreSQL://postgres:postgres@HOST=localhost;PORT=5432;DB_NAME=autedb
 
+[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=organigramma
index 334dc4c5d8f92586c3b7f37c3d67595525ea0553..93f7d0f019f3b385bcf468fb8add17a97baf55a8 100644 (file)
@@ -26,6 +26,8 @@
 #include <gtk/gtk.h>
 
 #include <libgdaex/libgdaex.h>
+#include <libautoz/autoz.h>
+#include <libautoz/role_interface.h>
 
 #include <libterritorio/commons.h>
 
@@ -40,6 +42,10 @@ typedef struct
 
                const gchar *guifile;
 
+               const gchar *utente;
+               Autoz *autoz;
+               AutozIRole *role_utente;
+
                TerritorioCommons *territorio_commons;
        } OrganigrammaCommons;
 
index 01f01021a6640084a8727c0100197d0257e61b70..fee24dae54b5c0f66cfc80abc0f53a70446b0f4f 100644 (file)
@@ -25,6 +25,7 @@
 #include <gtk/gtk.h>
 
 #include <libaute.h>
+#include <libautoz/autoz.h>
 
 #include <libterritorio/commons.h>
 
@@ -303,6 +304,7 @@ main (int argc, char *argv[])
 
        /* inizializzazione commons */
        commons = g_new0 (OrganigrammaCommons, 1);
+       commons->utente = utente;
 
        commons->territorio_commons = g_new0 (TerritorioCommons, 1);
        commons->territorio_commons->utente = utente;
@@ -347,6 +349,49 @@ main (int argc, char *argv[])
        commons->guifile = g_build_filename (commons->guidir, "organigramma.gui", NULL);
        commons->territorio_commons->guifile = g_build_filename (commons->territorio_commons->guidir, "territorio.gui", NULL);
 
+       /* 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;
+               }
+
+       if (!autoz_is_allowed (commons->autoz, commons->role_utente, autoz_get_resource_from_id (commons->autoz, "organigramma_ro"), FALSE)
+           && !autoz_is_allowed (commons->autoz, commons->role_utente, autoz_get_resource_from_id (commons->autoz, "organigramma_rw"), FALSE))
+               {
+                       g_critical ("Non si è autorizzati all'utilizzo di questa applicazione.");
+                       return 0;
+               }
+
        /* leggo la stringa di connessione al db */
        error = NULL;
        cnc_string = g_key_file_get_value (config, "DB", "cnc_string", &error);
index 707b0c6ffbe51eb7e87fdf61abbab8d4f4274ec7..44936b90e6d58e6b95e49a48a34ce32d640f58a8 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libsolipa/utils.h>
 
 #include "nodi.h"
@@ -125,6 +126,7 @@ OrganigrammaNodi
 *organigramma_nodi_new (OrganigrammaCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaNodi *a = ORGANIGRAMMA_NODI (g_object_new (organigramma_nodi_get_type (), NULL));
 
@@ -183,6 +185,13 @@ OrganigrammaNodi
 
        organigramma_nodi_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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 e87e88911e603503cb8ec00c4b1d415fbcf0e731..e834e9e7f2a702fa04e35cf1f3f101dfb185819f 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -124,6 +125,7 @@ OrganigrammaNodo
 *organigramma_nodo_new (OrganigrammaCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaNodo *a = ORGANIGRAMMA_NODO (g_object_new (organigramma_nodo_get_type (), NULL));
 
@@ -180,6 +182,12 @@ OrganigrammaNodo
                        organigramma_nodo_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button5")), FALSE);
+               }
+
        return a;
 }
 
index e5af88c93cf6c888e5233d2f5f554b07b787d1ec..93019aac16ef2a75e9c63b72ccfa720c40a0ec57 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libgtkform/fielddatetime.h>
 #include <libsolipa/utils.h>
@@ -278,6 +279,7 @@ OrganigrammaPersona
 *organigramma_persona_new (OrganigrammaCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaPersona *a = ORGANIGRAMMA_PERSONA (g_object_new (organigramma_persona_get_type (), NULL));
 
@@ -415,6 +417,24 @@ OrganigrammaPersona
                        organigramma_persona_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button79")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button81")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button70")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button72")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button73")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button75")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button62")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button64")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button67")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button69")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button76")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button78")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button66")), FALSE);
+               }
+
        return a;
 }
 
index 547c342505824d452bbe6f8f646820a632d545d7..ea7fb3cf3410d3bdef87a56fa41cb6b22474ad6e 100644 (file)
@@ -21,6 +21,7 @@
        #include <config.h>
 #endif
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -122,6 +123,7 @@ OrganigrammaPersonaIncarico
 *organigramma_persona_incarico_new (OrganigrammaCommons *commons, guint id, guint id_persone)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaPersonaIncarico *a = ORGANIGRAMMA_PERSONA_INCARICO (g_object_new (organigramma_persona_incarico_get_type (), NULL));
 
@@ -179,6 +181,12 @@ OrganigrammaPersonaIncarico
                        organigramma_persona_incarico_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button99")), FALSE);
+               }
+
        return a;
 }
 
index 2b6108134d05ee0677a00b265d177f58ec79a837..584686cd2544d248e3d3fdf0185044093a7ed239 100644 (file)
@@ -21,6 +21,7 @@
        #include <config.h>
 #endif
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -129,6 +130,7 @@ OrganigrammaPersonaNodo
 *organigramma_persona_nodo_new (OrganigrammaCommons *commons, guint id, guint id_persone)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaPersonaNodo *a = ORGANIGRAMMA_PERSONA_NODO (g_object_new (organigramma_persona_nodo_get_type (), NULL));
 
@@ -184,6 +186,12 @@ OrganigrammaPersonaNodo
                        organigramma_persona_nodo_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button92")), FALSE);
+               }
+
        return a;
 }
 
index 64b2a5b18547493a6bec9a1f64d747c8e53ecfb3..868027b02e54e32d0109126c614f98a1843ad7dd 100644 (file)
@@ -21,6 +21,7 @@
        #include <config.h>
 #endif
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -123,6 +124,7 @@ OrganigrammaPersonaNodoRecapito
 *organigramma_persona_nodo_recapito_new (OrganigrammaCommons *commons, guint id, guint id_persone, guint id_nodi)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaPersonaNodoRecapito *a = ORGANIGRAMMA_PERSONA_NODO_RECAPITO (g_object_new (organigramma_persona_nodo_recapito_get_type (), NULL));
 
@@ -177,6 +179,12 @@ OrganigrammaPersonaNodoRecapito
                        organigramma_persona_nodo_recapito_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button94")), FALSE);
+               }
+
        return a;
 }
 
index 142ecd8d8885bf02fb9de0035430a146ae2647e6..8d541e4bc34faacdca3da3994f481a1c52ddf095 100644 (file)
@@ -21,6 +21,7 @@
        #include <config.h>
 #endif
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -121,6 +122,7 @@ OrganigrammaPersonaRecapito
 *organigramma_persona_recapito_new (OrganigrammaCommons *commons, guint id, guint id_persone)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaPersonaRecapito *a = ORGANIGRAMMA_PERSONA_RECAPITO (g_object_new (organigramma_persona_recapito_get_type (), NULL));
 
@@ -173,6 +175,12 @@ OrganigrammaPersonaRecapito
                        organigramma_persona_recapito_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button88")), FALSE);
+               }
+
        return a;
 }
 
index 56c8592e0c8f5600ceaab13fdebe1e1835eabc81..98aed543031c4c435fba92ace6a0b44968c4603c 100644 (file)
@@ -21,6 +21,7 @@
        #include <config.h>
 #endif
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -129,6 +130,7 @@ OrganigrammaPersonaUfficio
 *organigramma_persona_ufficio_new (OrganigrammaCommons *commons, guint id, guint id_persone)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaPersonaUfficio *a = ORGANIGRAMMA_PERSONA_UFFICIO (g_object_new (organigramma_persona_ufficio_get_type (), NULL));
 
@@ -184,6 +186,12 @@ OrganigrammaPersonaUfficio
                        organigramma_persona_ufficio_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button84")), FALSE);
+               }
+
        return a;
 }
 
index 9232c8d0b95f20b750bfe6fa83e8d5c21abf39ec..82727ed91ee5eef2f411560e5eab2dacb218388b 100644 (file)
@@ -21,6 +21,7 @@
        #include <config.h>
 #endif
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -123,6 +124,7 @@ OrganigrammaPersonaUfficioRecapito
 *organigramma_persona_ufficio_recapito_new (OrganigrammaCommons *commons, guint id, guint id_persone, guint id_uffici)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaPersonaUfficioRecapito *a = ORGANIGRAMMA_PERSONA_UFFICIO_RECAPITO (g_object_new (organigramma_persona_ufficio_recapito_get_type (), NULL));
 
@@ -177,6 +179,12 @@ OrganigrammaPersonaUfficioRecapito
                        organigramma_persona_ufficio_recapito_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button86")), FALSE);
+               }
+
        return a;
 }
 
index a5c149510c9af76a3fb872df38f8dd6b6d1053c7..199df0e3a64714ba94488d629797a022f89082f9 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libsolipa/utils.h>
 
 #include "persone.h"
@@ -126,6 +127,7 @@ OrganigrammaPersone
                            guint id_uffici, GDateTime *when)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaPersone *a = ORGANIGRAMMA_PERSONE (g_object_new (organigramma_persone_get_type (), NULL));
 
@@ -193,6 +195,13 @@ OrganigrammaPersone
 
        organigramma_persone_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button102")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button104")), FALSE);
+               }
+
        return a;
 }
 
index 89da28b5d6e3b659c42bcad9ee6e78301650b5cc..245088c2b661c85711137953641af02a4a35ebee 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -114,6 +115,7 @@ OrganigrammaPosizioneEconomica
 *organigramma_posizione_economica_new (OrganigrammaCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaPosizioneEconomica *a = POSIZIONE_ECONOMICA (g_object_new (organigramma_posizione_economica_get_type (), NULL));
 
@@ -163,6 +165,12 @@ OrganigrammaPosizioneEconomica
                        organigramma_posizione_economica_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button122")), FALSE);
+               }
+
        return a;
 }
 
index 964b94d2eb41a17113f15b96535b4ac80603d215..01e1d5e9b2a9df41c136493ff9dbe9b9f8fd23ec 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libsolipa/utils.h>
 
 #include "posizionieconomiche.h"
@@ -122,6 +123,7 @@ OrganigrammaPosizioniEconomiche
 *organigramma_posizioni_economiche_new (OrganigrammaCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaPosizioniEconomiche *a = ORGANIGRAMMA_POSIZIONI_ECONOMICHE (g_object_new (organigramma_posizioni_economiche_get_type (), NULL));
 
@@ -180,6 +182,13 @@ OrganigrammaPosizioniEconomiche
 
        organigramma_posizioni_economiche_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button116")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button118")), FALSE);
+               }
+
        return a;
 }
 
index 1cf1b1fafe8b853570408fdc66a72657289b05db..c6955b15b38fe45b9665f56f4ca368eb4daca28b 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libsolipa/utils.h>
 
 #include "profiliprofessionali.h"
@@ -124,6 +125,7 @@ OrganigrammaProfiliProfessionali
 *organigramma_profili_professionali_new (OrganigrammaCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaProfiliProfessionali *a = ORGANIGRAMMA_PROFILI_PROFESSIONALI (g_object_new (organigramma_profili_professionali_get_type (), NULL));
 
@@ -173,6 +175,13 @@ OrganigrammaProfiliProfessionali
 
        organigramma_profili_professionali_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button130")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button132")), FALSE);
+               }
+
        return a;
 }
 
index a6ecb51ffa36a1156989cbc66300e3fbc2f3fe8d..2aeda3db8f8bfd8b4710a5f8852b2614499e7a1b 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libgtkform/fielddatetime.h>
 #include <libsolipa/utils.h>
@@ -115,6 +116,7 @@ OrganigrammaProfiloProfessionale
 *organigramma_profilo_professionale_new (OrganigrammaCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaProfiloProfessionale *a = ORGANIGRAMMA_PROFILO_PROFESSIONALE (g_object_new (organigramma_profilo_professionale_get_type (), NULL));
 
@@ -164,6 +166,12 @@ OrganigrammaProfiloProfessionale
                        organigramma_profilo_professionale_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button136")), FALSE);
+               }
+
        return a;
 }
 
index 962177d9e45154bd7103f93a93b395272cdff747..7532cbb6c0e51c82e23be413c1c44deef81ea8eb 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libterritorio/via.h>
 #include <libsolipa/utils.h>
@@ -142,6 +143,7 @@ OrganigrammaStruttura
 *organigramma_struttura_new (OrganigrammaCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaStruttura *a = ORGANIGRAMMA_STRUTTURA (g_object_new (organigramma_struttura_get_type (), NULL));
 
@@ -209,6 +211,14 @@ OrganigrammaStruttura
                        organigramma_struttura_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button47")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button51")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button40")), FALSE);
+               }
+
        return a;
 }
 
index 148efb0bb14a1175b8a6e147db70e0e020461fc0..8a098f499364275ad3b88f7124cd5c198da5c0a6 100644 (file)
@@ -21,6 +21,7 @@
        #include <config.h>
 #endif
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libterritorio/vie.h>
 #include <libsolipa/utils.h>
@@ -131,6 +132,7 @@ OrganigrammaStrutturaIndirizzo
 *organigramma_struttura_indirizzo_new (OrganigrammaCommons *commons, guint id, guint id_strutture)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaStrutturaIndirizzo *a = ORGANIGRAMMA_STRUTTURA_INDIRIZZO (g_object_new (organigramma_struttura_indirizzo_get_type (), NULL));
 
@@ -188,6 +190,12 @@ OrganigrammaStrutturaIndirizzo
                        organigramma_struttura_indirizzo_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button56")), FALSE);
+               }
+
        return a;
 }
 
index ef1297a3ac0972fffb98d60dee28315a3876a1c8..c854191efb9dea816b82ecb7fc16f79ef46e0f72 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libsolipa/utils.h>
 
 #include "strutture.h"
@@ -122,6 +123,7 @@ OrganigrammaStrutture
 *organigramma_strutture_new (OrganigrammaCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaStrutture *a = ORGANIGRAMMA_STRUTTURE (g_object_new (organigramma_strutture_get_type (), NULL));
 
@@ -180,6 +182,13 @@ OrganigrammaStrutture
 
        organigramma_strutture_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button32")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button34")), FALSE);
+               }
+
        return a;
 }
 
index 449d7e1a11545a1ddc2a63dcef2d68c856566896..3b6472e1d920ad921ef1302f4da6a7ce60cc4179 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libsolipa/utils.h>
 
 #include "tipinodo.h"
@@ -124,6 +125,7 @@ OrganigrammaTipiNodo
 *organigramma_tipi_nodo_new (OrganigrammaCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaTipiNodo *a = ORGANIGRAMMA_TIPI_NODO (g_object_new (organigramma_tipi_nodo_get_type (), NULL));
 
@@ -173,6 +175,13 @@ OrganigrammaTipiNodo
 
        organigramma_tipi_nodo_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button11")), FALSE);
+               }
+
        return a;
 }
 
index 0c9f006400b6495ffd74535a892f9ad93f846bdf..15d992250901b93f69ae3d9a6cbd75449bb56681 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libsolipa/utils.h>
 
 #include "tipiprestazione.h"
@@ -124,6 +125,7 @@ OrganigrammaTipiPrestazione
 *organigramma_tipi_prestazione_new (OrganigrammaCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaTipiPrestazione *a = ORGANIGRAMMA_TIPI_PRESTAZIONE (g_object_new (organigramma_tipi_prestazione_get_type (), NULL));
 
@@ -173,6 +175,13 @@ OrganigrammaTipiPrestazione
 
        organigramma_tipi_prestazione_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button123")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button125")), FALSE);
+               }
+
        return a;
 }
 
index 9867702ab1ad5cb94884bedce16249153af64f9b..a9fafb5d6126a73fc41aaa963fc702a056f334b3 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libsolipa/utils.h>
 
 #include "tipirapportolavoro.h"
@@ -122,6 +123,7 @@ OrganigrammaTipiRapportoLavoro
 *organigramma_tipi_rapporto_lavoro_new (OrganigrammaCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaTipiRapportoLavoro *a = ORGANIGRAMMA_TIPI_RAPPORTO_LAVORO (g_object_new (organigramma_tipi_rapporto_lavoro_get_type (), NULL));
 
@@ -180,6 +182,13 @@ OrganigrammaTipiRapportoLavoro
 
        organigramma_tipi_rapporto_lavoro_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button109")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button111")), FALSE);
+               }
+
        return a;
 }
 
index 88241b2f6fa3c73895d98b155c021fb931dc0423..2e83ab86468cd34dc8e48a8fc5370779d0edc59b 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libsolipa/utils.h>
 
 #include "tipirecapito.h"
@@ -122,6 +123,7 @@ OrganigrammaTipiRecapito
 *organigramma_tipi_recapito_new (OrganigrammaCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaTipiRecapito *a = ORGANIGRAMMA_TIPI_RECAPITO (g_object_new (organigramma_tipi_recapito_get_type (), NULL));
 
@@ -180,6 +182,13 @@ OrganigrammaTipiRecapito
 
        organigramma_tipi_recapito_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button16")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button18")), FALSE);
+               }
+
        return a;
 }
 
index 81ff640bfccbbf1ff201aa1f8c8a94b96147a380..d5204145fbc5320a7312ad80979603611ccb9e73 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libgtkform/fielddatetime.h>
 #include <libsolipa/utils.h>
@@ -115,6 +116,7 @@ OrganigrammaTipoNodo
 *organigramma_tipo_nodo_new (OrganigrammaCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaTipoNodo *a = ORGANIGRAMMA_TIPO_NODO (g_object_new (organigramma_tipo_nodo_get_type (), NULL));
 
@@ -164,6 +166,12 @@ OrganigrammaTipoNodo
                        organigramma_tipo_nodo_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button9")), FALSE);
+               }
+
        return a;
 }
 
index e4ab3b0712de79772f0abaeba3502a73c6c87a46..04945c5d96c05b18ae488ab8f7ba39f21daade79 100644 (file)
@@ -1,5 +1,5 @@
 /* 
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2012 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libgtkform/fielddatetime.h>
 #include <libsolipa/utils.h>
@@ -115,6 +116,7 @@ OrganigrammaTipoPrestazione
 *organigramma_tipo_prestazione_new (OrganigrammaCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaTipoPrestazione *a = ORGANIGRAMMA_TIPO_PRESTAZIONE (g_object_new (organigramma_tipo_prestazione_get_type (), NULL));
 
@@ -164,6 +166,12 @@ OrganigrammaTipoPrestazione
                        organigramma_tipo_prestazione_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button129")), FALSE);
+               }
+
        return a;
 }
 
index 8c597e7dbec48598543db59e41a0d5c3fdd3f039..cf44dc063fc0ed9c0e547c353434205074adc289 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -114,6 +115,7 @@ OrganigrammaTipoRapportoLavoro
 *organigramma_tipo_rapporto_lavoro_new (OrganigrammaCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaTipoRapportoLavoro *a = ORGANIGRAMMA_TIPO_RAPPORTO_LAVORO (g_object_new (organigramma_tipo_rapporto_lavoro_get_type (), NULL));
 
@@ -163,6 +165,12 @@ OrganigrammaTipoRapportoLavoro
                        organigramma_tipo_rapporto_lavoro_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button115")), FALSE);
+               }
+
        return a;
 }
 
index db12e05263fee260017875eea121aa90e3922077..f8f37019406e50e4268b154da967a899291ad02c 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -114,6 +115,7 @@ OrganigrammaTipoRecapito
 *organigramma_tipo_recapito_new (OrganigrammaCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaTipoRecapito *a = ORGANIGRAMMA_TIPO_RECAPITO (g_object_new (organigramma_tipo_recapito_get_type (), NULL));
 
@@ -163,6 +165,12 @@ OrganigrammaTipoRecapito
                        organigramma_tipo_recapito_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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);
+               }
+
        return a;
 }
 
index 0537a0d0b2448ef52d2cd7ab149b16fbbd9fdcf2..6d26654f8ab71b0861a32028d4ad5514bf6cac07 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libsolipa/utils.h>
 
 #include "titoli.h"
@@ -123,6 +124,7 @@ OrganigrammaTitoli
 *organigramma_titoli_new (OrganigrammaCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaTitoli *a = ORGANIGRAMMA_TITOLI (g_object_new (organigramma_titoli_get_type (), NULL));
 
@@ -181,6 +183,13 @@ OrganigrammaTitoli
 
        organigramma_titoli_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button95")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button97")), FALSE);
+               }
+
        return a;
 }
 
index 486cda7875facb4366fd3082cc6ecbb70ff6b7df..069758544b24a3dddd9ea25e4cd78f458a2ea6eb 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -114,6 +115,7 @@ OrganigrammaTitolo
 *organigramma_titolo_new (OrganigrammaCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaTitolo *a = ORGANIGRAMMA_TITOLO (g_object_new (organigramma_titolo_get_type (), NULL));
 
@@ -163,6 +165,12 @@ OrganigrammaTitolo
                        organigramma_titolo_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button106")), FALSE);
+               }
+
        return a;
 }
 
index 575df2351bbdc67539e5a8327f05279ffb5a353a..569c38266bbac3d3a921e06b2b5a6216759fa52c 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libsolipa/utils.h>
 
 #include "uffici.h"
@@ -122,6 +123,7 @@ OrganigrammaUffici
 *organigramma_uffici_new (OrganigrammaCommons *commons, gboolean selezione)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaUffici *a = ORGANIGRAMMA_UFFICI (g_object_new (organigramma_uffici_get_type (), NULL));
 
@@ -180,6 +182,13 @@ OrganigrammaUffici
 
        organigramma_uffici_carica (a);
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button23")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button25")), FALSE);
+               }
+
        return a;
 }
 
index a32bdb2faa1c513b7203239a8e47648057f6a4ce..c59931904b78a17ebb132fb0656746eabb8b3beb 100644 (file)
@@ -17,6 +17,7 @@
  *
  */
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -221,6 +222,7 @@ OrganigrammaUfficio
 *organigramma_ufficio_new (OrganigrammaCommons *commons, gint id)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaUfficio *a = ORGANIGRAMMA_UFFICIO (g_object_new (organigramma_ufficio_get_type (), NULL));
 
@@ -262,51 +264,51 @@ OrganigrammaUfficio
        priv->sel_orari = gtk_tree_view_get_selection (GTK_TREE_VIEW (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview10")));
 
        g_signal_connect (priv->w,
-                         "delete-event", G_CALLBACK (organigramma_ufficio_on_w_organigramma_ufficio_delete_event), (gpointer *)a);
+                         "delete-event", G_CALLBACK (organigramma_ufficio_on_w_organigramma_ufficio_delete_event), (gpointer)a);
 
        g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button31"),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_organigramma_ufficio_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_organigramma_ufficio_clicked), (gpointer)a);
 
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button28")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_nuovo_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_nuovo_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button42")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_modifica_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_modifica_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button43")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_elimina_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_nodo_elimina_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview7")),
-                         "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_nodi_row_activated), (gpointer *)a);
+                         "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_nodi_row_activated), (gpointer)a);
 
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button137")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_nuovo_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_nuovo_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button140")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_modifica_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_modifica_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button141")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_elimina_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_stanza_elimina_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview23")),
-                         "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_stanze_row_activated), (gpointer *)a);
+                         "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_stanze_row_activated), (gpointer)a);
 
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button37")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_nuovo_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_nuovo_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button38")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_modifica_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_modifica_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button41")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_elimina_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_recapito_elimina_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview6")),
-                         "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_recapiti_row_activated), (gpointer *)a);
+                         "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_recapiti_row_activated), (gpointer)a);
 
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button59")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_nuovo_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_nuovo_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button60")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_modifica_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_modifica_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button61")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_elimina_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_orario_elimina_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "treeview10")),
-                         "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_orari_row_activated), (gpointer *)a);
+                         "row-activated", G_CALLBACK (organigramma_ufficio_on_trv_orari_row_activated), (gpointer)a);
 
        g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button29"),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_annulla_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_annulla_clicked), (gpointer)a);
        g_signal_connect (gtk_builder_get_object (priv->commons->gtkbuilder, "button30"),
-                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_salva_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_on_btn_salva_clicked), (gpointer)a);
 
        gtk_form_clear (priv->form);
 
@@ -326,6 +328,20 @@ OrganigrammaUfficio
                        organigramma_ufficio_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button43")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button137")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button141")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button37")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button41")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button59")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button61")), FALSE);
+                       gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (commons->gtkbuilder, "button30")), FALSE);
+               }
+
        return a;
 }
 
index 2779982d5be053849699c973ba5417edfafd6f61..e6c01b0ba2493a608c32cd42f32907af1a8e8585 100644 (file)
@@ -21,6 +21,7 @@
        #include <config.h>
 #endif
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -130,6 +131,7 @@ OrganigrammaUfficioNodo
 *organigramma_ufficio_nodo_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaUfficioNodo *a = ORGANIGRAMMA_UFFICIO_NODO (g_object_new (organigramma_ufficio_nodo_get_type (), NULL));
 
@@ -161,15 +163,15 @@ OrganigrammaUfficioNodo
                                                      NULL);
 
        g_signal_connect (priv->w,
-                         "delete-event", G_CALLBACK (organigramma_ufficio_nodo_on_w_organigramma_ufficio_nodo_delete_event), (gpointer *)a);
+                         "delete-event", G_CALLBACK (organigramma_ufficio_nodo_on_w_organigramma_ufficio_nodo_delete_event), (gpointer)a);
 
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button44")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_nodo_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_nodo_clicked), (gpointer)a);
 
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button45")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_annulla_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_annulla_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button46")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_salva_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_nodo_on_btn_salva_clicked), (gpointer)a);
 
        priv->id = id;
        if (priv->id == 0)
@@ -186,6 +188,12 @@ OrganigrammaUfficioNodo
                        organigramma_ufficio_nodo_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button46")), FALSE);
+               }
+
        return a;
 }
 
index 827e137f983b491b3ebaf28dc03c557671e96596..1971d873b9414c69b36fe69e5fb0eb94db4212cc 100644 (file)
@@ -21,6 +21,7 @@
        #include <config.h>
 #endif
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -121,6 +122,7 @@ OrganigrammaUfficioOrario
 *organigramma_ufficio_orario_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaUfficioOrario *a = ORGANIGRAMMA_UFFICIO_ORARIO (g_object_new (organigramma_ufficio_orario_get_type (), NULL));
 
@@ -173,6 +175,12 @@ OrganigrammaUfficioOrario
                        organigramma_ufficio_orario_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button58")), FALSE);
+               }
+
        return a;
 }
 
index 7a007dca79a1405deba5828b4631694d7f0e9704..1de68ad59a4a4a5b026fb2929d4d9ed1911883ac 100644 (file)
@@ -21,6 +21,7 @@
        #include <config.h>
 #endif
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -121,6 +122,7 @@ OrganigrammaUfficioRecapito
 *organigramma_ufficio_recapito_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaUfficioRecapito *a = ORGANIGRAMMA_UFFICIO_RECAPITO (g_object_new (organigramma_ufficio_recapito_get_type (), NULL));
 
@@ -151,12 +153,12 @@ OrganigrammaUfficioRecapito
                                                      NULL);
 
        g_signal_connect (priv->w,
-                         "delete-event", G_CALLBACK (organigramma_ufficio_recapito_on_w_organigramma_ufficio_recapito_delete_event), (gpointer *)a);
+                         "delete-event", G_CALLBACK (organigramma_ufficio_recapito_on_w_organigramma_ufficio_recapito_delete_event), (gpointer)a);
 
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button48")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_recapito_on_btn_annulla_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_recapito_on_btn_annulla_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button49")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_recapito_on_btn_salva_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_recapito_on_btn_salva_clicked), (gpointer)a);
 
        priv->id = id;
        if (priv->id == 0)
@@ -173,6 +175,12 @@ OrganigrammaUfficioRecapito
                        organigramma_ufficio_recapito_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button49")), FALSE);
+               }
+
        return a;
 }
 
index da299acddbd73e4b4adf46b3dbc6714e3c3ee2fa..5dfa0087989506aca80a7366dab9779b322ec948 100644 (file)
@@ -21,6 +21,7 @@
        #include <config.h>
 #endif
 
+#include <libautoz/autoz.h>
 #include <libgtkform/form.h>
 #include <libsolipa/utils.h>
 
@@ -121,6 +122,7 @@ OrganigrammaUfficioStanza
 *organigramma_ufficio_stanza_new (OrganigrammaCommons *commons, guint id, guint id_uffici)
 {
        GError *error;
+       AutozIResource *ires1;
 
        OrganigrammaUfficioStanza *a = ORGANIGRAMMA_UFFICIO_STANZA (g_object_new (organigramma_ufficio_stanza_get_type (), NULL));
 
@@ -151,12 +153,12 @@ OrganigrammaUfficioStanza
                                                      NULL);
 
        g_signal_connect (priv->w,
-                         "delete-event", G_CALLBACK (organigramma_ufficio_stanza_on_w_organigramma_ufficio_stanza_delete_event), (gpointer *)a);
+                         "delete-event", G_CALLBACK (organigramma_ufficio_stanza_on_w_organigramma_ufficio_stanza_delete_event), (gpointer)a);
 
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button138")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_stanza_on_btn_annulla_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_stanza_on_btn_annulla_clicked), (gpointer)a);
        g_signal_connect (G_OBJECT (gtk_builder_get_object (priv->commons->gtkbuilder, "button139")),
-                         "clicked", G_CALLBACK (organigramma_ufficio_stanza_on_btn_salva_clicked), (gpointer *)a);
+                         "clicked", G_CALLBACK (organigramma_ufficio_stanza_on_btn_salva_clicked), (gpointer)a);
 
        priv->id = id;
        if (priv->id == 0)
@@ -173,6 +175,12 @@ OrganigrammaUfficioStanza
                        organigramma_ufficio_stanza_carica (a);
                }
 
+       ires1 = autoz_get_resource_from_id (priv->commons->autoz, "organigramma_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, "button139")), FALSE);
+               }
+
        return a;
 }