ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilRoleTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
28  private const TYPE_GLOBAL_AU = 1;
29  private const TYPE_GLOBAL_UD = 2;
30  private const TYPE_LOCAL_AU = 3;
31  private const TYPE_LOCAL_UD = 4;
32  private const TYPE_ROLT_AU = 5;
33  private const TYPE_ROLT_UD = 6;
34 
35  private const FILTER_ROLE_TYPE = 'role_type';
36  private const FILTER_TITLE = 'title';
37 
38  public const TYPE_VIEW = 1;
39  public const TYPE_SEARCH = 2;
40 
42 
43  private int $type = self::TYPE_VIEW;
44  private string $role_title_filter = '';
45  private int $role_folder_id = 0;
46 
47  private array $filter = [];
48  private ilTree $tree;
51 
52  public function __construct(object $a_parent_gui, string $a_parent_cmd)
53  {
54  global $DIC;
55 
56  $this->rbacreview = $DIC->rbac()->review();
57  $this->tree = $DIC->repositoryTree();
58  $this->system = $DIC->rbac()->system();
59 
60  $this->setId('rolf_role_tbl');
61  parent::__construct($a_parent_gui, $a_parent_cmd);
62  $this->lng->loadLanguageModule('rbac');
63  $this->lng->loadLanguageModule('search');
64  }
65 
66  protected function fillRow(array $a_set): void
67  {
68  if ($a_set['type'] == 'role') {
69  if ($a_set['parent'] != ROLE_FOLDER_ID) {
70  $this->ctrl->setParameterByClass(
71  "ilobjrolegui",
72  "rolf_ref_id",
73  $a_set['parent']
74  );
75  }
76 
77  $this->ctrl->setParameterByClass("ilobjrolegui", "obj_id", $a_set["obj_id"]);
78  $link = $this->ctrl->getLinkTargetByClass("ilobjrolegui", "perm");
79  $this->ctrl->setParameterByClass("ilobjrolegui", "rolf_ref_id", "");
80  } else {
81  $this->ctrl->setParameterByClass("ilobjroletemplategui", "obj_id", $a_set["obj_id"]);
82  $link = $this->ctrl->getLinkTargetByClass("ilobjroletemplategui", "perm");
83  }
84 
85  switch ($a_set['rtype']) {
86  case self::TYPE_GLOBAL_AU:
87  $this->tpl->setVariable('ROLE_TYPE', $this->lng->txt('rbac_auto_global'));
88  break;
89  case self::TYPE_GLOBAL_UD:
90  $this->tpl->setVariable('ROLE_TYPE', $this->lng->txt('rbac_ud_global'));
91  break;
92  case self::TYPE_LOCAL_AU:
93  $this->tpl->setVariable('ROLE_TYPE', $this->lng->txt('rbac_auto_local'));
94  break;
95  case self::TYPE_LOCAL_UD:
96  $this->tpl->setVariable('ROLE_TYPE', $this->lng->txt('rbac_ud_local'));
97  break;
98  case self::TYPE_ROLT_AU:
99  $this->tpl->setVariable('ROLE_TYPE', $this->lng->txt('rbac_auto_rolt'));
100  break;
101  case self::TYPE_ROLT_UD:
102  $this->tpl->setVariable('ROLE_TYPE', $this->lng->txt('rbac_ud_rolt'));
103  break;
104  }
105 
106  if (
107  $a_set['obj_id'] != ANONYMOUS_ROLE_ID && $a_set['obj_id'] != SYSTEM_ROLE_ID && substr($a_set['title_orig'], 0, 3) != 'il_' || $this->getType() == self::TYPE_SEARCH) {
108  $this->tpl->setVariable('VAL_ID', $a_set['obj_id']);
109  }
110 
111  if ($this->system->checkAccess('write', $this->parent_obj->getRefId())) {
112  $this->tpl->setVariable('VAL_TITLE_LINKED', $a_set['title']);
113  $this->tpl->setVariable('VAL_LINK', $link);
114  } else {
115  $this->tpl->setVariable('VAL_TITLE', $a_set['title']);
116  }
117  if (strlen($a_set['description'])) {
118  $this->tpl->setVariable('VAL_DESC', $a_set['description']);
119  }
120 
121  $ref = $a_set['parent'];
122  if ($ref == ROLE_FOLDER_ID) {
123  $this->tpl->setVariable('CONTEXT', $this->lng->txt('rbac_context_global'));
124  } else {
125  $this->tpl->setVariable(
126  'CONTEXT',
127  $this->getPathGUI()->getPath(ROOT_FOLDER_ID, (int) $ref)
128  );
129  }
130 
131  if ($this->getType() == self::TYPE_VIEW and $a_set['obj_id'] != SYSTEM_ROLE_ID) {
132  if ($this->system->checkAccess('write', $this->role_folder_id)) {
133  // Copy role
134  $this->tpl->setVariable('COPY_TEXT', $this->lng->txt('rbac_role_rights_copy'));
135  $this->ctrl->setParameter($this->getParentObject(), "csource", $a_set["obj_id"]);
136  $link = $this->ctrl->getLinkTarget($this->getParentObject(), 'roleSearch');
137  $this->tpl->setVariable(
138  'COPY_LINK',
139  $link
140  );
141  }
142  }
143  }
144 
148  public function init(): void
149  {
150  $this->addColumn('', 'f', '1px');
151 
152  switch ($this->getType()) {
153  case self::TYPE_VIEW:
154  $this->setShowRowsSelector(true);
155  $this->setDefaultOrderField('title');
156  $this->setDefaultOrderDirection('asc');
157  //$this->setId('rolf_role_tbl');
158  $this->addColumn($this->lng->txt('search_title_description'), 'title', '30%');
159  $this->addColumn($this->lng->txt('type'), 'rtype', '20%');
160  $this->addColumn($this->lng->txt('context'), '', '40%');
161  $this->addColumn($this->lng->txt('actions'), '', '10%');
162  $this->setTitle($this->lng->txt('objs_role'));
163 
164  if ($GLOBALS['DIC']['rbacsystem']->checkAccess(
165  'delete',
166  $this->getParentObject()->getObject()->getRefId()
167  )) {
168  $this->addMultiCommand('confirmDelete', $this->lng->txt('delete'));
169  }
170  break;
171 
172  case self::TYPE_SEARCH:
173  $this->setShowRowsSelector(true);
174  $this->disable('sort');
175  //$this->setId('rolf_role_search_tbl');
176  $this->addColumn($this->lng->txt('search_title_description'), 'title', '30%');
177  $this->addColumn($this->lng->txt('type'), 'rtype', '20%');
178  $this->addColumn($this->lng->txt('context'), '', '50%');
179  $this->setTitle($this->lng->txt('rbac_role_rights_copy'));
180  $this->addMultiCommand('chooseCopyBehaviour', $this->lng->txt('btn_next'));
181  $this->addCommandButton('roleSearch', $this->lng->txt('btn_previous'));
182  break;
183  }
184 
185  $this->setRowTemplate('tpl.role_row.html', 'components/ILIAS/AccessControl');
186  $this->setFormAction($this->ctrl->getFormAction($this->getParentObject()));
187  $this->setSelectAllCheckbox('roles');
188 
189  $this->path_gui = new ilPathGUI();
190  $this->getPathGUI()->enableTextOnly(false);
191  $this->getPathGUI()->enableHideLeaf(false);
192  $this->initFilter();
193  }
194 
195  public function getType(): int
196  {
197  return $this->type;
198  }
199 
200  public function setType(int $a_type): void
201  {
202  $this->type = $a_type;
203  }
204 
205  protected function getPathGUI(): ilPathGUI
206  {
207  return $this->path_gui;
208  }
209 
213  public function initFilter(): void
214  {
215  $this->setDisableFilterHiding(true);
216 
217  $action = [];
218  switch ($this->getType()) {
219  case self::TYPE_VIEW:
220  $action[ilRbacReview::FILTER_ALL] = $this->lng->txt('all_roles');
221  $action[ilRbacReview::FILTER_ALL_GLOBAL] = $this->lng->txt('all_global_roles');
222  $action[ilRbacReview::FILTER_ALL_LOCAL] = $this->lng->txt('all_local_roles');
223  $action[ilRbacReview::FILTER_INTERNAL] = $this->lng->txt('internal_local_roles_only');
224  $action[ilRbacReview::FILTER_NOT_INTERNAL] = $this->lng->txt('non_internal_local_roles_only');
225  $action[ilRbacReview::FILTER_TEMPLATES] = $this->lng->txt('role_templates_only');
226  break;
227 
228  case self::TYPE_SEARCH:
229  $action[ilRbacReview::FILTER_ALL] = $this->lng->txt('all_roles');
230  $action[ilRbacReview::FILTER_ALL_GLOBAL] = $this->lng->txt('all_global_roles');
231  $action[ilRbacReview::FILTER_ALL_LOCAL] = $this->lng->txt('all_local_roles');
232  $action[ilRbacReview::FILTER_INTERNAL] = $this->lng->txt('internal_local_roles_only');
233  $action[ilRbacReview::FILTER_NOT_INTERNAL] = $this->lng->txt('non_internal_local_roles_only');
234  break;
235  }
236 
237  $roles = new ilSelectInputGUI($this->lng->txt('rbac_role_selection'), 'role_type');
238  $roles->setOptions($action);
239  $this->addFilterItem($roles);
240  $roles->readFromSession();
241 
242  if (!$roles->getValue()) {
243  $roles->setValue(ilRbacReview::FILTER_ALL_GLOBAL);
244  }
245 
246  // title filter
247  $title = new ilTextInputGUI($this->lng->txt('title'), self::FILTER_TITLE);
248  $title->setSize(16);
249  $title->setMaxLength(64);
250  $this->addFilterItem($title);
251  $title->readFromSession();
252 
253  $this->filter[self::FILTER_ROLE_TYPE] = (int) $roles->getValue();
254  $this->filter[self::FILTER_TITLE] = (string) $title->getValue();
255  }
256 
261  public function parse(int $role_folder_id): void
262  {
263  $this->role_folder_id = $role_folder_id;
264 
265  $filter_orig = '';
266  if ($this->getType() == self::TYPE_VIEW) {
267  $filter_orig = $this->filter[self::FILTER_TITLE];
268  $type_filter = $this->filter[self::FILTER_ROLE_TYPE];
269  } else {
270  $filter_orig = $this->getRoleTitleFilter();
271  $type_filter = ilRbacReview::FILTER_ALL;
272  }
273 
274  $counter = 0;
275  $rows = [];
276  foreach ($this->rbacreview->getRolesByFilter($type_filter, 0, '') as $role) {
277  if (
278  $role['parent'] and
279  (
280  $this->tree->isDeleted($role['parent']) ||
281  !$this->tree->isInTree($role['parent'])
282  )
283  ) {
284  continue;
285  }
286  $title = ilObjRole::_getTranslation($role['title']);
287  if (strlen($filter_orig)) {
288  if (stristr($title, $filter_orig) == false) {
289  continue;
290  }
291  }
292 
293  $rows[$counter]['title_orig'] = $role['title'];
294  $rows[$counter]['title'] = $title;
295  $rows[$counter]['description'] = $role['description'];
296  $rows[$counter]['obj_id'] = $role['obj_id'];
297  $rows[$counter]['parent'] = $role['parent'];
298  $rows[$counter]['type'] = $role['type'];
299 
300  $auto = substr($role['title'], 0, 3) == 'il_';
301 
302  // Role templates
303  if ($role['type'] == 'rolt') {
304  $rows[$counter]['rtype'] = $auto ? self::TYPE_ROLT_AU : self::TYPE_ROLT_UD;
305  } elseif ($role['parent'] == ROLE_FOLDER_ID) {
306  // Roles
307  if ($role['obj_id'] == ANONYMOUS_ROLE_ID || $role['obj_id'] == SYSTEM_ROLE_ID) {
308  $rows[$counter]['rtype'] = self::TYPE_GLOBAL_AU;
309  } else {
310  $rows[$counter]['rtype'] = self::TYPE_GLOBAL_UD;
311  }
312  } else {
313  $rows[$counter]['rtype'] = $auto ? self::TYPE_LOCAL_AU : self::TYPE_LOCAL_UD;
314  }
315 
316  ++$counter;
317  }
318  $this->setMaxCount(count($rows));
319  $this->setData($rows);
320  }
321 
322  public function getRoleTitleFilter(): string
323  {
325  }
326 
327  public function setRoleTitleFilter(string $a_filter): void
328  {
329  $this->role_title_filter = $a_filter;
330  }
331 }
setData(array $a_data)
This class represents a selection list property in a property form.
setFormAction(string $a_form_action, bool $a_multipart=false)
addFilterItem(ilTableFilterItem $a_input_item, bool $a_optional=false)
const ROOT_FOLDER_ID
Definition: constants.php:32
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
const SYSTEM_ROLE_ID
Definition: constants.php:29
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setDisableFilterHiding(bool $a_val=true)
__construct(object $a_parent_gui, string $a_parent_cmd)
setOptions(array $a_options)
parse(int $role_folder_id)
Parse role list.
setId(string $a_val)
TableGUI for the presentation og roles and role templates.
ilRbacReview $rbacreview
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
$GLOBALS["DIC"]
Definition: wac.php:53
setDefaultOrderField(string $a_defaultorderfield)
static _getTranslation(string $a_role_title)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
setDefaultOrderDirection(string $a_defaultorderdirection)
const ROLE_FOLDER_ID
Definition: constants.php:34
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
const ANONYMOUS_ROLE_ID
Definition: constants.php:28
initFilter()
Init filter.
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
disable(string $a_module_name)
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
setRoleTitleFilter(string $a_filter)
addMultiCommand(string $a_cmd, string $a_text)
setMaxCount(int $a_max_count)
set max.
fillRow(array $a_set)