ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjSystemCheckGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
22 
29 {
30  protected const SECTION_MAIN = 'main';
31  protected const SECTION_GROUP = 'group';
32 
34  protected Factory $refinery;
35 
36  public function __construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output = true)
37  {
38  global $DIC;
39  $this->http = $DIC->http();
40  $this->refinery = $DIC->refinery();
41  $this->type = 'sysc';
42  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
43  $this->lng->loadLanguageModule('sysc');
44  }
45 
46  protected function getGrpIdFromRequest(): int
47  {
48  if ($this->http->wrapper()->query()->has('grp_id')) {
49  return $this->http->wrapper()->query()->retrieve(
50  'grp_id',
51  $this->refinery->kindlyTo()->int()
52  );
53  }
54  return 0;
55  }
56 
57  protected function getTaskIdFromRequest(): int
58  {
59  if ($this->http->wrapper()->query()->has('task_id')) {
60  return $this->http->wrapper()->query()->retrieve(
61  'task_id',
62  $this->refinery->kindlyTo()->int()
63  );
64  }
65  return 0;
66  }
67 
68  public function getLang(): ilLanguage
69  {
70  return $this->lng;
71  }
72 
73  public function executeCommand(): void
74  {
75  $this->checkPermission('read');
76 
77  $next_class = $this->ctrl->getNextClass($this);
78  $cmd = $this->ctrl->getCmd();
79  $this->prepareOutput();
80 
81  switch ($next_class) {
82  case 'ilobjectownershipmanagementgui':
83  $this->setSubTabs(self::SECTION_MAIN, 'no_owner');
84  $this->tabs_gui->activateTab('overview');
85 
86  $read_only = !$this->checkPermissionBool('write');
87 
88  $gui = new ilObjectOwnershipManagementGUI(0, $read_only);
89  $this->ctrl->forwardCommand($gui);
90  break;
91 
92  case 'ilobjsystemfoldergui':
93 
94  $sys_folder = new ilObjSystemFolderGUI('', SYSTEM_FOLDER_ID, true);
95  $this->ctrl->forwardCommand($sys_folder);
96 
97  $this->tabs_gui->clearTargets();
98 
99  $this->setSubTabs(self::SECTION_MAIN, 'sc');
100  break;
101 
102  case 'ilpermissiongui':
103  $this->tabs_gui->activateTab('perm_settings');
104 
105  $perm_gui = new ilPermissionGUI($this);
106  $this->ctrl->forwardCommand($perm_gui);
107  break;
108 
109  case '':
110  case 'ilobjsystemcheckgui':
111  if ($cmd === null || $cmd === '' || $cmd === 'view') {
112  $cmd = 'overview';
113  }
114  $this->$cmd();
115  break;
116 
117  default:
118  // Forward to task handler
119 
120  $this->ctrl->saveParameter($this, 'grp_id');
121  $this->ctrl->saveParameter($this, 'task_id');
122  $this->ctrl->setReturn($this, 'showGroup');
123  $this->tabs_gui->clearTargets();
124  $this->tabs_gui->setBackTarget($this->lng->txt('back'), $this->ctrl->getLinkTarget($this, 'showGroup'));
126  $this->ctrl->forwardCommand($handler);
127  break;
128  }
129  }
130 
131  public function getAdminTabs(): void
132  {
133  if ($this->checkPermissionBool('read')) {
134  $this->tabs_gui->addTab(
135  'overview',
136  $this->lng->txt('overview'),
137  $this->ctrl->getLinkTarget($this, 'overview')
138  );
139  }
140  if ($this->checkPermissionBool('edit_permission')) {
141  $this->tabs_gui->addTab(
142  'perm_settings',
143  $this->lng->txt('perm_settings'),
144  $this->ctrl->getLinkTargetByClass(array(get_class($this), 'ilpermissiongui'), 'perm')
145  );
146  }
147  }
148 
149  protected function overview(): bool
150  {
151  $this->getLang()->loadLanguageModule('sysc');
152 
153  $this->setSubTabs(self::SECTION_MAIN, 'overview');
154  $this->tabs_gui->activateTab('overview');
155 
156  $table = new ilSCGroupTableGUI($this, 'overview');
157  $table->init();
158  $table->parse();
159 
160  $this->tpl->setContent($table->getHTML());
161  return true;
162  }
163 
164  protected function showGroup(): bool
165  {
166  $this->setSubTabs(self::SECTION_GROUP, '');
167 
168  $this->ctrl->saveParameter($this, 'grp_id');
169 
170  $table = new ilSCTaskTableGUI($this->getGrpIdFromRequest(), $this, 'showGroup');
171  $table->init();
172  $table->parse();
173 
174  $this->tpl->setContent($table->getHTML());
175  return true;
176  }
177 
178  protected function trash(?ilPropertyFormGUI $form = null): void
179  {
180  $this->checkPermission('write');
181 
182  $this->setSubTabs(self::SECTION_MAIN, 'trash');
183  $this->tabs_gui->activateTab('overview');
184  if (!$form instanceof ilPropertyFormGUI) {
185  $form = $this->initFormTrash();
186  }
187  $this->tpl->setContent($form->getHTML());
188  }
189 
190  protected function initFormTrash(): ilPropertyFormGUI
191  {
192  $form = new ilPropertyFormGUI();
193  $form->setFormAction($this->ctrl->getFormAction($this));
194 
195  $form->setTitle($this->lng->txt('sysc_administrate_deleted'));
196 
197  $action = new ilRadioGroupInputGUI($this->lng->txt('sysc_trash_action'), 'type');
198  $action->setRequired(true);
199 
200  // Restore
201  $restore = new ilRadioOption($this->lng->txt('sysc_trash_restore'), (string) ilSystemCheckTrash::MODE_TRASH_RESTORE);
202  $restore->setInfo($this->lng->txt('sysc_trash_restore_info'));
203  $action->addOption($restore);
204 
205  // Remove
206  $remove = new ilRadioOption($this->lng->txt('sysc_trash_remove'), (string) ilSystemCheckTrash::MODE_TRASH_REMOVE);
207  $remove->setInfo($this->lng->txt('sysc_trash_remove_info'));
208  $action->addOption($remove);
209 
210  // limit number
211  $num = new ilNumberInputGUI($this->lng->txt('sysc_trash_limit_num'), 'number');
212  $num->setInfo($this->lng->txt('purge_count_limit_desc'));
213  $num->setSize(10);
214  $num->setMinValue(1);
215  $remove->addSubItem($num);
216 
217  $age = new ilDateTimeInputGUI($this->lng->txt('sysc_trash_limit_age'), 'age');
218  $age->setInfo($this->lng->txt('purge_age_limit_desc'));
219  $age->setMinuteStepSize(15);
220  $remove->addSubItem($age);
221 
222  // limit types
223  $types = new ilSelectInputGUI($this->lng->txt('sysc_trash_limit_type'), 'types');
224 
225  $sub_objects = $this->tree->lookupTrashedObjectTypes();
226 
227  $options = array();
228  $options[0] = '';
229  foreach ($sub_objects as $obj_type) {
230  if (!$this->obj_definition->isRBACObject($obj_type) || !$this->obj_definition->isAllowedInRepository($obj_type)) {
231  continue;
232  }
233  $options[$obj_type] = $this->lng->txt('obj_' . $obj_type);
234  }
235 
236  asort($options);
237 
238  $types->setOptions($options);
239  $remove->addSubItem($types);
240 
241  $form->addItem($action);
242 
243  $form->addCommandButton('handleTrashAction', $this->lng->txt('start_scan'));
244  $form->addCommandButton('', $this->lng->txt('cancel'));
245 
246  return $form;
247  }
248 
249  protected function handleTrashAction(): bool
250  {
251  $form = $this->initFormTrash();
252  if ($form->checkInput()) {
253  $trash = new ilSystemCheckTrash();
254  $trash->setMode(ilSystemCheckTrash::MODE_TRASH_REMOVE);
255  $dt = $form->getItemByPostVar('age')->getDate();
256  if ($dt) {
257  $trash->setAgeLimit($dt);
258  }
259  $trash->setNumberLimit((int) $form->getInput('number'));
260 
261  if ($form->getInput('types')) {
262  $trash->setTypesLimit((array) $form->getInput('types'));
263  }
264  $trash->setMode((int) $form->getInput('type'));
265  $trash->start();
266 
267  $this->tpl->setOnScreenMessage('success', $this->lng->txt('settings_saved'), true);
268  $form->setValuesByPost();
269  $this->trash($form);
270  return true;
271  }
272 
273  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('err_check_input'));
274  $form->setValuesByPost();
275  $this->trash($form);
276  return false;
277  }
278 
279  protected function setSubTabs(string $a_section, string $a_active): void
280  {
281  switch ($a_section) {
282  case self::SECTION_MAIN:
283  $this->setMainSubTabs();
284  break;
285 
286  case self::SECTION_GROUP:
287  $this->setGroupSubTabs();
288  }
289  $this->tabs_gui->activateSubTab($a_active);
290  }
291 
292  protected function setMainSubTabs(): void
293  {
294  $this->tabs_gui->addSubTab(
295  'overview',
296  $this->getLang()->txt('sysc_groups'),
297  $this->ctrl->getLinkTarget($this, 'overview')
298  );
299 
300  if ($this->checkPermissionBool('write')) {
301  $this->tabs_gui->addSubTab(
302  'trash',
303  $this->getLang()->txt('sysc_tab_trash'),
304  $this->ctrl->getLinkTarget($this, 'trash')
305  );
306  }
307 
308  $this->tabs_gui->addSubTab(
309  'no_owner',
310  $this->getLang()->txt('system_check_no_owner'),
311  $this->ctrl->getLinkTargetByClass('ilobjectownershipmanagementgui')
312  );
313  }
314 
315  protected function setGroupSubTabs(): void
316  {
317  $this->tabs_gui->clearTargets();
318  $this->tabs_gui->setBackTarget(
319  $this->lng->txt('back'),
320  $this->ctrl->getLinkTarget($this, 'overview')
321  );
322  }
323 }
setSubTabs(string $a_section, string $a_active)
This class represents an option in a radio group.
This class represents a selection list property in a property form.
prepareOutput(bool $show_sub_objects=true)
trash(?ilPropertyFormGUI $form=null)
Class ilObjectOwnershipManagementGUI.
const SYSTEM_FOLDER_ID
Definition: constants.php:35
Class ilObjSystemFolderGUI.
This class represents a date/time property in a property form.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilLanguage $lng
static http()
Fetches the global http state from ILIAS.
This class represents a property in a property form.
__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output=true)
This class represents a number property in a property form.
Class ilObjectGUI Basic methods of all Output classes.
global $DIC
Definition: shib_login.php:22
setRequired(bool $a_required)
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
$handler
Definition: oai.php:30
__construct(Container $dic, ilPlugin $plugin)
Table GUI for system check groups overview.
Table GUI for system check task overview.
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)