gchar *str_id;
g_return_if_fail (IS_AUTOZ (autoz));
- g_return_if_fail (AUTOZ_IS_IRESOURCE (iresource));
priv = AUTOZ_GET_PRIVATE (autoz);
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)
+ /* accept also NULL resource (equal to allow every resource) */
+ if (iresource == NULL)
{
- return;
+ resource = NULL;
+ }
+ else
+ {
+ g_return_if_fail (AUTOZ_IS_IRESOURCE (iresource));
+
+ resource = g_hash_table_lookup (priv->resources, autoz_iresource_get_resource_id (iresource));
+ if (resource == NULL)
+ {
+ return;
+ }
}
r = (Rule *)g_malloc0 (sizeof (Rule));
str_id = g_strconcat (autoz_irole_get_role_id (r->role->irole),
"|",
- autoz_iresource_get_resource_id (r->resource->iresource),
+ (resource == NULL ? "NULL" : autoz_iresource_get_resource_id (r->resource->iresource)),
NULL);
if (g_hash_table_lookup (priv->rules, str_id) == NULL)
ret = FALSE;
+ /* first trying for a rule for every resource */
+ str_id = g_strconcat (autoz_irole_get_role_id (role->irole),
+ "|NULL",
+ NULL);
+
+ if (g_hash_table_lookup (priv->rules, str_id) != NULL)
+ {
+ ret = TRUE;
+ }
+
str_id = g_strconcat (autoz_irole_get_role_id (role->irole),
"|",
autoz_iresource_get_resource_id (resource->iresource),
NULL);
+ /* and after for specific resource */
if (g_hash_table_lookup (priv->rules, str_id) != NULL)
{
ret = TRUE;
return ret;
}
+ /* first trying for a rule for every resource */
+ str_id = g_strconcat (autoz_irole_get_role_id (role->irole),
+ "|NULL",
+ NULL);
+
+ if (g_hash_table_lookup (priv->rules, str_id) != NULL)
+ {
+ ret = TRUE;
+ }
+
+ /* and after for specific resource */
str_id = g_strconcat (autoz_irole_get_role_id (role->irole),
"|",
autoz_iresource_get_resource_id (resource->iresource),
autoz = autoz_new ();
+ autoz_add_role (autoz, AUTOZ_IROLE (autoz_role_new ("super-admin")));
+
+ autoz_allow (autoz,
+ autoz_get_role_from_id (autoz, "super-admin"),
+ NULL);
+
role_writer = autoz_role_new ("writer");
autoz_add_role (autoz, AUTOZ_IROLE (role_writer));
autoz_allow (autoz, AUTOZ_IROLE (role_writer), AUTOZ_IRESOURCE (resource));
+ g_message ("super-admin %s allowed to page.",
+ (autoz_is_allowed (autoz, autoz_get_role_from_id (autoz, "super-admin"), AUTOZ_IRESOURCE (resource)) ? "is" : "isn't"));
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.",