stamp-h1
tests/test
tests/test_from_xml
+tests/test_from_xml_to_db
POTFILES
mkinstalldirs
stamp-it
+<SECTION>
+<FILE>resource_interface</FILE>
+<TITLE>AutozIResource</TITLE>
+AutozIResource
+AutozIResourceIface
+autoz_iresource_get_resource_id
+<SUBSECTION Standard>
+AUTOZ_IRESOURCE
+AUTOZ_IS_IRESOURCE
+AUTOZ_TYPE_IRESOURCE
+autoz_iresource_get_type
+AUTOZ_IRESOURCE_GET_IFACE
+</SECTION>
+
<SECTION>
<FILE>role</FILE>
<TITLE>AutozRole</TITLE>
AUTOZ_ROLE_GET_CLASS
</SECTION>
-<SECTION>
-<FILE>resource_interface</FILE>
-<TITLE>AutozIResource</TITLE>
-AutozIResource
-AutozIResourceIface
-autoz_iresource_get_resource_id
-<SUBSECTION Standard>
-AUTOZ_IRESOURCE
-AUTOZ_IS_IRESOURCE
-AUTOZ_TYPE_IRESOURCE
-autoz_iresource_get_type
-AUTOZ_IRESOURCE_GET_IFACE
-</SECTION>
-
<SECTION>
<FILE>role_interface</FILE>
<TITLE>AutozIRole</TITLE>
Autoz *autoz, GdaConnection *gdacon, const gchar *table_prefix, gboolean replace
</FUNCTION>
<MACRO>
+<NAME>AUTOZ_TYPE_IRESOURCE</NAME>
+#define AUTOZ_TYPE_IRESOURCE (autoz_iresource_get_type ())
+</MACRO>
+<MACRO>
+<NAME>AUTOZ_IRESOURCE</NAME>
+#define AUTOZ_IRESOURCE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), AUTOZ_TYPE_IRESOURCE, AutozIResource))
+</MACRO>
+<MACRO>
+<NAME>AUTOZ_IS_IRESOURCE</NAME>
+#define AUTOZ_IS_IRESOURCE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), AUTOZ_TYPE_IRESOURCE))
+</MACRO>
+<MACRO>
+<NAME>AUTOZ_IRESOURCE_GET_IFACE</NAME>
+#define AUTOZ_IRESOURCE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), AUTOZ_TYPE_IRESOURCE, AutozIResourceIface))
+</MACRO>
+<STRUCT>
+<NAME>AutozIResource</NAME>
+</STRUCT>
+<STRUCT>
+<NAME>AutozIResourceIface</NAME>
+</STRUCT>
+<STRUCT>
+<NAME>AutozIResourceIface</NAME>
+struct _AutozIResourceIface
+ {
+ GTypeInterface g_iface;
+
+ const gchar *(*get_resource_id) (AutozIResource *iresource);
+ };
+</STRUCT>
+<FUNCTION>
+<NAME>autoz_iresource_get_type</NAME>
+<RETURNS>GType </RETURNS>
+void
+</FUNCTION>
+<FUNCTION>
+<NAME>autoz_iresource_get_resource_id</NAME>
+<RETURNS>const gchar *</RETURNS>
+AutozIResource *iresource
+</FUNCTION>
+<MACRO>
<NAME>AUTOZ_TYPE_ROLE</NAME>
#define AUTOZ_TYPE_ROLE (autoz_role_get_type ())
</MACRO>
const gchar *role_id
</FUNCTION>
<MACRO>
-<NAME>AUTOZ_TYPE_IRESOURCE</NAME>
-#define AUTOZ_TYPE_IRESOURCE (autoz_iresource_get_type ())
-</MACRO>
-<MACRO>
-<NAME>AUTOZ_IRESOURCE</NAME>
-#define AUTOZ_IRESOURCE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), AUTOZ_TYPE_IRESOURCE, AutozIResource))
-</MACRO>
-<MACRO>
-<NAME>AUTOZ_IS_IRESOURCE</NAME>
-#define AUTOZ_IS_IRESOURCE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), AUTOZ_TYPE_IRESOURCE))
-</MACRO>
-<MACRO>
-<NAME>AUTOZ_IRESOURCE_GET_IFACE</NAME>
-#define AUTOZ_IRESOURCE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), AUTOZ_TYPE_IRESOURCE, AutozIResourceIface))
-</MACRO>
-<STRUCT>
-<NAME>AutozIResource</NAME>
-</STRUCT>
-<STRUCT>
-<NAME>AutozIResourceIface</NAME>
-</STRUCT>
-<STRUCT>
-<NAME>AutozIResourceIface</NAME>
-struct _AutozIResourceIface
- {
- GTypeInterface g_iface;
-
- const gchar *(*get_resource_id) (AutozIResource *iresource);
- };
-</STRUCT>
-<FUNCTION>
-<NAME>autoz_iresource_get_type</NAME>
-<RETURNS>GType </RETURNS>
-void
-</FUNCTION>
-<FUNCTION>
-<NAME>autoz_iresource_get_resource_id</NAME>
-<RETURNS>const gchar *</RETURNS>
-AutozIResource *iresource
-</FUNCTION>
-<MACRO>
<NAME>AUTOZ_TYPE_IROLE</NAME>
#define AUTOZ_TYPE_IROLE (autoz_irole_get_type ())
</MACRO>
-CREATE TABLE resources (id INTEGER, resource_id VARCHAR (255));
-CREATE TABLE resources_parents (id_resources INTEGER, id_resources_parent INTEGER);
-CREATE TABLE roles (id INTEGER, role_id VARCHAR (255));
-CREATE TABLE roles_parents (id_roles INTEGER, id_roles_parent INTEGER);
-CREATE TABLE rules (id INTEGER, type INTEGER, id_roles INTEGER, id_resources INTEGER);
+CREATE TABLE roles
+(
+ id integer NOT NULL,
+ role_id character varying(255) DEFAULT ''::character varying,
+ CONSTRAINT roles_pkey PRIMARY KEY (id)
+)
+
+CREATE TABLE roles_parents
+(
+ id_roles integer NOT NULL,
+ id_roles_parent integer NOT NULL,
+ CONSTRAINT roles_parents_pkey PRIMARY KEY (id_roles, id_roles_parent)
+)
+
+CREATE TABLE resources
+(
+ id integer NOT NULL,
+ resource_id character varying(255) DEFAULT ''::character varying,
+ CONSTRAINT resources_pkey PRIMARY KEY (id)
+)
+
+CREATE TABLE resources_parents
+(
+ id_resources integer NOT NULL,
+ id_resources_parent integer NOT NULL,
+ CONSTRAINT resources_parents_pkey PRIMARY KEY (id_resources, id_resources_parent)
+)
+
+CREATE TABLE rules
+(
+ id integer NOT NULL,
+ "type" integer,
+ id_roles integer,
+ id_resources integer,
+ CONSTRAINT rules_pkey PRIMARY KEY (id)
+)
+COMMENT ON COLUMN rules."type" IS '1 - allow
+2 - deny';
guint rule_type;
AutozIRole *irole;
+ AutozIRole *irole_parent;
AutozIResource *iresource;
+ AutozIResource *iresource_parent;
Rule *rule;
guint row;
error->message != NULL ? error->message : "no details");
}
+ /* roles parents */
+ error = NULL;
+ table_name = g_strdup_printf ("%sroles_parents", prefix);
+ sql = g_strdup_printf ("SELECT r1.role_id, r2.role_id"
+ " FROM %s AS rp"
+ " INNER JOIN %sroles AS r1 ON rp.id_roles = r1.id"
+ " INNER JOIN %sroles AS r2 ON rp.id_roles_parent = r2.id"
+ " ORDER BY rp.id_roles, rp.id_roles_parent",
+ table_name,
+ prefix,
+ prefix);
+ dm = gda_execute_select_command (gdacon, sql, &error);
+ if (dm != NULL)
+ {
+ rows = gda_data_model_get_n_rows (dm);
+ for (row = 0; row < rows; row++)
+ {
+ error = NULL;
+ irole = AUTOZ_IROLE (autoz_role_new (gda_value_stringify (gda_data_model_get_value_at (dm, 0, row, &error))));
+ irole_parent = AUTOZ_IROLE (autoz_role_new (gda_value_stringify (gda_data_model_get_value_at (dm, 1, row, &error))));
+ autoz_add_parent_to_role (autoz, irole, irole_parent);
+ }
+ }
+ else if (error != NULL)
+ {
+ g_warning ("Error on reading table «roles_parents»: %s",
+ error->message != NULL ? error->message : "no details");
+ }
+
/* resources */
error = NULL;
table_name = g_strdup_printf ("%sresources", prefix);
error->message != NULL ? error->message : "no details");
}
+ /* resources parents */
+ error = NULL;
+ table_name = g_strdup_printf ("%sresources_parents", prefix);
+ sql = g_strdup_printf ("SELECT r1.resource_id, r2.resource_id"
+ " FROM %s AS rp"
+ " INNER JOIN %sresources AS r1 ON rp.id_resources = r1.id"
+ " INNER JOIN %sresources AS r2 ON rp.id_resources_parent = r2.id"
+ " ORDER BY rp.id_resources, rp.id_resources_parent",
+ table_name,
+ prefix,
+ prefix);
+ dm = gda_execute_select_command (gdacon, sql, &error);
+ if (dm != NULL)
+ {
+ rows = gda_data_model_get_n_rows (dm);
+ for (row = 0; row < rows; row++)
+ {
+ error = NULL;
+ iresource = AUTOZ_IRESOURCE (autoz_resource_new (gda_value_stringify (gda_data_model_get_value_at (dm, 0, row, &error))));
+ iresource_parent = AUTOZ_IRESOURCE (autoz_resource_new (gda_value_stringify (gda_data_model_get_value_at (dm, 1, row, &error))));
+ autoz_add_parent_to_resource (autoz, iresource, iresource_parent);
+ }
+ }
+ else if (error != NULL)
+ {
+ g_warning ("Error on reading table «resources_parents»: %s",
+ error->message != NULL ? error->message : "no details");
+ }
+
/* rules */
error = NULL;
table_name = g_strdup_printf ("%srules", prefix);