19 declare(strict_types=1);
66 $this->
user = $DIC->user();
67 $this->db = $DIC->database();
68 $this->rbacsystem = $DIC[
'rbacsystem'];
72 $this->objDefinition = $DIC[
'objDefinition'];
78 $this->condition =
true;
81 $this->obj_id_cache = [];
82 $this->obj_type_cache = [];
83 $this->obj_tree_cache = [];
105 string $a_permission,
108 bool $a_access_granted,
109 ?
int $a_user_id =
null,
112 if ($a_user_id ===
null) {
113 $a_user_id = $this->
user->getId();
115 if ($a_info ===
null) {
119 $this->results[$a_ref_id][$a_permission][$a_cmd][$a_user_id] = [
120 "granted" => $a_access_granted,
124 $this->current_result_element = [$a_access_granted, $a_ref_id, $a_permission, $a_cmd, $a_user_id];
125 $this->last_result = $this->results[$a_ref_id][$a_permission][$a_cmd][$a_user_id];
126 $this->last_info = $a_info;
137 $this->prevent_caching_last_result = $a_val;
152 string $a_permission,
155 ?
int $a_user_id =
null 157 if ($a_user_id ===
null) {
158 $a_user_id = $this->
user->getId();
160 if (isset($this->results[$a_ref_id][$a_permission][$a_cmd][$a_user_id])) {
161 return $this->results[$a_ref_id][$a_permission][$a_cmd][$a_user_id];
179 $this->results = $a_results;
185 public function addInfoItem(
string $a_type,
string $a_text,
string $a_data =
""): void
187 $this->current_info->addInfoItem($a_type, $a_text, $a_data);
194 string $a_permission,
198 ?
int $a_obj_id =
null,
199 ?
int $a_tree_id =
null 202 $this->
user->getId(),
217 string $a_permission,
226 $ilBench = $DIC[
'ilBench'];
230 $ilBench->start(
"AccessControl",
"0400_clear_info");
231 $this->current_info->clear();
232 $ilBench->stop(
"AccessControl",
"0400_clear_info");
235 $cached = $this->
doCacheCheck($a_permission, $a_cmd, $a_ref_id, $a_user_id);
236 if ($cached[
"hit"]) {
238 if (!$cached[
"granted"]) {
241 if ($cached[
"prevent_db_cache"]) {
244 return $cached[
"granted"];
247 $ilBench->start(
"AccessControl",
"0500_lookup_id_and_type");
249 if ($a_obj_id == 0) {
250 if (isset($this->obj_id_cache[$a_ref_id]) && $this->obj_id_cache[$a_ref_id] > 0) {
251 $a_obj_id = $this->obj_id_cache[$a_ref_id];
254 $this->obj_id_cache[$a_ref_id] = $a_obj_id;
258 if (isset($this->obj_type_cache[$a_ref_id]) && $this->obj_type_cache[$a_ref_id] !=
"") {
259 $a_type = $this->obj_type_cache[$a_ref_id];
262 $this->obj_type_cache[$a_ref_id] = $a_type;
266 $ilBench->stop(
"AccessControl",
"0500_lookup_id_and_type");
270 if ($a_tree_id != 1 &&
271 !$this->
doTreeCheck($a_permission, $a_cmd, $a_ref_id, $a_user_id)) {
278 if (!$this->
doRBACCheck($a_permission, $a_cmd, $a_ref_id, $a_user_id, $a_type)) {
301 $par_check = $this->
doPathCheck($a_permission, $a_cmd, $a_ref_id, $a_user_id);
309 if (!$this->
doConditionCheck($a_permission, $a_cmd, $a_ref_id, $a_user_id, $a_obj_id, $a_type)) {
317 if (!$this->
doStatusCheck($a_permission, $a_cmd, $a_ref_id, $a_user_id, $a_obj_id, $a_type)) {
334 return is_object($this->last_info) ? $this->last_info->getInfoItems() : [];
350 if ($a_ref_id ==
"") {
354 return $this->results[$a_ref_id];
360 public function doCacheCheck(
string $a_permission,
string $a_cmd,
int $a_ref_id,
int $a_user_id): array
365 if ($stored_access !== []) {
366 if (isset($stored_access[
'info']) && $stored_access[
'info'] instanceof
ilAccessInfo) {
367 $this->current_info = $stored_access[
"info"];
372 "granted" => $stored_access[
"granted"],
373 "prevent_db_cache" => $stored_access[
"prevent_db_cache"]
381 "prevent_db_cache" => false
388 public function doTreeCheck(
string $a_permission,
string $a_cmd,
int $a_ref_id,
int $a_user_id): bool
391 $tree_cache_key = $a_user_id .
':' . $a_ref_id;
392 if (array_key_exists($tree_cache_key, $this->obj_tree_cache)) {
394 if (!$this->obj_tree_cache[$tree_cache_key]) {
395 $this->current_info->addInfoItem(
404 $this->obj_tree_cache[$tree_cache_key],
408 return $this->obj_tree_cache[$tree_cache_key];
415 if (count($this->obj_tree_cache) < self::MAX_CACHE_SIZE) {
416 $this->obj_tree_cache[$tree_cache_key] =
false;
428 if (count($this->obj_tree_cache) < self::MAX_CACHE_SIZE) {
429 $this->obj_tree_cache[$tree_cache_key] =
true;
440 string $a_permission,
446 if ($a_permission ==
"") {
448 '%s::doRBACCheck(): No operations given! $a_ref_id: %s',
456 if (isset($this->stored_rbac_access[$a_user_id .
"-" . $a_permission .
"-" . $a_ref_id])) {
457 $access = $this->stored_rbac_access[$a_user_id .
"-" . $a_permission .
"-" . $a_ref_id];
459 $access = $this->rbacsystem->checkAccessOfUser($a_user_id, $a_permission, $a_ref_id, $a_type);
460 if (!is_array($this->stored_rbac_access) || count($this->stored_rbac_access) < self::MAX_CACHE_SIZE) {
461 if ($a_permission !=
"create") {
462 $this->stored_rbac_access[$a_user_id .
"-" . $a_permission .
"-" . $a_ref_id] = $access;
468 $this->current_info->addInfoItem(
473 if ($a_permission !=
"create") {
483 string $a_permission,
490 foreach ($path as
$id) {
491 if ($a_ref_id === $id) {
495 if ($access ==
false) {
496 $this->current_info->addInfoItem(
501 if ($a_all ==
false) {
513 string $a_permission,
520 $cache_perm = ($a_permission ===
"visible" || $a_permission ===
'leave')
524 if (isset($this->ac_cache[$cache_perm][$a_ref_id][$a_user_id])) {
525 return $this->ac_cache[$cache_perm][$a_ref_id][$a_user_id];
529 if ($a_permission ===
'write') {
534 if ($a_user_id === $this->
user->getId()) {
537 if ($memview->isActiveForRefId($a_ref_id) &&
538 $memview->getContainer() == $a_ref_id) {
545 $this->ac_cache[$cache_perm][$a_ref_id][$a_user_id] =
true;
551 $this->objDefinition->supportsOfflineHandling($a_type) &&
554 $this->ac_cache[$cache_perm][$a_ref_id][$a_user_id] =
false;
559 if ($item_data ===
null || (is_array($item_data) && count($item_data) == 0) ||
561 $this->ac_cache[$cache_perm][$a_ref_id][$a_user_id] =
true;
565 if (($item_data[
'timing_start'] == 0 || time() >= $item_data[
'timing_start']) and
566 ($item_data[
'timing_end'] == 0 || time() <= $item_data[
'timing_end'])) {
567 $this->ac_cache[$cache_perm][$a_ref_id][$a_user_id] =
true;
573 $this->ac_cache[$cache_perm][$a_ref_id][$a_user_id] =
true;
578 if (($a_permission ===
'visible' || $a_permission ===
'leave')
579 && $item_data[
'visible']) {
580 $this->ac_cache[$cache_perm][$a_ref_id][$a_user_id] =
true;
585 if ($a_permission ==
'read_learning_progress') {
586 $this->ac_cache[$cache_perm][$a_ref_id][$a_user_id] =
true;
590 $this->ac_cache[$cache_perm][$a_ref_id][$a_user_id] =
false;
598 string $a_permission,
606 ($a_permission ==
'visible') &&
607 !$this->
checkAccessOfUser($a_user_id,
"write",
"", $a_ref_id, $a_type, $a_obj_id)
609 if (ilConditionHandler::lookupEffectiveHiddenStatusByTarget($a_ref_id)) {
611 $conditions = ilConditionHandler::_getEffectiveConditionsOfTarget($a_ref_id, $a_obj_id, $a_type);
612 foreach ($conditions as $condition) {
613 $this->current_info->addInfoItem(
615 $this->
getLanguage()->txt(
"missing_precondition") .
": " .
617 $this->
getLanguage()->txt(
"condition_" . $condition[
"operator"]) .
" " .
619 serialize($condition)
627 if (($a_permission ==
"read" or $a_permission ==
'join') &&
628 !$this->
checkAccessOfUser($a_user_id,
"write",
"", $a_ref_id, $a_type, $a_obj_id)) {
630 $conditions = ilConditionHandler::_getEffectiveConditionsOfTarget($a_ref_id, $a_obj_id, $a_type);
631 foreach ($conditions as $condition) {
632 $this->current_info->addInfoItem(
634 $this->
getLanguage()->txt(
"missing_precondition") .
": " .
636 $this->
getLanguage()->txt(
"condition_" . $condition[
"operator"]) .
" " .
638 serialize($condition)
651 string $a_permission,
659 if ($this->objDefinition->isPluginTypeName($a_type) && !$this->objDefinition->isPlugin($a_type)) {
666 $class = $this->objDefinition->getClassName($a_type);
667 $location = $this->objDefinition->getLocation($a_type);
668 $full_class =
"ilObj" . $class .
"Access";
671 $this->ac_logger->error(
"Cannot find class for object type $a_type, obj id $a_obj_id, ref id $a_ref_id. Abort status check.");
675 $full_class =
new $full_class();
677 $obj_access = call_user_func(
678 [$full_class,
"_checkAccess"],
685 if ($obj_access !==
true) {
702 $this->last_result = [];
704 $this->stored_rbac_access = [];
711 public function enable(
string $a_str,
bool $a_bool): void
713 $this->$a_str = $a_bool;
getResultLast()
get last info object
const IL_NO_PARENT_ACCESS
isUserBasedOnPositionsAllowedTo(int $which_user_id, string $permission, array $on_user_ids)
doCacheCheck(string $a_permission, string $a_cmd, int $a_ref_id, int $a_user_id)
look if result for current query is already in cachearray<{hit: bool, granted: bool, prevent_db_cache: bool}>
checkRbacOrPositionPermissionAccess(string $rbac_perm, string $pos_perm, int $ref_id)
See the list of available permissions in interface ilOrgUnitPositionAccessHandler Reference-ID of the...
static getLogger(string $a_component_id)
Get component logger.
getStoredAccessResult(string $a_permission, string $a_cmd, int $a_ref_id, ?int $a_user_id=null)
get stored access resultpermission command string reference id user id (if no id passed, current user id) array<{granted: bool, info: ?ilAccessInfo, prevent_db_cache: bool}>
ilAccessInfo $current_info
filterUserIdsByRbacOrPositionOfCurrentUser(string $rbac_perm, string $pos_perm, int $ref_id, array $user_ids)
See the list of available permissions in interface ilOrgUnitPositionAccessHandler Reference-ID of the...
hasUserRBACorAnyPositionAccess(string $rbac_perm, int $ref_id)
const IL_MISSING_PRECONDITION
checkPositionAccess(string $pos_perm, int $ref_id)
checkPositionAccess(string $pos_perm, int $ref_id)
Reference-ID of the desired Object in the tree bool getAvailablePositionRelatedPermissions for availa...
storeAccessResult(string $a_permission, string $a_cmd, int $a_ref_id, bool $a_access_granted, ?int $a_user_id=null, ?ilAccessInfo $a_info=null)
store access result
filterUserIdsByPositionOfCurrentUser(string $pos_perm, int $ref_id, array $user_ids)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
filterUserIdsByPositionOfUser(int $user_id, string $pos_perm, int $ref_id, array $user_ids)
$user_ids int[] getAvailablePositionRelatedPermissions for available permissions
array $current_result_element
doStatusCheck(string $a_permission, string $a_cmd, int $a_ref_id, int $a_user_id, int $a_obj_id, string $a_type)
object type specific check
hasCurrentUserAnyPositionAccess(int $ref_id)
bool
static _lookupObjId(int $ref_id)
static lookupOfflineStatus(int $obj_id)
Lookup offline status using objectDataCache.
filterUserIdsForCurrentUsersPositionsAndPermission(array $user_ids, string $permission)
$user_ids List of ILIAS-User-IDs which shall be filtered int[] Filtered List of ILIAS-User-IDs ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setPreventCachingLastResult(bool $a_val)
Set prevent caching last result.
isCurrentUserBasedOnPositionsAllowedTo(string $permission, array $on_user_ids)
$on_user_ids List of ILIAS-User-IDs bool getAvailablePositionRelatedPermissions for available permiss...
getPreventCachingLastResult()
Get prevent caching last result.
static _lookupTitle(int $obj_id)
bool $prevent_caching_last_result
getResultAll(int $a_ref_id=0)
getInfo()
get last info objectilAccessInfo::getInfoItems()
hasCurrentUserAnyPositionAccess(int $ref_id)
hasUserRBACorAnyPositionAccess(string $rbac_perm, int $ref_id)
doTreeCheck(string $a_permission, string $a_cmd, int $a_ref_id, int $a_user_id)
check if object is in tree and not deleted
filterUserIdsByPositionOfUser(int $user_id, string $pos_perm, int $ref_id, array $user_ids)
doPathCheck(string $a_permission, string $a_cmd, int $a_ref_id, int $a_user_id, bool $a_all=false)
check read permission for all parents
filterUserIdsByPositionOfCurrentUser(string $pos_perm, int $ref_id, array $user_ids)
$user_ids int[] getAvailablePositionRelatedPermissions for available permissions
addInfoItem(string $a_type, string $a_text, string $a_data="")
add an info item to current info object
static getItem(int $ref_id)
checkRbacOrPositionPermissionAccess(string $rbac_perm, string $pos_perm, int $ref_id)
static _checkAllConditionsOfTarget(int $a_target_ref_id, int $a_target_id, string $a_target_type="", int $a_usr_id=0)
checks wether all conditions of a target object are fulfilled
ilObjectDefinition $objDefinition
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
doConditionCheck(string $a_permission, string $a_cmd, int $a_ref_id, int $a_user_id, int $a_obj_id, string $a_type)
condition check (currently only implemented for read permission)
filterUserIdsForCurrentUsersPositionsAndPermission(array $user_ids, string $permission)
filterUserIdsByRbacOrPositionOfCurrentUser(string $rbac_perm, string $pos_perm, int $ref_id, array $user_ids)
enable(string $a_str, bool $a_bool)
array $stored_rbac_access
doActivationCheck(string $a_permission, string $a_cmd, int $a_ref_id, int $a_user_id, int $a_obj_id, string $a_type)
check for activation and centralized offline status.
filterUserIdsForUsersPositionsAndPermission(array $user_ids, int $for_user_id, string $permission)
isCurrentUserBasedOnPositionsAllowedTo(string $permission, array $on_user_ids)
language()
description: > Example for rendring a language glyph.
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
isUserBasedOnPositionsAllowedTo(int $which_user_id, string $permission, array $on_user_ids)
Permission check for this ILIAS-User-ID $on_user_ids List of ILIAS-User-IDs bool getAvailablePosition...
setResults(array $a_results)
static _lookupType(int $id, bool $reference=false)
filterUserIdsForUsersPositionsAndPermission(array $user_ids, int $for_user_id, string $permission)
$user_ids List of ILIAS-User-IDs which shall be filtered int[] Filtered List of ILIAS-User-IDs ...
doRBACCheck(string $a_permission, string $a_cmd, int $a_ref_id, int $a_user_id, string $a_type)
rbac check for current object -> type is used for create permission
checkAccessOfUser(int $a_user_id, string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=0, ?int $a_tree_id=0)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
ilOrgUnitPositionAccess $ilOrgUnitPositionAccess