34 array(
"permission" =>
"read",
"cmd" =>
"render",
"lang_var" =>
"show",
"default" =>
true),
35 array(
"permission" =>
"write",
"cmd" =>
"listRecords",
"lang_var" =>
"edit_content"),
36 array(
"permission" =>
"write",
"cmd" =>
"edit",
"lang_var" =>
"settings"),
48 $ilAccess = $DIC[
'ilAccess'];
50 $t_arr = explode(
"_", $target);
52 if ($t_arr[0] !=
"dcl" || ((
int) $t_arr[1]) <= 0) {
56 if ($ilAccess->checkAccess(
"read",
"", $t_arr[1]) ||
57 $ilAccess->checkAccess(
"visible",
"", $t_arr[1])) {
68 if ($reference == $ref_id) {
77 public function _checkAccess(
string $cmd,
string $permission,
int $ref_id,
int $obj_id, ?
int $user_id = null): bool
82 $rbacsystem = $DIC[
'rbacsystem'];
83 $ilAccess = $DIC[
'ilAccess'];
85 if (is_null($user_id) ===
true) {
93 && !$rbacsystem->checkAccessOfUser($user_id,
'write', $ref_id)
110 switch ($permission) {
114 && (!$rbacsystem->checkAccessOfUser($user_id,
'write', $ref_id))
133 $ilDB = $DIC->database();
135 $q =
"SELECT * FROM il_dcl_data WHERE id = " .
$ilDB->quote($a_id,
"integer");
136 $dcl_set =
$ilDB->query($q);
137 $dcl_rec =
$ilDB->fetchAssoc($dcl_set);
139 return !is_null($dcl_rec) && $dcl_rec[
"is_online"];
154 $ilAccess = $DIC[
'ilAccess'];
159 if ($ilAccess->checkAccess(
"add_entry",
"", array_shift($references))) {
169 if (self::checkActionForRefId($action, $ref_id)) {
177 public static function checkActionForRefId(
string $action,
int $ref_id):
bool 180 $ilAccess = $DIC[
'ilAccess'];
186 return $ilAccess->checkAccess($action,
"", $ref_id);
196 $ilAccess = $DIC[
'ilAccess'];
199 return $ilAccess->checkAccessOfUser($user_id,
"write",
"", $ref);
202 return $ilAccess->checkAccess(
"write",
"", $ref);
208 $ilAccess = $DIC[
'ilAccess'];
211 return $ilAccess->checkAccessOfUser($user_id,
"write",
"", $ref);
214 return $ilAccess->checkAccess(
"edit_content",
"", $ref);
224 $ilAccess = $DIC[
'ilAccess'];
227 return $ilAccess->checkAccessOfUser($user_id,
"write",
"", $ref);
230 return $ilAccess->checkAccess(
"add_entry",
"", $ref);
240 $ilAccess = $DIC[
'ilAccess'];
243 return $ilAccess->checkAccessOfUser($user_id,
"write",
"", $ref);
246 return $ilAccess->checkAccess(
"read",
"", $ref);
256 $rbacreview = $DIC[
'rbacreview'];
262 if (is_numeric($tableview)) {
263 $tableview = ilDclTableView::find($tableview);
266 $assigned_roles = $rbacreview->assignedRoles($user_id ?:
$ilUser->getId());
267 $allowed_roles = $tableview->getRoles();
269 return !empty(array_intersect($assigned_roles, $allowed_roles));
281 return self::hasWriteAccess($ref_id) || $table->getIsVisible();
284 public static function hasAccessTo(
int $ref_id,
int $table_id,
int $tableview_id):
bool 287 $tableview = ilDclTableView::find($tableview_id);
291 if (($tableview->getTableId() !== $table_id)
292 || !self::isTableInDataCollection($table, $ref_id)
298 return self::hasWriteAccess($ref_id)
300 self::hasReadAccess($ref_id) && self::hasAccessToTable($table_id, $ref_id) && self::hasAccessToTableView($tableview)
307 && (self::hasWriteAccess($ref_id));
312 return self::hasAccessToFields($ref_id, $table_id);
319 return in_array($field_id, $table->getFieldIds()) && self::hasAccessToFields($ref_id, $table_id);
325 if (!self::isTableInDataCollection($table, $ref_id)) {
const IL_NO_OBJECT_ACCESS
static hasAddRecordAccess(int $ref, ?int $user_id=0)
static _getAllReferences(int $id)
get all reference ids for object ID
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getCommands()
get commands this method returns an array of all possible commands/permission combinations example: $...
static hasAccessToFields(int $ref_id, int $table_id)
static getTableCache(int $table_id=null)
_checkAccess(string $cmd, string $permission, int $ref_id, int $obj_id, ?int $user_id=null)
static isTableInDataCollection(ilDclTable $table, int $ref_id)
static hasAccessToField(int $ref_id, int $table_id, int $field_id)
static hasWriteAccess(int $ref, ?int $user_id=0)
static _checkGoto(string $target)
check whether goto script will succeed
static hasAccessToTable(int $table_id, int $ref_id)
returns true if either the table is visible for all users, or no tables are visible and this is the t...
static hasAccessToTableView($tableview, ?int $user_id=0)
This only checks access to the tableview - if the full access check is required, use hasAccessTo($ref...
static hasReadAccess(int $ref, ?int $user_id=0)
static hasPermissionToAddRecord(int $ref_id, int $table_id)
static hasAccessToEditTable(int $ref_id, int $table_id)
static hasEditAccess(int $ref, ?int $user_id=0)
static checkAccessForDataCollectionId(int $data_collection_id)
static _lookupOnline(int $a_id)
Check wether datacollection is online.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static checkActionForObjId(string $action, int $obj_id)