GHashTable *roles;
GHashTable *resources;
- GList *rules;
+ GHashTable *rules;
};
G_DEFINE_TYPE (Autoz, autoz, G_TYPE_OBJECT)
priv->roles = g_hash_table_new (g_str_hash, g_str_equal);
priv->resources = g_hash_table_new (g_str_hash, g_str_equal);
- priv->rules = NULL;
+ priv->rules = g_hash_table_new (g_str_hash, g_str_equal);
}
/**
Role *role;
Resource *resource;
- Rule r;
+ Rule *r;
+
+ gchar *str_id;
/* check if exists */
role = g_hash_table_lookup (priv->roles, autoz_irole_get_role_id (irole));
return;
}
+ /* TODO accept also NULL resource (equal to allow to every resource) */
resource = g_hash_table_lookup (priv->resources, autoz_iresource_get_resource_id (iresource));
if (resource == NULL)
{
return;
}
- r.role = role;
- r.resource = resource;
+ r = (Rule *)g_malloc0 (sizeof (Rule));
+ r->role = role;
+ r->resource = resource;
- priv->rules = g_list_append (priv->rules, g_memdup (&r, sizeof (Rule)));
-}
+ str_id = g_strconcat (autoz_irole_get_role_id (r->role->irole),
+ "|",
+ autoz_iresource_get_resource_id (r->resource->iresource),
+ NULL);
+ if (g_hash_table_lookup (priv->rules, str_id) == NULL)
+ {
+ g_hash_table_insert (priv->rules, str_id, r);
+ }
+}
+
gboolean
autoz_is_allowed (Autoz *autoz, AutozIRole *irole, AutozIResource *iresource)
{
Role *role;
Resource *resource;
- GList *rules;
- Rule *r;
+ gchar *str_id;
AutozPrivate *priv = AUTOZ_GET_PRIVATE (autoz);
return ret;
}
- rules = g_list_first (priv->rules);
- while (rules != NULL)
- {
- r = (Rule *)rules->data;
-
- if (g_strcmp0 (autoz_irole_get_role_id (role->irole), autoz_irole_get_role_id (r->role->irole)) == 0)
- {
- if (g_strcmp0 (autoz_iresource_get_resource_id (resource->iresource), autoz_iresource_get_resource_id (r->resource->iresource)) == 0)
- {
- ret = TRUE;
- break;
- }
- }
+ str_id = g_strconcat (autoz_irole_get_role_id (role->irole),
+ "|",
+ autoz_iresource_get_resource_id (resource->iresource),
+ NULL);
- rules = g_list_next (rules);
+ if (g_hash_table_lookup (priv->rules, str_id) != NULL)
+ {
+ ret = TRUE;
}
return ret;
role_writer = autoz_role_new ("writer");
autoz_add_role (autoz, AUTOZ_IROLE (role_writer));
- role_writer_child = autoz_role_new ("writer_child");
+ role_writer_child = autoz_role_new ("writer-child");
autoz_add_role_with_parents (autoz, AUTOZ_IROLE (role_writer_child), AUTOZ_IROLE (role_writer), NULL);
role_read_only = autoz_role_new ("read-only");
autoz_allow (autoz, AUTOZ_IROLE (role_writer), AUTOZ_IRESOURCE (resource));
- if (autoz_is_allowed (autoz, AUTOZ_IROLE (role_writer), AUTOZ_IRESOURCE (resource)))
- {
- g_message ("writer allowed to page.");
- }
- if (!autoz_is_allowed (autoz, AUTOZ_IROLE (role_read_only), AUTOZ_IRESOURCE (resource)))
- {
- g_message ("read-only not allowed to page.");
- }
+ g_message ("writer %s allowed to page.",
+ (autoz_is_allowed (autoz, AUTOZ_IROLE (role_writer), AUTOZ_IRESOURCE (resource)) ? "is" : "isn't"));
+ g_message ("writer-child %s allowed to page.",
+ (autoz_is_allowed (autoz, AUTOZ_IROLE (role_writer_child), AUTOZ_IRESOURCE (resource)) ? "is" : "isn't"));
+ g_message ("read-only %s allowed to page.",
+ (autoz_is_allowed (autoz, AUTOZ_IROLE (role_read_only), AUTOZ_IRESOURCE (resource)) ? "is" : "isn't"));
return 0;
}