3 declare(strict_types=1);
23 'ignore_for_authoring_objects' =>
true,
25 self::RBAC_OP_VISIBLE,
33 self::RBAC_OP_VISIBLE,
38 self::RBAC_OP_EDIT_PERMISSIONS,
49 self::RBAC_OP_VISIBLE,
60 'ignore_for_authoring_objects' =>
true,
62 self::RBAC_OP_VISIBLE,
68 self::RBAC_OP_VISIBLE,
73 self::RBAC_OP_EDIT_PERMISSIONS,
82 'ignore_for_authoring_objects' =>
true,
84 self::RBAC_OP_VISIBLE,
90 self::RBAC_OP_VISIBLE,
95 self::RBAC_OP_EDIT_PERMISSIONS,
105 'Local Administrator' => [
107 self::RBAC_OP_VISIBLE,
108 self::RBAC_OP_DELETE,
109 self::RBAC_OP_EDIT_PERMISSIONS,
124 bool $has_learning_progress =
false,
125 bool $used_for_authoring =
false 134 return hash(
"sha256", self::class);
139 return "Apply initial permission guideline";
157 $client_ini = $environment->
getResource(Setup\Environment::RESOURCE_CLIENT_INI);
158 $db = $environment->
getResource(Environment::RESOURCE_DATABASE);
160 $role_folder_id = (
int) $client_ini->readVariable(
"system",
"ROLE_FOLDER_ID");
162 $learning_progress_permissions = [];
163 if ($this->has_learning_progress) {
164 $learning_progress_permissions = array_filter([
171 foreach ($this->initial_permission_definition as $role_type => $roles) {
172 foreach ($roles as $role_title => $definition) {
174 $this->used_for_authoring &&
175 array_key_exists(
'ignore_for_authoring_objects', $definition) &&
176 $definition[
'ignore_for_authoring_objects']
181 if (array_key_exists(
'id', $definition) && is_numeric($definition[
'id'])) {
183 $query =
"SELECT obj_id FROM object_data WHERE type = %s AND obj_id = %s";
184 $query_types = [
'text',
'integer'];
185 $query_values = [$role_type, $definition[
'id']];
187 $query =
"SELECT obj_id FROM object_data WHERE type = %s AND title = %s";
188 $query_types = [
'text',
'text'];
189 $query_values = [$role_type, $role_title];
192 $res = $db->queryF(
$query, $query_types, $query_values);
193 if (1 == $db->numRows(
$res)) {
194 $row = $db->fetchAssoc(
$res);
195 $role_id = (
int) $row[
'obj_id'];
199 if (array_key_exists(
'object', $definition) && is_array($definition[
'object'])) {
200 $operation_ids = array_merge($operation_ids, $definition[
'object']);
203 if (array_key_exists(
'lp', $definition) && $definition[
'lp']) {
204 $operation_ids = array_merge($operation_ids, $learning_progress_permissions);
207 foreach (array_filter(array_map(
'intval', $operation_ids)) as $ops_id) {
208 if ($ops_id == self::RBAC_OP_COPY) {
215 'rol_id' => [
'integer', $role_id],
216 'type' => [
'text', $this->object_type],
217 'ops_id' => [
'integer', $ops_id],
218 'parent' => [
'integer', $role_folder_id]
224 if (array_key_exists(
'create', $definition) && is_array($definition[
'create'])) {
225 foreach ($definition[
'create'] as $container_object_type) {
227 if ($ops_id == self::RBAC_OP_COPY) {
234 'rol_id' => [
'integer', $role_id],
235 'type' => [
'text', $container_object_type],
236 'ops_id' => [
'integer', $ops_id],
237 'parent' => [
'integer', $role_folder_id]
255 throw new Exception(
"Something went wrong, there MUST be valid id for object_type " . $this->object_type);
260 "Something went wrong, missing CREATE operation id for object type " . $this->object_type
bool $has_learning_progress
__construct(string $object_type, bool $has_learning_progress=false, bool $used_for_authoring=false)
isApplicable(Environment $environment)
const RBAC_OP_EDIT_PERMISSIONS
array string $object_type
getPreconditions(Environment $environment)
achieve(Environment $environment)
getResource(string $id)
Consumers of this method should check if the result is what they expect, e.g.
static _getCustomRBACOperationId(string $operation, \ilDBInterface $ilDB=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
array $initial_permission_definition
An environment holds resources to be used in the setup process.
static _getObjectTypeIdByTitle(string $type, \ilDBInterface $ilDB=null)