|
ILIAS
Release_5_0_x_branch Revision 61816
|
Class ilRbacAdmin Core functions for role based access control. More...
Collaboration diagram for ilRbacAdmin:Public Member Functions | |
| __construct () | |
| Constructor public. | |
| removeUser ($a_usr_id) | |
| deletes a user from rbac_ua all user <-> role relations are deleted public | |
| deleteRole ($a_rol_id, $a_ref_id) | |
| Deletes a role and deletes entries in object_data, rbac_pa, rbac_templates, rbac_ua, rbac_fa public. | |
| deleteTemplate ($a_obj_id) | |
| Deletes a template from role folder and deletes all entries in rbac_templates, rbac_fa public. | |
| deleteLocalRole ($a_rol_id, $a_ref_id=0) | |
| Deletes a local role and entries in rbac_fa and rbac_templates public. | |
| assignUserLimited ($a_role_id, $a_usr_id, $a_limit, $a_limited_roles=array()) | |
| Assign user limited. | |
| assignUser ($a_rol_id, $a_usr_id) | |
| Assigns an user to a role. | |
| deassignUser ($a_rol_id, $a_usr_id) | |
| Deassigns a user from a role. | |
| grantPermission ($a_rol_id, $a_ops, $a_ref_id) | |
| Grants a permission to an object and a specific role. | |
| revokePermission ($a_ref_id, $a_rol_id=0, $a_keep_protected=true) | |
| Revokes permissions of an object of one role. | |
| revokeSubtreePermissions ($a_ref_id, $a_role_id) | |
| Revoke subtree permissions. | |
| deleteSubtreeTemplates ($a_ref_id, $a_rol_id) | |
| Delete all template permissions of subtree nodes. | |
| revokePermissionList ($a_ref_ids, $a_rol_id) | |
| Revokes permissions of a LIST of objects of ONE role. | |
| copyRolePermissions ($a_source_id, $a_source_parent, $a_dest_parent, $a_dest_id, $a_consider_protected=true) | |
| Copies template permissions and permission of one role to another. | |
| copyRoleTemplatePermissions ($a_source_id, $a_source_parent, $a_dest_parent, $a_dest_id, $a_consider_protected=true) | |
| Copies template permissions of one role to another. | |
| copyRolePermissionIntersection ($a_source1_id, $a_source1_parent, $a_source2_id, $a_source2_parent, $a_dest_parent, $a_dest_id) | |
| Copies the intersection of the template permissions of two roles to a third role. | |
| copyRolePermissionUnion ($a_source1_id, $a_source1_parent, $a_source2_id, $a_source2_parent, $a_dest_id, $a_dest_parent) | |
| <type> $ilDB | |
| copyRolePermissionSubtract ($a_source_id, $a_source_parent, $a_dest_id, $a_dest_parent) | |
| Subtract role permissions. | |
| deleteRolePermission ($a_rol_id, $a_ref_id, $a_type=false) | |
| Deletes all entries of a template. | |
| setRolePermission ($a_rol_id, $a_type, $a_ops, $a_ref_id) | |
| Inserts template permissions in rbac_templates for an specific object type. | |
| assignRoleToFolder ($a_rol_id, $a_parent, $a_assign="y") | |
| Assigns a role to an role folder A role folder is an object to store roles. | |
| assignOperationToObject ($a_type_id, $a_ops_id) | |
| Assign an existing operation to an object Update of rbac_ta. | |
| deassignOperationFromObject ($a_type_id, $a_ops_id) | |
| Deassign an existing operation from an object Update of rbac_ta public. | |
| setProtected ($a_ref_id, $a_role_id, $a_value) | |
| Set protected $ilDB. | |
| copyLocalRoles ($a_source_id, $a_target_id) | |
| Copy local roles This method creates a copy of all local role. | |
| initIntersectionPermissions ($a_ref_id, $a_role_id, $a_role_parent, $a_template_id, $a_template_parent) | |
| Init intersection permissions. | |
| adjustMovedObjectPermissions ($a_ref_id, $a_old_parent) | |
| Adjust permissions of moved objects. | |
| copyEffectiveRolePermissions ($a_source_ref_id, $target_ref_id, $a_subtree_id) | |
| Copies all permission from source to target for all roles. | |
Protected Member Functions | |
| addDesktopItem ($a_rol_id, $a_usr_id) | |
| Add desktop item. | |
Class ilRbacAdmin Core functions for role based access control.
Creation and maintenance of Relations. The main relations of Rbac are user <-> role (UR) assignment relation and the permission <-> role (PR) assignment relation. This class contains methods to 'create' and 'delete' instances of the (UR) relation e.g.: assignUser(), deassignUser() Required methods for the PR relation are grantPermission(), revokePermission()
Definition at line 18 of file class.ilRbacAdmin.php.
| ilRbacAdmin::__construct | ( | ) |
Constructor public.
Definition at line 24 of file class.ilRbacAdmin.php.
References $ilDB, $ilErr, if, and PEAR_ERROR_CALLBACK.
|
protected |
Add desktop item.
| type | $a_rol_id | |
| type | $a_usr_id |
Definition at line 227 of file class.ilRbacAdmin.php.
References ilObjUser\_addDesktopItem().
Referenced by assignUser(), and assignUserLimited().
Here is the call graph for this function:
Here is the caller graph for this function:| ilRbacAdmin::adjustMovedObjectPermissions | ( | $a_ref_id, | |
| $a_old_parent | |||
| ) |
Adjust permissions of moved objects.
public
| int | ref id of moved object |
| int | ref_id of old parent |
Definition at line 1190 of file class.ilRbacAdmin.php.
References $ilLog, $log, ilRbacLog\add(), deleteLocalRole(), ilRbacLog\diffFaPa(), ilRbacLog\gatherFaPa(), grantPermission(), initIntersectionPermissions(), ilRbacLog\isActive(), ilObjCourse\lookupCourseNonMemberTemplatesId(), ilObjGroup\lookupGroupStatusTemplateId(), ilRbacLog\MOVE_OBJECT, and revokePermission().
Here is the call graph for this function:| ilRbacAdmin::assignOperationToObject | ( | $a_type_id, | |
| $a_ops_id | |||
| ) |
Assign an existing operation to an object Update of rbac_ta.
public
| integer | object type |
| integer | operation_id |
Definition at line 994 of file class.ilRbacAdmin.php.
References $ilDB, $query, and $res.
| ilRbacAdmin::assignRoleToFolder | ( | $a_rol_id, | |
| $a_parent, | |||
$a_assign = "y" |
|||
| ) |
Assigns a role to an role folder A role folder is an object to store roles.
Every role is assigned to minimum one role folder If the inheritance of a role is stopped, a new role template will created, and the role is assigned to minimum two role folders. All roles with stopped inheritance need the flag '$a_assign = false'
public
| integer | object id of role |
| integer | ref_id of role folder |
| string | assignable('y','n'); default: 'y' |
Definition at line 950 of file class.ilRbacAdmin.php.
References $ilDB, $query, and $res.
Referenced by copyLocalRoles(), and initIntersectionPermissions().
Here is the caller graph for this function:| ilRbacAdmin::assignUser | ( | $a_rol_id, | |
| $a_usr_id | |||
| ) |
Assigns an user to a role.
Update of table rbac_ua TODO: remove deprecated 3rd parameter sometime public
| integer | object_id of role |
| integer | object_id of user |
| boolean | true means default role (optional |
Definition at line 248 of file class.ilRbacAdmin.php.
References $ilDB, $query, $res, ilLDAPRoleGroupMapping\_getInstance(), and addDesktopItem().
Here is the call graph for this function:| ilRbacAdmin::assignUserLimited | ( | $a_role_id, | |
| $a_usr_id, | |||
| $a_limit, | |||
$a_limited_roles = array() |
|||
| ) |
Assign user limited.
| type | $a_role_id | |
| type | $a_usr_id | |
| type | $a_limit |
Definition at line 185 of file class.ilRbacAdmin.php.
References $GLOBALS, $ilDB, $query, $res, $row, ilLDAPRoleGroupMapping\_getInstance(), addDesktopItem(), DB_FETCHMODE_OBJECT, and ilDB\LOCK_WRITE.
Here is the call graph for this function:| ilRbacAdmin::copyEffectiveRolePermissions | ( | $a_source_ref_id, | |
| $target_ref_id, | |||
| $a_subtree_id | |||
| ) |
Copies all permission from source to target for all roles.
| type | $a_source_ref_id | |
| type | $target_ref_id | |
| type | $a_subtree_id |
Definition at line 1322 of file class.ilRbacAdmin.php.
References $GLOBALS.
| ilRbacAdmin::copyLocalRoles | ( | $a_source_id, | |
| $a_target_id | |||
| ) |
Copy local roles This method creates a copy of all local role.
Note: auto generated roles are excluded
public
| int | source id of object (not role folder) |
| int | target id of object |
Definition at line 1071 of file class.ilRbacAdmin.php.
References $ilLog, assignRoleToFolder(), and copyRolePermissions().
Here is the call graph for this function:| ilRbacAdmin::copyRolePermissionIntersection | ( | $a_source1_id, | |
| $a_source1_parent, | |||
| $a_source2_id, | |||
| $a_source2_parent, | |||
| $a_dest_parent, | |||
| $a_dest_id | |||
| ) |
Copies the intersection of the template permissions of two roles to a third role.
public
| integer | $a_source1_id | role_id source |
| integer | $a_source1_parent | parent_id source |
| integer | $a_source2_id | role_id source |
| integer | $a_source2_parent | parent_id source |
| integer | $a_dest_id | role_id destination |
| integer | $a_dest_parent | parent_id destination |
Definition at line 669 of file class.ilRbacAdmin.php.
References $GLOBALS, $ilDB, $query, $res, $row, and DB_FETCHMODE_OBJECT.
Referenced by initIntersectionPermissions().
Here is the caller graph for this function:| ilRbacAdmin::copyRolePermissions | ( | $a_source_id, | |
| $a_source_parent, | |||
| $a_dest_parent, | |||
| $a_dest_id, | |||
$a_consider_protected = true |
|||
| ) |
Copies template permissions and permission of one role to another.
public
| integer | $a_source_id | role_id source |
| integer | $a_source_parent | parent_id source |
| integer | $a_dest_parent | parent_id destination |
| integer | $a_dest_id | role_id destination |
Definition at line 572 of file class.ilRbacAdmin.php.
References copyRoleTemplatePermissions(), grantPermission(), and revokePermission().
Referenced by copyLocalRoles().
Here is the call graph for this function:
Here is the caller graph for this function:| ilRbacAdmin::copyRolePermissionSubtract | ( | $a_source_id, | |
| $a_source_parent, | |||
| $a_dest_id, | |||
| $a_dest_parent | |||
| ) |
Subtract role permissions.
| type | $a_source_id | |
| type | $a_source_parent | |
| type | $a_dest_id | |
| type | $a_dest_parent |
Definition at line 812 of file class.ilRbacAdmin.php.
| ilRbacAdmin::copyRolePermissionUnion | ( | $a_source1_id, | |
| $a_source1_parent, | |||
| $a_source2_id, | |||
| $a_source2_parent, | |||
| $a_dest_id, | |||
| $a_dest_parent | |||
| ) |
<type> $ilDB
| <type> | $a_source1_id |
| <type> | $a_source1_parent |
| <type> | $a_source2_id |
| <type> | $a_source2_parent |
| <type> | $a_dest_id |
| <type> | $a_dest_parent |
Definition at line 747 of file class.ilRbacAdmin.php.
References $GLOBALS, $ilDB, $query, and deleteRolePermission().
Here is the call graph for this function:| ilRbacAdmin::copyRoleTemplatePermissions | ( | $a_source_id, | |
| $a_source_parent, | |||
| $a_dest_parent, | |||
| $a_dest_id, | |||
$a_consider_protected = true |
|||
| ) |
Copies template permissions of one role to another.
It's also possible to copy template permissions from/to RoleTemplateObject public
| integer | $a_source_id | role_id source |
| integer | $a_source_parent | parent_id source |
| integer | $a_dest_parent | parent_id destination |
| integer | $a_dest_id | role_id destination |
Definition at line 596 of file class.ilRbacAdmin.php.
References $ilDB, $query, $res, $row, and setProtected().
Referenced by copyRolePermissions().
Here is the call graph for this function:
Here is the caller graph for this function:| ilRbacAdmin::deassignOperationFromObject | ( | $a_type_id, | |
| $a_ops_id | |||
| ) |
Deassign an existing operation from an object Update of rbac_ta public.
| integer | object type |
| integer | operation_id |
Definition at line 1020 of file class.ilRbacAdmin.php.
References $ilDB, $query, and $res.
| ilRbacAdmin::deassignUser | ( | $a_rol_id, | |
| $a_usr_id | |||
| ) |
Deassigns a user from a role.
Update of table rbac_ua public
| integer | object id of role |
| integer | object id of user |
Definition at line 287 of file class.ilRbacAdmin.php.
References $ilDB, $query, $res, and ilLDAPRoleGroupMapping\_getInstance().
Here is the call graph for this function:| ilRbacAdmin::deleteLocalRole | ( | $a_rol_id, | |
$a_ref_id = 0 |
|||
| ) |
Deletes a local role and entries in rbac_fa and rbac_templates public.
| integer | object_id of role |
| integer | ref_id of role folder (optional) |
Definition at line 146 of file class.ilRbacAdmin.php.
References $ilDB, $query, and $res.
Referenced by adjustMovedObjectPermissions(), and deleteRole().
Here is the caller graph for this function:| ilRbacAdmin::deleteRole | ( | $a_rol_id, | |
| $a_ref_id | |||
| ) |
Deletes a role and deletes entries in object_data, rbac_pa, rbac_templates, rbac_ua, rbac_fa public.
| integer | obj_id of role (role_id) |
| integer | ref_id of role folder (ref_id) |
Definition at line 72 of file class.ilRbacAdmin.php.
References $ilDB, $lng, $query, $res, ilLDAPRoleGroupMapping\_getInstance(), and deleteLocalRole().
Here is the call graph for this function:| ilRbacAdmin::deleteRolePermission | ( | $a_rol_id, | |
| $a_ref_id, | |||
$a_type = false |
|||
| ) |
Deletes all entries of a template.
If an object type is given for third parameter only the entries for that object type are deleted Update of table rbac_templates. public
| integer | object id of role |
| integer | ref_id of role folder |
| string | object type (optional) |
Definition at line 848 of file class.ilRbacAdmin.php.
References $ilDB, $query, and $res.
Referenced by copyRolePermissionUnion().
Here is the caller graph for this function:| ilRbacAdmin::deleteSubtreeTemplates | ( | $a_ref_id, | |
| $a_rol_id | |||
| ) |
Delete all template permissions of subtree nodes.
| object | $a_ref_id | |
| object | $a_rol_id |
Definition at line 504 of file class.ilRbacAdmin.php.
References $GLOBALS, $ilDB, and $query.
| ilRbacAdmin::deleteTemplate | ( | $a_obj_id | ) |
Deletes a template from role folder and deletes all entries in rbac_templates, rbac_fa public.
| integer | object_id of role template |
Definition at line 118 of file class.ilRbacAdmin.php.
References $ilDB, $query, and $res.
| ilRbacAdmin::grantPermission | ( | $a_rol_id, | |
| $a_ops, | |||
| $a_ref_id | |||
| ) |
Grants a permission to an object and a specific role.
Update of table rbac_pa public
| integer | object id of role |
| array | array of operation ids |
| integer | reference id of that object which is granted the permissions |
Definition at line 319 of file class.ilRbacAdmin.php.
References $ilDB, $query, and $res.
Referenced by adjustMovedObjectPermissions(), copyRolePermissions(), and initIntersectionPermissions().
Here is the caller graph for this function:| ilRbacAdmin::initIntersectionPermissions | ( | $a_ref_id, | |
| $a_role_id, | |||
| $a_role_parent, | |||
| $a_template_id, | |||
| $a_template_parent | |||
| ) |
Init intersection permissions.
type $rbacreview
| type | $a_ref_id | |
| type | $a_role_id | |
| type | $a_role_parent | |
| type | $a_template_id | |
| type | $a_template_parent |
Definition at line 1120 of file class.ilRbacAdmin.php.
References ilObject\_lookupType(), assignRoleToFolder(), copyRolePermissionIntersection(), and grantPermission().
Referenced by adjustMovedObjectPermissions().
Here is the call graph for this function:
Here is the caller graph for this function:| ilRbacAdmin::removeUser | ( | $a_usr_id | ) |
deletes a user from rbac_ua all user <-> role relations are deleted public
| integer | user_id |
Definition at line 49 of file class.ilRbacAdmin.php.
| ilRbacAdmin::revokePermission | ( | $a_ref_id, | |
$a_rol_id = 0, |
|||
$a_keep_protected = true |
|||
| ) |
Revokes permissions of an object of one role.
Update of table rbac_pa. Revokes all permission for all roles for that object (with this reference). When a role_id is given this applies only to that role public
| integer | reference id of object where permissions should be revoked |
| integer | role_id (optional: if you want to revoke permissions of object only for a specific role) |
Definition at line 384 of file class.ilRbacAdmin.php.
References $ilDB, $ilLog, $log, $query, and $res.
Referenced by adjustMovedObjectPermissions(), and copyRolePermissions().
Here is the caller graph for this function:| ilRbacAdmin::revokePermissionList | ( | $a_ref_ids, | |
| $a_rol_id | |||
| ) |
Revokes permissions of a LIST of objects of ONE role.
Update of table rbac_pa. public
| array | list of reference_ids to revoke permissions |
| integer | role_id |
Definition at line 532 of file class.ilRbacAdmin.php.
References $ilDB, $query, and $res.
| ilRbacAdmin::revokeSubtreePermissions | ( | $a_ref_id, | |
| $a_role_id | |||
| ) |
Revoke subtree permissions.
| object | $a_ref_id | |
| object | $a_role_id |
Definition at line 485 of file class.ilRbacAdmin.php.
| ilRbacAdmin::setProtected | ( | $a_ref_id, | |
| $a_role_id, | |||
| $a_value | |||
| ) |
Set protected $ilDB.
| type | $a_ref_id | |
| type | $a_role_id | |
| type | $a_value | y or n |
Definition at line 1048 of file class.ilRbacAdmin.php.
References $ilDB, $query, and $res.
Referenced by copyRoleTemplatePermissions().
Here is the caller graph for this function:| ilRbacAdmin::setRolePermission | ( | $a_rol_id, | |
| $a_type, | |||
| $a_ops, | |||
| $a_ref_id | |||
| ) |
Inserts template permissions in rbac_templates for an specific object type.
Update of table rbac_templates public
| integer | role_id |
| string | object type |
| array | operation_ids |
| integer | ref_id of role folder object |
Definition at line 889 of file class.ilRbacAdmin.php.
References $ilDB, $query, and $res.