19 declare(strict_types=1);
50 public function __construct($a_data,
int $a_id,
bool $a_call_by_reference)
54 $this->
logger = $DIC->logger()->ac();
55 $this->rbacadmin = $DIC[
'rbacadmin'];
56 $this->
http = $DIC->http();
58 $this->ui_factory = $DIC[
'ui.factory'];
62 $this->
lng->loadLanguageModule(
'rbac');
67 $next_class = $this->
ctrl->getNextClass($this);
68 $cmd = $this->
ctrl->getCmd();
71 switch ($next_class) {
72 case 'ilpermissiongui':
74 $ret = $this->
ctrl->forwardCommand($perm_gui);
78 $this->
ctrl->setReturn($this,
"view");
91 if ($this->
http->wrapper()->query()->has(
'csource')) {
92 return $this->
http->wrapper()->query()->retrieve(
105 if ($this->
http->wrapper()->post()->has(
'roles')) {
106 return $this->
http->wrapper()->post()->retrieve(
109 $this->refinery->kindlyTo()->listOf(
113 $this->
refinery->custom()->transformation(
function ($v) {
114 return explode(
',', $v);
116 $this->
refinery->kindlyTo()->listOf(
133 $this->tabs_gui->activateTab(
'view');
135 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
136 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
139 if ($this->rbac_system->checkAccess(
'create_role', $this->object->getRefId())) {
140 $this->
ctrl->setParameter($this,
'new_type',
'role');
142 $this->ui_factory->link()->standard(
143 $this->
lng->txt(
'rolf_create_role'),
144 $this->
ctrl->getLinkTargetByClass(ilObjRoleGUI::class,
'create')
148 if ($this->rbac_system->checkAccess(
'create_rolt', $this->object->getRefId())) {
149 $this->
ctrl->setParameter($this,
'new_type',
'rolt');
151 $this->ui_factory->link()->standard(
152 $this->
lng->txt(
'rolf_create_rolt'),
153 $this->
ctrl->getLinkTargetByClass(ilObjRoleTemplateGUI::class,
'create')
156 $this->
ctrl->clearParameters($this);
160 $this->rbac_system->checkAccess(
'create_rolt', $this->object->getRefId()) ||
161 $this->rbac_system->checkAccess(
'create_rolt', $this->object->getRefId())
164 $this->ui_factory->link()->standard(
165 $this->
lng->txt(
'rbac_import_role'),
166 $this->
ctrl->getLinkTargetByClass(
'ilPermissionGUI',
'displayImportRoleForm')
173 $table->parse($this->
object->getId());
175 $this->tpl->setContent($table->getHTML());
183 $this->tabs_gui->clearTargets();
184 $this->tabs_gui->setBackTarget(
185 $this->
lng->txt(
'rbac_back_to_overview'),
186 $this->
ctrl->getLinkTarget($this,
'view')
189 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
190 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
194 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'rbac_choose_copy_targets'));
197 $this->tpl->setContent($form->getHTML());
206 $form->setTitle($this->
lng->txt(
'rbac_role_title'));
207 $form->setFormAction($this->
ctrl->getFormAction($this,
'view'));
210 $search->setRequired(
true);
211 $search->setSize(30);
212 $search->setMaxLength(255);
213 $form->addItem($search);
215 $form->addCommandButton(
'roleSearchForm', $this->
lng->txt(
'search'));
228 if ($form->checkInput()) {
234 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_search_string'),
true);
235 $form->setValuesByPost();
236 $this->
ctrl->redirect($this,
'roleSearch');
244 $this->tabs_gui->clearTargets();
245 $this->tabs_gui->setBackTarget(
246 $this->
lng->txt(
'rbac_back_to_overview'),
247 $this->
ctrl->getLinkTarget($this,
'view')
253 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'rbac_select_copy_targets'));
258 $table->parse($this->
object->getId());
259 $this->tpl->setContent($table->getHTML());
263 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_search_string'),
true);
264 $this->
ctrl->redirect($this,
'roleSearch');
274 $this->
ctrl->saveParameter($this,
'csource');
275 $this->tabs_gui->clearTargets();
276 $this->tabs_gui->setBackTarget(
277 $this->
lng->txt(
'rbac_back_to_overview'),
278 $this->
ctrl->getLinkTarget($this,
'view')
283 $this->tpl->setContent($form->getHTML());
292 $full_featured =
true;
295 $form->setTitle($this->
lng->txt(
'rbac_copy_behaviour'));
296 $form->setFormAction($this->
ctrl->getFormAction($this,
'chooseCopyBehaviour'));
298 $copy_type = new \ilRadioGroupInputGUI(
299 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type'),
302 $copy_type->setRequired(
true);
303 $copy_type->setValue((
string) self::COPY_CLONE_PERMISSIONS);
305 if ($full_featured) {
306 $add = new \ilRadioOption(
307 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_add'),
308 (string) self::COPY_ADD_PERMISSIONS,
309 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_add_info')
311 $copy_type->addOption($add);
313 $ce_type_add = new \ilRadioGroupInputGUI(
317 $ce_type_add->setRequired(
true);
318 $ce_add_yes = new \ilRadioOption(
319 $this->
lng->txt(
'rbac_form_copy_roles_ce_add_yes'),
320 (string) self::COPY_CHANGE_EXISTING_OBJECTS,
321 $this->
lng->txt(
'rbac_form_copy_roles_ce_add_yes_info')
323 $ce_type_add->addOption($ce_add_yes);
324 $ce_add_no = new \ilRadioOption(
325 $this->
lng->txt(
'rbac_form_copy_roles_ce_add_no'),
327 $this->
lng->txt(
'rbac_form_copy_roles_ce_add_no_info')
329 $ce_type_add->addOption($ce_add_no);
330 $add->addSubItem($ce_type_add);
332 $clone = new \ilRadioOption(
333 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_clone'),
334 (string) self::COPY_CLONE_PERMISSIONS,
335 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_clone_info')
337 $copy_type->addOption($clone);
339 $ce_type_clone = new \ilRadioGroupInputGUI(
343 $ce_type_clone->setRequired(
true);
344 $ce_clone_yes = new \ilRadioOption(
345 $this->
lng->txt(
'rbac_form_copy_roles_ce_clone_yes'),
346 (string) self::COPY_CHANGE_EXISTING_OBJECTS,
347 $this->
lng->txt(
'rbac_form_copy_roles_ce_clone_yes_info')
349 $ce_type_clone->addOption($ce_clone_yes);
350 $ce_clone_no = new \ilRadioOption(
351 $this->
lng->txt(
'rbac_form_copy_roles_ce_clone_no'),
353 $this->
lng->txt(
'rbac_form_copy_roles_ce_clone_no_info')
355 $ce_type_clone->addOption($ce_clone_no);
356 $clone->addSubItem($ce_type_clone);
358 if ($full_featured) {
359 $remove = new \ilRadioOption(
360 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_remove'),
361 (string) self::COPY_REMOVE_PERMISSIONS,
362 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_remove_info')
364 $copy_type->addOption($remove);
365 $ce_type_remove = new \ilRadioGroupInputGUI(
369 $ce_type_remove->setRequired(
true);
370 $ce_remove_yes = new \ilRadioOption(
371 $this->
lng->txt(
'rbac_form_copy_roles_ce_remove_yes'),
372 (string) self::COPY_CHANGE_EXISTING_OBJECTS,
373 $this->
lng->txt(
'rbac_form_copy_roles_ce_remove_yes_info')
375 $ce_type_remove->addOption($ce_remove_yes);
376 $ce_remove_no = new \ilRadioOption(
377 $this->
lng->txt(
'rbac_form_copy_roles_ce_remove_no'),
379 $this->
lng->txt(
'rbac_form_copy_roles_ce_remove_no_info')
381 $ce_type_remove->addOption($ce_remove_no);
382 $remove->addSubItem($ce_type_remove);
385 $form->addItem($copy_type);
389 $form->addItem($roles);
391 $form->addCommandButton(
'roleSearchList', $this->
lng->txt(
'back'));
392 $form->addCommandButton(
'adjustRole', $this->
lng->txt(
'rbac_form_copy_roles_adjust_button'));
407 if ($form->checkInput()) {
408 $adjustment_type = $form->getInput(
'type');
409 foreach ((array) $roles as $role_id) {
410 if ($role_id !== $source) {
411 $start_obj = $this->rbac_review->getRoleFolderOfRole($role_id);
412 $this->
logger->debug(
'Start object: ' . $start_obj);
414 switch ($adjustment_type) {
415 case self::COPY_ADD_PERMISSIONS:
416 $change_existing = (bool) $form->getInput(
'add_ce_type');
421 if ($change_existing) {
430 case self::COPY_CLONE_PERMISSIONS:
431 $change_existing = (bool) $form->getInput(
'clone_ce_type');
436 if ($change_existing) {
445 case self::COPY_REMOVE_PERMISSIONS:
446 $change_existing = (bool) $form->getInput(
'remove_ce_type');
451 if ($change_existing) {
463 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'rbac_copy_finished'),
true);
464 $this->
ctrl->redirect($this,
'view');
473 $source_definition = $this->rbac_review->getRoleFolderOfRole($source);
474 $this->rbacadmin->copyRolePermissionUnion(
478 $this->rbac_review->getRoleFolderOfRole($target),
480 $this->rbac_review->getRoleFolderOfRole($target)
494 if ($form->checkInput()) {
495 foreach ((array) $roles as $role_id) {
496 if ($role_id !== $source) {
500 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'rbac_copy_finished'),
true);
501 $this->
ctrl->redirect($this,
'view');
510 $this->
logger->debug(
'Remove permission source: ' . $source);
511 $this->
logger->debug(
'Remove permission target: ' . $target);
512 $source_obj = $this->rbac_review->getRoleFolderOfRole($source);
513 $this->rbacadmin->copyRolePermissionSubtract(
517 $this->rbac_review->getRoleFolderOfRole($target)
524 protected function doCopyRole(
int $source,
int $target): void
526 $target_obj = $this->rbac_review->getRoleFolderOfRole($target);
527 $source_obj = $this->rbac_review->getRoleFolderOfRole($source);
529 $this->rbacadmin->copyRoleTemplatePermissions(
543 int $a_operation_mode,
547 $this->
logger->warning(
'Missing parameter start object.');
552 $target_ref_id = $this->rbac_review->getRoleFolderOfRole($a_target_role);
553 if ($this->rbac_review->isProtected($target_ref_id, $a_target_role)) {
558 $operation_stack = [];
560 $operation_stack[] = $this->rbac_review->getAllOperationsOfRole($a_source_role, $this->ref_id);
562 $this->
logger->debug(
'Current operation stack');
566 $role->changeExistingObjects(
583 $table->resetOffset();
584 $table->writeFilterToSession();
596 $table->resetOffset();
597 $table->resetFilter();
609 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
610 $this->
ctrl->redirect($this,
'view');
613 $question = $this->
lng->txt(
'rbac_role_delete_qst');
616 $confirm->setHeaderText($question);
617 $confirm->setFormAction($this->
ctrl->getFormAction($this));
618 $confirm->setHeaderText($this->
lng->txt(
"info_delete_sure"));
619 $confirm->setConfirm($this->
lng->txt(
'delete'),
'deleteRole');
620 $confirm->setCancel($this->
lng->txt(
'cancel'),
'cancel');
622 foreach ($roles as $role_id) {
629 $this->tpl->setContent($confirm->getHTML());
637 if (!$this->rbac_system->checkAccess(
'delete', $this->object->getRefId())) {
638 $this->error->raiseError(
639 $this->
lng->txt(
'msg_no_perm_delete'),
640 $this->error->MESSAGE
648 if ($obj->getType() ==
"role") {
649 $rolf_arr = $this->rbac_review->getFoldersAssignedToRole($obj->getId(),
true);
650 $obj->setParent($rolf_arr[0]);
657 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_deleted_roles_rolts"),
true);
658 $this->
ctrl->redirect($this,
'view');
670 $this->tabs_gui->addTarget(
672 $this->
ctrl->getLinkTarget($this,
"view"),
677 $this->tabs_gui->addTarget(
679 $this->
ctrl->getLinkTarget($this,
"editSettings"),
686 $this->tabs_gui->addTarget(
688 $this->
ctrl->getLinkTargetByClass(
689 [get_class($this),
'ilpermissiongui'],
700 if ($a_form ===
null) {
704 $this->tpl->setContent($a_form->getHTML());
711 $user = $DIC->user();
714 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
718 if ($form->checkInput()) {
720 $privacy->enableRbacLog((
bool) $form->getInput(
'rbac_log'));
721 $privacy->setRbacLogAge((
int) $form->getInput(
'rbac_log_age'));
726 $security->protectedAdminRole((
bool) $form->getInput(
'admin_role'));
729 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
730 $this->
ctrl->redirect($this,
"editSettings");
733 $form->setValuesByPost();
741 $user = $DIC->user();
743 $this->
lng->loadLanguageModule(
'ps');
749 $form->setFormAction($this->
ctrl->getFormAction($this,
"saveSettings"));
750 $form->setTitle($this->
lng->txt(
'settings'));
755 $admin->setInfo($this->
lng->txt(
'adm_adm_role_protect_info'));
756 $admin->setChecked($security->isAdminRoleProtected());
757 $admin->setValue((
string) 1);
758 $form->addItem($admin);
761 $check->setInfo($this->
lng->txt(
'rbac_log_info'));
762 $check->setChecked($privacy->enabledRbacLog());
766 $age->
setInfo($this->
lng->txt(
'rbac_log_age_info'));
767 $age->setValue((
string) $privacy->getRbacLogAge());
768 $age->setMinValue(1);
769 $age->setMaxValue(24);
771 $age->setMaxLength(2);
774 $form->addCommandButton(
'saveSettings', $this->
lng->txt(
'save'));
781 switch ($a_form_id) {
786 $fields = [
'adm_adm_role_protect' => [$security->isAdminRoleProtected(),
791 return [[
"editSettings", $fields]];
798 if ($privacy->enabledRbacLog()) {
799 $subitems = [
'rbac_log_age' => $privacy->getRbacLogAge()];
801 $fields = [
'rbac_log' => [$privacy->enabledRbacLog(),
807 return [[
"editSettings", $fields]];
static get(string $a_var)
confirmDeleteObject()
Confirm deletion of roles.
prepareOutput(bool $show_sub_objects=true)
getAdminTabs()
Add role folder tabs.
adjustRoleObject()
Copy role.
__construct($a_data, int $a_id, bool $a_call_by_reference)
Constructor public.
addToExternalSettingsForm(int $a_form_id)
editSettingsObject(?ilPropertyFormGUI $a_form=null)
deleteRoleObject()
Delete roles.
roleSearchListObject()
List roles.
const MODE_REMOVE_OPERATIONS
Class ilObjRoleFolderGUI.
TableGUI for the presentation og roles and role templates.
const MODE_PROTECTED_KEEP_LOCAL_POLICIES
const MODE_READ_OPERATIONS
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
doRemoveRolePermissions(int $source, int $target)
do add role permission
static http()
Fetches the global http state from ILIAS.
static _lookupTitle(int $obj_id)
const COPY_ADD_PERMISSIONS
static _getTranslation(string $a_role_title)
Class ilObjectGUI Basic methods of all Output classes.
initRoleSearchForm()
Init role search form.
removeRolePermissionsObject()
Remove role permissions.
applyFilterObject()
Apply role filter.
const COPY_CLONE_PERMISSIONS
doCopyRole(int $source, int $target)
Perform copy of role.
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
const MODE_ADD_OPERATIONS
const COPY_CHANGE_EXISTING_OBJECTS
const COPY_REMOVE_PERMISSIONS
resetFilterObject()
Reset role filter.
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
__construct(Container $dic, ilPlugin $plugin)
chooseCopyBehaviourObject(?ilPropertyFormGUI $form=null)
Choose option for copying roles/role templates.
const MODE_UNPROTECTED_KEEP_LOCAL_POLICIES
doAddRolePermissions(int $source, int $target)
do add role permission
Class ilRbacAdmin Core functions for role based access control.
roleSearchFormObject()
Parse search query.
static _getInstance()
Get instance of ilSecuritySettings.
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static set(string $a_var, $a_val)
Set a value.
doChangeExistingObjects(int $a_start_obj, int $a_target_role, int $a_operation_mode, int $a_source_role)
Do change existing objects.
initCopyBehaviourForm()
Show copy behaviour form.
roleSearchObject()
Search target roles.