3 declare(strict_types=1);
48 public function __construct($a_data,
int $a_id,
bool $a_call_by_reference)
52 $this->
logger = $DIC->logger()->ac();
53 $this->rbacadmin = $DIC->rbac()->admin();
54 $this->
http = $DIC->http();
58 $this->
lng->loadLanguageModule(
'rbac');
63 $next_class = $this->
ctrl->getNextClass($this);
64 $cmd = $this->
ctrl->getCmd();
67 switch ($next_class) {
69 case 'ilpermissiongui':
71 $ret = $this->
ctrl->forwardCommand($perm_gui);
75 $this->
ctrl->setReturn($this,
"view");
88 if ($this->
http->wrapper()->query()->has(
'csource')) {
89 return $this->
http->wrapper()->query()->retrieve(
102 if ($this->
http->wrapper()->post()->has(
'roles')) {
103 return $this->
http->wrapper()->post()->retrieve(
106 $this->refinery->kindlyTo()->listOf(
110 $this->
refinery->custom()->transformation(
function ($v) {
111 return explode(
',', $v);
113 $this->
refinery->kindlyTo()->listOf(
125 $this->tabs_gui->activateTab(
'view');
127 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
128 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
131 if ($this->rbac_system->checkAccess(
'create_role', $this->object->getRefId())) {
132 $this->
ctrl->setParameter($this,
'new_type',
'role');
134 $this->
lng->txt(
'rolf_create_role'),
135 $this->
ctrl->getLinkTarget($this,
'create')
138 if ($this->rbac_system->checkAccess(
'create_rolt', $this->object->getRefId())) {
139 $this->
ctrl->setParameter($this,
'new_type',
'rolt');
141 $this->
lng->txt(
'rolf_create_rolt'),
142 $this->
ctrl->getLinkTarget($this,
'create')
144 $this->
ctrl->clearParameters($this);
148 $this->rbac_system->checkAccess(
'create_rolt', $this->object->getRefId()) ||
149 $this->rbac_system->checkAccess(
'create_rolt', $this->object->getRefId())
152 $this->
lng->txt(
'rbac_import_role'),
153 $this->
ctrl->getLinkTargetByClass(
'ilPermissionGUI',
'displayImportRoleForm')
159 $table->parse($this->
object->getId());
161 $this->tpl->setContent($table->getHTML());
169 $this->tabs_gui->clearTargets();
170 $this->tabs_gui->setBackTarget(
171 $this->
lng->txt(
'rbac_back_to_overview'),
172 $this->
ctrl->getLinkTarget($this,
'view')
175 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
176 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
180 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'rbac_choose_copy_targets'));
183 $this->tpl->setContent($form->getHTML());
192 $form->setTitle($this->
lng->txt(
'rbac_role_title'));
193 $form->setFormAction($this->
ctrl->getFormAction($this,
'view'));
196 $search->setRequired(
true);
197 $search->setSize(30);
198 $search->setMaxLength(255);
199 $form->addItem($search);
201 $form->addCommandButton(
'roleSearchForm', $this->
lng->txt(
'search'));
214 if ($form->checkInput()) {
220 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_search_string'),
true);
221 $form->setValuesByPost();
222 $this->
ctrl->redirect($this,
'roleSearch');
230 $this->tabs_gui->clearTargets();
231 $this->tabs_gui->setBackTarget(
232 $this->
lng->txt(
'rbac_back_to_overview'),
233 $this->
ctrl->getLinkTarget($this,
'view')
239 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'rbac_select_copy_targets'));
244 $table->parse($this->
object->getId());
245 $this->tpl->setContent($table->getHTML());
249 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_search_string'),
true);
250 $this->
ctrl->redirect($this,
'roleSearch');
260 $this->
ctrl->saveParameter($this,
'csource');
261 $this->tabs_gui->clearTargets();
262 $this->tabs_gui->setBackTarget(
263 $this->
lng->txt(
'rbac_back_to_overview'),
264 $this->
ctrl->getLinkTarget($this,
'view')
269 $this->tpl->setContent($form->getHTML());
278 $full_featured =
true;
281 $form->setTitle($this->
lng->txt(
'rbac_copy_behaviour'));
282 $form->setFormAction($this->
ctrl->getFormAction($this,
'chooseCopyBehaviour'));
284 $copy_type = new \ilRadioGroupInputGUI(
285 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type'),
288 $copy_type->setRequired(
true);
289 $copy_type->setValue((
string) self::COPY_CLONE_PERMISSIONS);
291 if ($full_featured) {
292 $add = new \ilRadioOption(
293 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_add'),
294 (string) self::COPY_ADD_PERMISSIONS,
295 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_add_info')
297 $copy_type->addOption($add);
299 $ce_type_add = new \ilRadioGroupInputGUI(
303 $ce_type_add->setRequired(
true);
304 $ce_add_yes = new \ilRadioOption(
305 $this->
lng->txt(
'rbac_form_copy_roles_ce_add_yes'),
306 (string) self::COPY_CHANGE_EXISTING_OBJECTS,
307 $this->
lng->txt(
'rbac_form_copy_roles_ce_add_yes_info')
309 $ce_type_add->addOption($ce_add_yes);
310 $ce_add_no = new \ilRadioOption(
311 $this->
lng->txt(
'rbac_form_copy_roles_ce_add_no'),
313 $this->
lng->txt(
'rbac_form_copy_roles_ce_add_no_info')
315 $ce_type_add->addOption($ce_add_no);
316 $add->addSubItem($ce_type_add);
318 $clone = new \ilRadioOption(
319 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_clone'),
320 (string) self::COPY_CLONE_PERMISSIONS,
321 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_clone_info')
323 $copy_type->addOption($clone);
325 $ce_type_clone = new \ilRadioGroupInputGUI(
329 $ce_type_clone->setRequired(
true);
330 $ce_clone_yes = new \ilRadioOption(
331 $this->
lng->txt(
'rbac_form_copy_roles_ce_clone_yes'),
332 (string) self::COPY_CHANGE_EXISTING_OBJECTS,
333 $this->
lng->txt(
'rbac_form_copy_roles_ce_clone_yes_info')
335 $ce_type_clone->addOption($ce_clone_yes);
336 $ce_clone_no = new \ilRadioOption(
337 $this->
lng->txt(
'rbac_form_copy_roles_ce_clone_no'),
339 $this->
lng->txt(
'rbac_form_copy_roles_ce_clone_no_info')
341 $ce_type_clone->addOption($ce_clone_no);
342 $clone->addSubItem($ce_type_clone);
344 if ($full_featured) {
345 $remove = new \ilRadioOption(
346 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_remove'),
347 (string) self::COPY_REMOVE_PERMISSIONS,
348 $this->
lng->txt(
'rbac_form_copy_roles_adjust_type_remove_info')
350 $copy_type->addOption($remove);
351 $ce_type_remove = new \ilRadioGroupInputGUI(
355 $ce_type_remove->setRequired(
true);
356 $ce_remove_yes = new \ilRadioOption(
357 $this->
lng->txt(
'rbac_form_copy_roles_ce_remove_yes'),
358 (string) self::COPY_CHANGE_EXISTING_OBJECTS,
359 $this->
lng->txt(
'rbac_form_copy_roles_ce_remove_yes_info')
361 $ce_type_remove->addOption($ce_remove_yes);
362 $ce_remove_no = new \ilRadioOption(
363 $this->
lng->txt(
'rbac_form_copy_roles_ce_remove_no'),
365 $this->
lng->txt(
'rbac_form_copy_roles_ce_remove_no_info')
367 $ce_type_remove->addOption($ce_remove_no);
368 $remove->addSubItem($ce_type_remove);
371 $form->addItem($copy_type);
375 $form->addItem($roles);
377 $form->addCommandButton(
'roleSearchList', $this->
lng->txt(
'back'));
378 $form->addCommandButton(
'adjustRole', $this->
lng->txt(
'rbac_form_copy_roles_adjust_button'));
393 if ($form->checkInput()) {
394 $adjustment_type = $form->getInput(
'type');
395 foreach ((array) $roles as $role_id) {
397 $start_obj = $this->rbac_review->getRoleFolderOfRole($role_id);
398 $this->
logger->debug(
'Start object: ' . $start_obj);
400 switch ($adjustment_type) {
401 case self::COPY_ADD_PERMISSIONS:
402 $change_existing = (bool) $form->getInput(
'add_ce_type');
407 if ($change_existing) {
416 case self::COPY_CLONE_PERMISSIONS:
417 $change_existing = (bool) $form->getInput(
'clone_ce_type');
422 if ($change_existing) {
431 case self::COPY_REMOVE_PERMISSIONS:
432 $change_existing = (bool) $form->getInput(
'remove_ce_type');
437 if ($change_existing) {
449 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'rbac_copy_finished'),
true);
450 $this->
ctrl->redirect($this,
'view');
459 $source_definition = $this->rbac_review->getRoleFolderOfRole($source);
460 $this->rbacadmin->copyRolePermissionUnion(
464 $this->rbac_review->getRoleFolderOfRole($target),
466 $this->rbac_review->getRoleFolderOfRole($target)
480 if ($form->checkInput()) {
481 foreach ((array) $roles as $role_id) {
486 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'rbac_copy_finished'),
true);
487 $this->
ctrl->redirect($this,
'view');
496 $this->
logger->debug(
'Remove permission source: ' . $source);
497 $this->
logger->debug(
'Remove permission target: ' . $target);
498 $source_obj = $this->rbac_review->getRoleFolderOfRole($source);
499 $this->rbacadmin->copyRolePermissionSubtract(
503 $this->rbac_review->getRoleFolderOfRole($target)
512 $target_obj = $this->rbac_review->getRoleFolderOfRole($target);
513 $source_obj = $this->rbac_review->getRoleFolderOfRole($source);
515 $this->rbacadmin->copyRoleTemplatePermissions(
529 int $a_operation_mode,
533 $this->
logger->warning(
'Missing parameter start object.');
538 $target_ref_id = $this->rbac_review->getRoleFolderOfRole($a_target_role);
539 if ($this->rbac_review->isProtected($target_ref_id, $a_target_role)) {
544 $operation_stack = [];
546 $operation_stack[] = $this->rbac_review->getAllOperationsOfRole($a_source_role, $this->ref_id);
548 $this->
logger->debug(
'Current operation stack');
552 $role->changeExistingObjects(
569 $table->resetOffset();
570 $table->writeFilterToSession();
582 $table->resetOffset();
583 $table->resetFilter();
595 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'),
true);
596 $this->
ctrl->redirect($this,
'view');
599 $question = $this->
lng->txt(
'rbac_role_delete_qst');
602 $confirm->setHeaderText($question);
603 $confirm->setFormAction($this->
ctrl->getFormAction($this));
604 $confirm->setHeaderText($this->
lng->txt(
"info_delete_sure"));
605 $confirm->setConfirm($this->
lng->txt(
'delete'),
'deleteRole');
606 $confirm->setCancel($this->
lng->txt(
'cancel'),
'cancel');
608 foreach ($roles as $role_id) {
615 $this->tpl->setContent($confirm->getHTML());
623 if (!$this->rbac_system->checkAccess(
'delete', $this->object->getRefId())) {
624 $this->error->raiseError(
625 $this->
lng->txt(
'msg_no_perm_delete'),
626 $this->error->MESSAGE
634 if ($obj->getType() ==
"role") {
635 $rolf_arr = $this->rbac_review->getFoldersAssignedToRole($obj->getId(),
true);
636 $obj->setParent($rolf_arr[0]);
643 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"msg_deleted_roles_rolts"),
true);
644 $this->
ctrl->redirect($this,
'view');
656 $this->tabs_gui->addTarget(
658 $this->
ctrl->getLinkTarget($this,
"view"),
663 $this->tabs_gui->addTarget(
665 $this->
ctrl->getLinkTarget($this,
"editSettings"),
666 array(
"editSettings"),
672 $this->tabs_gui->addTarget(
674 $this->
ctrl->getLinkTargetByClass(
675 array(get_class($this),
'ilpermissiongui'),
686 if ($a_form === null) {
690 $this->tpl->setContent($a_form->getHTML());
697 $user = $DIC->user();
700 $this->error->raiseError($this->
lng->txt(
'permission_denied'), $this->error->MESSAGE);
704 if ($form->checkInput()) {
706 $privacy->enableRbacLog((
bool) $form->getInput(
'rbac_log'));
707 $privacy->setRbacLogAge((
int) $form->getInput(
'rbac_log_age'));
712 $security->protectedAdminRole((
bool) $form->getInput(
'admin_role'));
715 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
716 $this->
ctrl->redirect($this,
"editSettings");
719 $form->setValuesByPost();
727 $user = $DIC->user();
729 $this->
lng->loadLanguageModule(
'ps');
735 $form->setFormAction($this->
ctrl->getFormAction($this,
"saveSettings"));
736 $form->setTitle($this->
lng->txt(
'settings'));
741 $admin->setInfo($this->
lng->txt(
'adm_adm_role_protect_info'));
742 $admin->setChecked($security->isAdminRoleProtected());
743 $admin->setValue((
string) 1);
744 $form->addItem($admin);
746 $check =
new ilCheckboxInputGui($this->
lng->txt(
'rbac_log'),
'rbac_log');
747 $check->setInfo($this->
lng->txt(
'rbac_log_info'));
748 $check->setChecked($privacy->enabledRbacLog());
752 $age->
setInfo($this->
lng->txt(
'rbac_log_age_info'));
753 $age->setValue((
string) $privacy->getRbacLogAge());
754 $age->setMinValue(1);
755 $age->setMaxValue(24);
757 $age->setMaxLength(2);
760 $form->addCommandButton(
'saveSettings', $this->
lng->txt(
'save'));
767 switch ($a_form_id) {
772 $fields = array(
'adm_adm_role_protect' => array($security->isAdminRoleProtected(),
777 return array(array(
"editSettings", $fields));
784 if ($privacy->enabledRbacLog()) {
785 $subitems = array(
'rbac_log_age' => $privacy->getRbacLogAge());
787 $fields = array(
'rbac_log' => array($privacy->enabledRbacLog(),
793 return array(array(
"editSettings", $fields));
Interface GlobalHttpState.
static get(string $a_var)
editSettingsObject(ilPropertyFormGUI $a_form=null)
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)
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
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.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
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
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
roleSearchObject()
Search target roles.