view->title = $this->translate('Roles'); parent::init(); } public function indexAction() { if ($this->hasPermission('config/access-control/roles')) { $this->redirectNow('role/list'); } elseif ($this->hasPermission('config/access-control/users')) { $this->redirectNow('user/list'); } elseif ($this->hasPermission('config/access-control/groups')) { $this->redirectNow('group/list'); } else { throw new SecurityException('No permission to configure Icinga Web 2'); } } /** * List roles * * @TODO(el): Rename to indexAction() */ public function listAction() { $this->assertPermission('config/access-control/roles'); $this->createListTabs()->activate('role/list'); $this->view->roles = (new RolesConfig()) ->select(); $sortAndFilterColumns = [ 'name' => $this->translate('Name'), 'users' => $this->translate('Users'), 'groups' => $this->translate('Groups'), 'permissions' => $this->translate('Permissions') ]; $this->setupFilterControl($this->view->roles, $sortAndFilterColumns, ['name']); $this->setupLimitControl(); $this->setupPaginationControl($this->view->roles); $this->setupSortControl($sortAndFilterColumns, $this->view->roles, ['name']); } /** * Create a new role * * @TODO(el): Rename to newAction() */ public function addAction() { $this->assertPermission('config/access-control/roles'); $role = new RoleForm(); $role->setRedirectUrl('role/list'); $role->setRepository(new RolesConfig()); $role->setSubmitLabel($this->translate('Create Role')); $role->add()->handleRequest(); $this->renderForm($role, $this->translate('New Role')); } /** * Update a role * * @TODO(el): Rename to updateAction() */ public function editAction() { $this->assertPermission('config/access-control/roles'); $name = $this->params->getRequired('role'); $role = new RoleForm(); $role->setRedirectUrl('role/list'); $role->setRepository(new RolesConfig()); $role->setSubmitLabel($this->translate('Update Role')); $role->edit($name); try { $role->handleRequest(); } catch (NotFoundError $e) { $this->httpNotFound($this->translate('Role not found')); } $this->renderForm($role, $this->translate('Update Role')); } /** * Remove a role */ public function removeAction() { $this->assertPermission('config/access-control/roles'); $name = $this->params->getRequired('role'); $role = new RoleForm(); $role->setRedirectUrl('role/list'); $role->setRepository(new RolesConfig()); $role->setSubmitLabel($this->translate('Remove Role')); $role->remove($name); try { $role->handleRequest(); } catch (NotFoundError $e) { $this->httpNotFound($this->translate('Role not found')); } $this->renderForm($role, $this->translate('Remove Role')); } /** * Create the tabs to display when listing roles */ protected function createListTabs() { $tabs = $this->getTabs(); $tabs->add( 'role/list', array( 'baseTarget' => '_main', 'label' => $this->translate('Roles'), 'title' => $this->translate( 'Configure roles to permit or restrict users and groups accessing Icinga Web 2' ), 'url' => 'role/list' ) ); if ($this->hasPermission('config/access-control/users')) { $tabs->add( 'user/list', array( 'title' => $this->translate('List users of authentication backends'), 'label' => $this->translate('Users'), 'url' => 'user/list' ) ); } if ($this->hasPermission('config/access-control/groups')) { $tabs->add( 'group/list', array( 'title' => $this->translate('List groups of user group backends'), 'label' => $this->translate('User Groups'), 'url' => 'group/list' ) ); } return $tabs; } }