ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjPrivacySecurityGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
28  private static array $ERROR_MESSAGE = [];
29 
34  public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
35  {
36  $this->type = 'ps';
37  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
38  self::initErrorMessages();
39  }
40 
41  public static function initErrorMessages(): void
42  {
43  global $DIC;
44 
45  $lng = $DIC->language();
46 
47  if (count(self::$ERROR_MESSAGE)) {
48  return;
49  }
50  $lng->loadLanguageModule('ps');
52  ilSecuritySettings::$SECURITY_SETTINGS_ERR_CODE_AUTO_HTTPS => $lng->txt("ps_error_message_https_header_missing"),
55  ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MIN_LENGTH => $lng->txt('ps_error_message_invalid_password_min_length'),
56  ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MAX_LENGTH => $lng->txt('ps_error_message_invalid_password_max_length'),
57  ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MAX_AGE => $lng->txt('ps_error_message_invalid_password_max_age'),
58  ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_LOGIN_MAX_ATTEMPTS => $lng->txt('ps_error_message_invalid_login_max_attempts'),
59  ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN1 => $lng->txt('ps_error_message_password_min1_because_chars'),
60  ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN2 => $lng->txt('ps_error_message_password_min2_because_chars_numbers'),
61  ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN3 => $lng->txt('ps_error_message_password_min3_because_chars_numbers_sc'),
63  ];
64  }
65 
66  public function executeCommand(): void
67  {
68  $next_class = $this->ctrl->getNextClass($this);
69  $cmd = $this->ctrl->getCmd();
70 
71  $this->prepareOutput();
72 
73  if (!$this->rbac_system->checkAccess('visible,read', $this->object->getRefId())) {
74  $this->error->raiseError($this->lng->txt('no_permission'), $this->error->WARNING);
75  }
76 
77  switch ($next_class) {
78  case 'ilpermissiongui':
79  $this->tabs_gui->setTabActive('perm_settings');
80  $perm_gui = new ilPermissionGUI($this);
81  $this->ctrl->forwardCommand($perm_gui);
82  break;
83 
84  default:
85  if (!$cmd || $cmd == 'view') {
86  $cmd = "showPrivacy";
87  }
88 
89  $this->$cmd();
90  break;
91  }
92  }
93 
98  public function getAdminTabs(): void
99  {
100  if ($this->rbac_system->checkAccess("visible,read", $this->object->getRefId())) {
101  $this->tabs_gui->addTarget(
102  "show_privacy",
103  $this->ctrl->getLinkTarget($this, "showPrivacy"),
104  'showPrivacy'
105  );
106  $this->tabs_gui->addTarget(
107  "show_security",
108  $this->ctrl->getLinkTarget($this, "showSecurity"),
109  'showSecurity'
110  );
111  }
112 
113  if ($this->rbac_system->checkAccess('edit_permission', $this->object->getRefId())) {
114  $this->tabs_gui->addTarget(
115  "perm_settings",
116  $this->ctrl->getLinkTargetByClass('ilpermissiongui', "perm"),
117  array(),
118  'ilpermissiongui'
119  );
120  }
121  }
122 
123  protected function initPrivacyForm(): ilPropertyFormGUI
124  {
125  $privacy = ilPrivacySettings::getInstance();
126 
127  $this->tabs_gui->setTabActive('show_privacy');
128 
129  $form = new ilPropertyFormGUI();
130  $form->setFormAction($this->ctrl->getFormAction($this));
131  $form->setTitle($this->lng->txt('ps_privacy_protection'));
132 
134  $this->tpl->setOnScreenMessage('info', $this->lng->txt('ps_warning_modify'));
135  }
136 
137  $value = [];
138  if ($privacy->enabledCourseExport()) {
139  $value[] = "export_course";
140  }
141  if ($privacy->enabledGroupExport()) {
142  $value[] = "export_group";
143  }
144  if ($privacy->enabledPRGUserExport()) {
145  $value[] = "export_prg";
146  }
147  if ($privacy->courseConfirmationRequired()) {
148  $value[] = "export_confirm_course";
149  }
150  if ($privacy->groupConfirmationRequired()) {
151  $value[] = "export_confirm_group";
152  }
153  if ($privacy->enabledGroupAccessTimes()) {
154  $value[] = "grp_access_times";
155  }
156  if ($privacy->enabledCourseAccessTimes()) {
157  $value[] = "crs_access_times";
158  }
159  if ($privacy->enabledLearningSequenceAccessTimes()) {
160  $value[] = "lso_access_times";
161  }
162  if ($privacy->participantsListInCoursesEnabled()) {
163  $value[] = 'participants_list_courses';
164  }
165  $group = new ilCheckboxGroupInputGUI($this->lng->txt('ps_profile_export'), 'profile_protection');
166  $group->setValue($value);
167  $check = new ilCheckboxOption();
168  $check->setTitle($this->lng->txt('ps_export_course'));
169  $check->setValue('export_course');
170  $group->addOption($check);
171  $check = new ilCheckboxOption();
172  $check->setTitle($this->lng->txt('ps_export_groups'));
173  $check->setValue('export_group');
174  $group->addOption($check);
175  $check = new ilCheckboxOption();
176  $check->setTitle($this->lng->txt('ps_export_prgs'));
177  $check->setValue('export_prg');
178  $group->addOption($check);
179  $check = new ilCheckboxOption();
180  $check->setTitle($this->lng->txt('ps_export_confirm'));
181  $check->setValue('export_confirm_course');
182  $group->addOption($check);
183  $check = new ilCheckboxOption();
184  $check->setTitle($this->lng->txt('ps_export_confirm_group'));
185  $check->setValue('export_confirm_group');
186  $group->addOption($check);
187  $check = new ilCheckboxOption();
188  $check->setTitle($this->lng->txt('ps_show_grp_access'));
189  $check->setValue('grp_access_times');
190  $group->addOption($check);
191  $check = new ilCheckboxOption();
192  $check->setTitle($this->lng->txt('ps_show_crs_access'));
193  $check->setValue('crs_access_times');
194  $group->addOption($check);
195  $check = new ilCheckboxOption();
196  $check->setTitle($this->lng->txt('ps_show_lso_access'));
197  $check->setValue('lso_access_times');
198  $group->addOption($check);
199  $form->addItem($group);
200  $check = new ilCheckboxOption();
201  $check->setTitle($this->lng->txt('ps_participants_list_courses'));
202  $check->setValue('participants_list_courses');
203  $group->addOption($check);
204 
207  $form,
208  $this
209  );
210 
211  if ($this->checkPermissionBool("write")) {
212  $form->addCommandButton('save_privacy', $this->lng->txt('save'));
213  }
214  return $form;
215  }
216 
221  public function showPrivacy(?ilPropertyFormGUI $form = null): void
222  {
223  if (!$form instanceof ilPropertyFormGUI) {
224  $form = $this->initPrivacyForm();
225  }
226  $this->tpl->setContent($form->getHTML());
227  }
228 
232  public function showSecurity(): void
233  {
234  $security = ilSecuritySettings::_getInstance();
235 
236  $this->tabs_gui->setTabActive('show_security');
237 
238  $form = new ilPropertyFormGUI();
239  $form->setFormAction($this->ctrl->getFormAction($this));
240  $form->setTitle($this->lng->txt('ps_security_protection'));
241 
244  $form,
245  $this
246  );
247  $this->tpl->setContent($form->getHTML());
248  }
249 
250  public function save_privacy(): void
251  {
252  if (!$this->access->checkAccess('write', '', $this->object->getRefId())) {
253  $this->error->raiseError($this->lng->txt('no_permission'), $this->error->WARNING);
254  }
255 
256  $form = $this->initPrivacyForm();
257  $valid = true;
258  if (!$form->checkInput()) {
259  $valid = false;
260  }
261 
262  $profile_protection = $form->getInput('profile_protection') ?? [];
263  $privacy = ilPrivacySettings::getInstance();
264 
265  // to determine if agreements need to be reset - see below
266  $old_settings = array(
267  'export_course' => $privacy->enabledCourseExport(),
268  'export_group' => $privacy->enabledGroupExport(),
269  'export_prg' => $privacy->enabledPRGUserExport(),
270  'export_confirm_course' => $privacy->courseConfirmationRequired(),
271  'export_confirm_group' => $privacy->groupConfirmationRequired(),
272  'crs_access_times' => $privacy->enabledCourseAccessTimes(),
273  'grp_access_times' => $privacy->enabledGroupAccessTimes(),
274  'lso_access_times' => $privacy->enabledLearningSequenceAccessTimes(),
275  'participants_list_courses' => $privacy->participantsListInCoursesEnabled()
276  );
277 
278  $privacy->enableCourseExport(in_array('export_course', $profile_protection));
279  $privacy->enableGroupExport(in_array('export_group', $profile_protection));
280  $privacy->enablePRGUserExport((bool) in_array('export_prg', $profile_protection));
281  $privacy->setCourseConfirmationRequired(in_array('export_confirm_course', $profile_protection));
282  $privacy->setGroupConfirmationRequired(in_array('export_confirm_group', $profile_protection));
283  $privacy->showGroupAccessTimes(in_array('grp_access_times', $profile_protection));
284  $privacy->showCourseAccessTimes(in_array('crs_access_times', $profile_protection));
285  $privacy->showLearningSequenceAccessTimes(in_array('lso_access_times', $profile_protection));
286 
287  $privacy->enableParticipantsListInCourses(in_array('participants_list_courses', $profile_protection));
288 
289  // validate settings
290  $code = $privacy->validate();
291  // if error code != 0, display error and do not save
292  if ($code !== 0) {
293  $msg = self::getErrorMessage($code);
294  $this->tpl->setOnScreenMessage('failure', $msg);
295  $form->setValuesByPost();
296  $this->showPrivacy($form);
297  return;
298  } elseif (!$valid) {
299  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('err_check_input'));
300  $form->setValuesByPost();
301  $this->showPrivacy($form);
302  return;
303  } else {
304  $privacy->save();
305  // reset agreements?
306  $do_reset = false;
307  if (!$old_settings['export_course'] && $privacy->enabledCourseExport()) {
308  $do_reset = true;
309  }
310  if (!$do_reset && !$old_settings['export_group'] && $privacy->enabledGroupExport()) {
311  $do_reset = true;
312  }
313  if (!$do_reset && !$old_settings['export_confirm_course'] && $privacy->courseConfirmationRequired()) {
314  $do_reset = true;
315  }
316  if (!$do_reset && !$old_settings['export_confirm_group'] && $privacy->groupConfirmationRequired()) {
317  $do_reset = true;
318  }
319  if (!$do_reset && !$old_settings['crs_access_times'] && $privacy->enabledCourseAccessTimes()) {
320  $do_reset = true;
321  }
322  if (!$do_reset && !$old_settings['grp_access_times'] && $privacy->enabledGroupAccessTimes()) {
323  $do_reset = true;
324  }
325  if (!$do_reset && !$old_settings['lso_access_times'] && $privacy->enabledLearningSequenceAccessTimes()) {
326  $do_reset = true;
327  }
328  if ($do_reset) {
330  }
331  $this->tpl->setOnScreenMessage('success', $this->lng->txt('settings_saved'), true);
332  }
333  $this->ctrl->redirect($this, 'showPrivacy');
334  }
335 
339  public function save_security(): void
340  {
341  if (!$this->access->checkAccess('write', '', $this->object->getRefId())) {
342  $this->error->raiseError($this->lng->txt('no_permission'), $this->error->WARNING);
343  }
344  $this->showSecurity();
345  }
346 
353  public static function getErrorMessage(int $code): string
354  {
355  self::initErrorMessages();
356  if (array_key_exists($code, self::$ERROR_MESSAGE)) {
357  return self::$ERROR_MESSAGE[$code];
358  }
359  return '';
360  }
361 
362  public function addToExternalSettingsForm(int $a_form_id): array
363  {
364  switch ($a_form_id) {
366  $privacy = ilPrivacySettings::getInstance();
367  $subitems = [
368  'ps_export_course' => [
369  $privacy->enabledCourseExport(),
371  ],
372  'ps_export_confirm' => [
373  $privacy->courseConfirmationRequired(),
375  ],
376  'ps_show_crs_access' => [
377  $privacy->enabledCourseAccessTimes(),
379  ],
380  'ps_participants_list_courses' => [
381  $privacy->participantsListInCoursesEnabled(),
383  ]
384  ];
385  $fields = [
386  'ps_profile_export' => [null, null, $subitems]
387  ];
388  return [["showPrivacy", $fields]];
389 
391  $privacy = ilPrivacySettings::getInstance();
392  $subitems = [
393  'ps_export_groups' => [
394  $privacy->enabledGroupExport(),
396  ],
397  'ps_export_confirm_group' => [
398  $privacy->groupConfirmationRequired(),
400  ],
401  'ps_show_grp_access' => [
402  $privacy->enabledGroupAccessTimes(),
404  ]
405  ];
406  $fields = [
407  'ps_profile_export' => [null, null, $subitems]
408  ];
409  return [["showPrivacy", $fields]];
410 
412  $privacy = ilPrivacySettings::getInstance();
413  $subitems = [
414  'ps_export_prgs' => [
415  $privacy->enabledPRGUserExport(),
417  ]
418  ];
419  $fields = [
420  'ps_profile_export' => [null, null, $subitems]
421  ];
422  return [["showPrivacy", $fields]];
423  }
424  return [];
425  }
426 }
showSecurity()
Show Privacy settings.
This class represents an option in a checkbox group.
const SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN2
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
const SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MIN_LENGTH
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Contructor public.
const SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MAX_LENGTH
prepareOutput(bool $show_sub_objects=true)
$valid
showPrivacy(?ilPropertyFormGUI $form=null)
Show Privacy settings public.
loadLanguageModule(string $a_module)
Load language module.
static int $SECURITY_SETTINGS_ERR_CODE_HTTP_NOT_AVAILABLE
static _reset()
Reset all.
const SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MAX_AGE
static int $SECURITY_SETTINGS_ERR_CODE_AUTO_HTTPS
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilLanguage $lng
static getErrorMessage(int $code)
return error message for error code
Class ilObjectGUI Basic methods of all Output classes.
global $DIC
Definition: shib_login.php:22
save_security()
Save security settings.
This class represents a property in a property form.
static _hasAgreements()
Check if there is any user agreement.
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
const SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN3
getErrorMessage($value)
__construct(Container $dic, ilPlugin $plugin)
static addFieldsToForm(int $a_form_id, ilPropertyFormGUI $a_form, ilObjectGUI $a_parent_gui)
static int $SECURITY_SETTINGS_ERR_CODE_HTTPS_NOT_AVAILABLE
const SECURITY_SETTINGS_ERR_CODE_INVALID_LOGIN_MAX_ATTEMPTS
const SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN1
const SECURITY_SETTINGS_ERR_CODE_PASSWORD_MAX_LENGTH_LESS_MIN_LENGTH
$check
Definition: buildRTE.php:81
static _getInstance()
Get instance of ilSecuritySettings.