From: Andrea Zagli Date: Tue, 4 Dec 2012 11:06:44 +0000 (+0100) Subject: Integrazione con libautoz (closes #528). X-Git-Tag: 0.0.3~21 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=bd6744942eb71718cf4177ce37aff08ae1417dc2;p=solipa%2Forganigramma Integrazione con libautoz (closes #528). --- diff --git a/docs/organigramma/examples/organigramma.conf b/docs/organigramma/examples/organigramma.conf index 5828ab6..9e67dfb 100644 --- a/docs/organigramma/examples/organigramma.conf +++ b/docs/organigramma/examples/organigramma.conf @@ -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 diff --git a/src/commons.h b/src/commons.h index 334dc4c..93f7d0f 100644 --- a/src/commons.h +++ b/src/commons.h @@ -26,6 +26,8 @@ #include #include +#include +#include #include @@ -40,6 +42,10 @@ typedef struct const gchar *guifile; + const gchar *utente; + Autoz *autoz; + AutozIRole *role_utente; + TerritorioCommons *territorio_commons; } OrganigrammaCommons; diff --git a/src/main.c b/src/main.c index 01f0102..fee24da 100644 --- a/src/main.c +++ b/src/main.c @@ -25,6 +25,7 @@ #include #include +#include #include @@ -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); diff --git a/src/nodi.c b/src/nodi.c index 707b0c6..44936b9 100644 --- a/src/nodi.c +++ b/src/nodi.c @@ -17,6 +17,7 @@ * */ +#include #include #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; } diff --git a/src/nodo.c b/src/nodo.c index e87e889..e834e9e 100644 --- a/src/nodo.c +++ b/src/nodo.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Andrea Zagli + * Copyright (C) 2010-2012 Andrea Zagli * * 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 #include #include @@ -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; } diff --git a/src/persona.c b/src/persona.c index e5af88c..93019aa 100644 --- a/src/persona.c +++ b/src/persona.c @@ -17,6 +17,7 @@ * */ +#include #include #include #include @@ -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; } diff --git a/src/personaincarico.c b/src/personaincarico.c index 547c342..ea7fb3c 100644 --- a/src/personaincarico.c +++ b/src/personaincarico.c @@ -21,6 +21,7 @@ #include #endif +#include #include #include @@ -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; } diff --git a/src/personanodo.c b/src/personanodo.c index 2b61081..584686c 100644 --- a/src/personanodo.c +++ b/src/personanodo.c @@ -21,6 +21,7 @@ #include #endif +#include #include #include @@ -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; } diff --git a/src/personanodorecapito.c b/src/personanodorecapito.c index 64b2a5b..868027b 100644 --- a/src/personanodorecapito.c +++ b/src/personanodorecapito.c @@ -21,6 +21,7 @@ #include #endif +#include #include #include @@ -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; } diff --git a/src/personarecapito.c b/src/personarecapito.c index 142ecd8..8d541e4 100644 --- a/src/personarecapito.c +++ b/src/personarecapito.c @@ -21,6 +21,7 @@ #include #endif +#include #include #include @@ -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; } diff --git a/src/personaufficio.c b/src/personaufficio.c index 56c8592..98aed54 100644 --- a/src/personaufficio.c +++ b/src/personaufficio.c @@ -21,6 +21,7 @@ #include #endif +#include #include #include @@ -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; } diff --git a/src/personaufficiorecapito.c b/src/personaufficiorecapito.c index 9232c8d..82727ed 100644 --- a/src/personaufficiorecapito.c +++ b/src/personaufficiorecapito.c @@ -21,6 +21,7 @@ #include #endif +#include #include #include @@ -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; } diff --git a/src/persone.c b/src/persone.c index a5c1495..199df0e 100644 --- a/src/persone.c +++ b/src/persone.c @@ -17,6 +17,7 @@ * */ +#include #include #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; } diff --git a/src/posizioneeconomica.c b/src/posizioneeconomica.c index 89da28b..245088c 100644 --- a/src/posizioneeconomica.c +++ b/src/posizioneeconomica.c @@ -17,6 +17,7 @@ * */ +#include #include #include @@ -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; } diff --git a/src/posizionieconomiche.c b/src/posizionieconomiche.c index 964b94d..01e1d5e 100644 --- a/src/posizionieconomiche.c +++ b/src/posizionieconomiche.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Andrea Zagli + * Copyright (C) 2010-2012 Andrea Zagli * * 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 #include #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; } diff --git a/src/profiliprofessionali.c b/src/profiliprofessionali.c index 1cf1b1f..c6955b1 100644 --- a/src/profiliprofessionali.c +++ b/src/profiliprofessionali.c @@ -17,6 +17,7 @@ * */ +#include #include #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; } diff --git a/src/profiloprofessionale.c b/src/profiloprofessionale.c index a6ecb51..2aeda3d 100644 --- a/src/profiloprofessionale.c +++ b/src/profiloprofessionale.c @@ -17,6 +17,7 @@ * */ +#include #include #include #include @@ -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; } diff --git a/src/struttura.c b/src/struttura.c index 962177d..7532cbb 100644 --- a/src/struttura.c +++ b/src/struttura.c @@ -17,6 +17,7 @@ * */ +#include #include #include #include @@ -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; } diff --git a/src/strutturaindirizzo.c b/src/strutturaindirizzo.c index 148efb0..8a098f4 100644 --- a/src/strutturaindirizzo.c +++ b/src/strutturaindirizzo.c @@ -21,6 +21,7 @@ #include #endif +#include #include #include #include @@ -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; } diff --git a/src/strutture.c b/src/strutture.c index ef1297a..c854191 100644 --- a/src/strutture.c +++ b/src/strutture.c @@ -17,6 +17,7 @@ * */ +#include #include #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; } diff --git a/src/tipinodo.c b/src/tipinodo.c index 449d7e1..3b6472e 100644 --- a/src/tipinodo.c +++ b/src/tipinodo.c @@ -17,6 +17,7 @@ * */ +#include #include #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; } diff --git a/src/tipiprestazione.c b/src/tipiprestazione.c index 0c9f006..15d9922 100644 --- a/src/tipiprestazione.c +++ b/src/tipiprestazione.c @@ -17,6 +17,7 @@ * */ +#include #include #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; } diff --git a/src/tipirapportolavoro.c b/src/tipirapportolavoro.c index 9867702..a9fafb5 100644 --- a/src/tipirapportolavoro.c +++ b/src/tipirapportolavoro.c @@ -17,6 +17,7 @@ * */ +#include #include #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; } diff --git a/src/tipirecapito.c b/src/tipirecapito.c index 88241b2..2e83ab8 100644 --- a/src/tipirecapito.c +++ b/src/tipirecapito.c @@ -17,6 +17,7 @@ * */ +#include #include #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; } diff --git a/src/tiponodo.c b/src/tiponodo.c index 81ff640..d520414 100644 --- a/src/tiponodo.c +++ b/src/tiponodo.c @@ -17,6 +17,7 @@ * */ +#include #include #include #include @@ -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; } diff --git a/src/tipoprestazione.c b/src/tipoprestazione.c index e4ab3b0..04945c5 100644 --- a/src/tipoprestazione.c +++ b/src/tipoprestazione.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 Andrea Zagli + * Copyright (C) 2010-2012 Andrea Zagli * * 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 #include #include #include @@ -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; } diff --git a/src/tiporapportolavoro.c b/src/tiporapportolavoro.c index 8c597e7..cf44dc0 100644 --- a/src/tiporapportolavoro.c +++ b/src/tiporapportolavoro.c @@ -17,6 +17,7 @@ * */ +#include #include #include @@ -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; } diff --git a/src/tiporecapito.c b/src/tiporecapito.c index db12e05..f8f3701 100644 --- a/src/tiporecapito.c +++ b/src/tiporecapito.c @@ -17,6 +17,7 @@ * */ +#include #include #include @@ -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; } diff --git a/src/titoli.c b/src/titoli.c index 0537a0d..6d26654 100644 --- a/src/titoli.c +++ b/src/titoli.c @@ -17,6 +17,7 @@ * */ +#include #include #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; } diff --git a/src/titolo.c b/src/titolo.c index 486cda7..0697585 100644 --- a/src/titolo.c +++ b/src/titolo.c @@ -17,6 +17,7 @@ * */ +#include #include #include @@ -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; } diff --git a/src/uffici.c b/src/uffici.c index 575df23..569c382 100644 --- a/src/uffici.c +++ b/src/uffici.c @@ -17,6 +17,7 @@ * */ +#include #include #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; } diff --git a/src/ufficio.c b/src/ufficio.c index a32bdb2..c599319 100644 --- a/src/ufficio.c +++ b/src/ufficio.c @@ -17,6 +17,7 @@ * */ +#include #include #include @@ -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; } diff --git a/src/ufficionodo.c b/src/ufficionodo.c index 2779982..e6c01b0 100644 --- a/src/ufficionodo.c +++ b/src/ufficionodo.c @@ -21,6 +21,7 @@ #include #endif +#include #include #include @@ -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; } diff --git a/src/ufficioorario.c b/src/ufficioorario.c index 827e137..1971d87 100644 --- a/src/ufficioorario.c +++ b/src/ufficioorario.c @@ -21,6 +21,7 @@ #include #endif +#include #include #include @@ -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; } diff --git a/src/ufficiorecapito.c b/src/ufficiorecapito.c index 7a007dc..1de68ad 100644 --- a/src/ufficiorecapito.c +++ b/src/ufficiorecapito.c @@ -21,6 +21,7 @@ #include #endif +#include #include #include @@ -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; } diff --git a/src/ufficiostanza.c b/src/ufficiostanza.c index da299ac..5dfa008 100644 --- a/src/ufficiostanza.c +++ b/src/ufficiostanza.c @@ -21,6 +21,7 @@ #include #endif +#include #include #include @@ -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; }