ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
class.ilObjPrivacySecurityGUI.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3include_once("./Services/Object/classes/class.ilObjectGUI.php");
4include_once('./Services/PrivacySecurity/classes/class.ilPrivacySettings.php');
5include_once('./Services/PrivacySecurity/classes/class.ilSecuritySettings.php');
6
19{
20 private static $ERROR_MESSAGE;
26 public function __construct($a_data, $a_id, $a_call_by_reference = true, $a_prepare_output = true)
27 {
28 $this->type = 'ps';
29 parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
30
32 }
33
34 public static function initErrorMessages()
35 {
36 global $DIC;
37
38 $lng = $DIC['lng'];
39
40 if (is_array(self::$ERROR_MESSAGE)) {
41 return;
42 }
43
44 $lng->loadLanguageModule('ps');
45
47 ilSecuritySettings::$SECURITY_SETTINGS_ERR_CODE_AUTO_HTTPS => $lng->txt("ps_error_message_https_header_missing"),
50 ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MIN_LENGTH => $lng->txt('ps_error_message_invalid_password_min_length'),
51 ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MAX_LENGTH => $lng->txt('ps_error_message_invalid_password_max_length'),
52 ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MAX_AGE => $lng->txt('ps_error_message_invalid_password_max_age'),
53 ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_INVALID_LOGIN_MAX_ATTEMPTS => $lng->txt('ps_error_message_invalid_login_max_attempts'),
54 ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN1 => $lng->txt('ps_error_message_password_min1_because_chars'),
55 ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN2 => $lng->txt('ps_error_message_password_min2_because_chars_numbers'),
56 ilSecuritySettings::SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN3 => $lng->txt('ps_error_message_password_min3_because_chars_numbers_sc'),
58 );
59 }
60
67 public function executeCommand()
68 {
69 global $DIC;
70
71 $next_class = $this->ctrl->getNextClass($this);
72 $cmd = $this->ctrl->getCmd();
73
74 $this->prepareOutput();
75
76 if (!$DIC->rbac()->system()->checkAccess('visible,read', $this->object->getRefId())) {
77 $DIC['ilErr']->raiseError($this->lng->txt('no_permission'), $DIC['ilErr']->WARNING);
78 }
79
80 switch ($next_class) {
81 case 'ilpermissiongui':
82 $this->tabs_gui->setTabActive('perm_settings');
83 include_once("Services/AccessControl/classes/class.ilPermissionGUI.php");
84 $perm_gui = new ilPermissionGUI($this);
85 $ret = &$this->ctrl->forwardCommand($perm_gui);
86 break;
87
88 default:
89 if (!$cmd || $cmd == 'view') {
90 $cmd = "showPrivacy";
91 }
92
93 $this->$cmd();
94 break;
95 }
96 return true;
97 }
98
105 public function getAdminTabs()
106 {
107 global $DIC;
108
109 $rbacsystem = $DIC['rbacsystem'];
110
111 if ($rbacsystem->checkAccess("visible,read", $this->object->getRefId())) {
112 $this->tabs_gui->addTarget(
113 "show_privacy",
114 $this->ctrl->getLinkTarget($this, "showPrivacy"),
115 'showPrivacy'
116 );
117 $this->tabs_gui->addTarget(
118 "show_security",
119 $this->ctrl->getLinkTarget($this, "showSecurity"),
120 'showSecurity'
121 );
122 }
123
124 if ($rbacsystem->checkAccess('edit_permission', $this->object->getRefId())) {
125 $this->tabs_gui->addTarget(
126 "perm_settings",
127 $this->ctrl->getLinkTargetByClass('ilpermissiongui', "perm"),
128 array(),
129 'ilpermissiongui'
130 );
131 }
132 }
133
139 public function showPrivacy()
140 {
142
143 $this->tabs_gui->setTabActive('show_privacy');
144
145 include_once("./Services/Form/classes/class.ilPropertyFormGUI.php");
146 $form = new ilPropertyFormGUI();
147 $form->setFormAction($this->ctrl->getFormAction($this));
148 $form->setTitle($this->lng->txt('ps_privacy_protection'));
149
150 include_once('Services/Membership/classes/class.ilMemberAgreement.php');
152 ilUtil::sendInfo($this->lng->txt('ps_warning_modify'));
153 }
154
155 $value = array();
156 if ($privacy->enabledCourseExport()) {
157 $value[] = "export_course";
158 }
159 if ($privacy->enabledGroupExport()) {
160 $value[] = "export_group";
161 }
162 if ($privacy->courseConfirmationRequired()) {
163 $value[] = "export_confirm_course";
164 }
165 if ($privacy->groupConfirmationRequired()) {
166 $value[] = "export_confirm_group";
167 }
168 if ($privacy->enabledGroupAccessTimes()) {
169 $value[] = "grp_access_times";
170 }
171 if ($privacy->enabledCourseAccessTimes()) {
172 $value[] = "crs_access_times";
173 }
174 if ($privacy->participantsListInCoursesEnabled()) {
175 $value[] = 'participants_list_courses';
176 }
177 $group = new ilCheckboxGroupInputGUI($this->lng->txt('ps_profile_export'), 'profile_protection');
178 $group->setValue($value);
179 $check = new ilCheckboxOption();
180 $check->setTitle($this->lng->txt('ps_export_course'));
181 $check->setValue('export_course');
182 $group->addOption($check);
183 $check = new ilCheckboxOption();
184 $check->setTitle($this->lng->txt('ps_export_groups'));
185 $check->setValue('export_group');
186 $group->addOption($check);
187 $check = new ilCheckboxOption();
188 $check->setTitle($this->lng->txt('ps_export_confirm'));
189 $check->setValue('export_confirm_course');
190 $group->addOption($check);
191 $check = new ilCheckboxOption();
192 $check->setTitle($this->lng->txt('ps_export_confirm_group'));
193 $check->setValue('export_confirm_group');
194 $group->addOption($check);
195 $check = new ilCheckboxOption();
196 $check->setTitle($this->lng->txt('ps_show_grp_access'));
197 $check->setValue('grp_access_times');
198 $group->addOption($check);
199 $check = new ilCheckboxOption();
200 $check->setTitle($this->lng->txt('ps_show_crs_access'));
201 $check->setValue('crs_access_times');
202 $group->addOption($check);
203 $form->addItem($group);
204 $check = new \ilCheckboxOption();
205 $check->setTitle($this->lng->txt('ps_participants_list_courses'));
206 $check->setValue('participants_list_courses');
207 $group->addOption($check);
208
209 include_once "Services/Administration/classes/class.ilAdministrationSettingsFormHandler.php";
212 $form,
213 $this
214 );
215
216 if ($this->checkPermissionBool("write")) {
217 $form->addCommandButton('save_privacy', $this->lng->txt('save'));
218 }
219 $this->tpl->setContent($form->getHTML());
220 }
221
227 public function showSecurity()
228 {
229 global $DIC;
230
231 $ilSetting = $DIC['ilSetting'];
232 $ilUser = $DIC['ilUser'];
233 $rbacreview = $DIC['rbacreview'];
234
235 include_once("./Services/Form/classes/class.ilPropertyFormGUI.php");
236
238
239 $this->tabs_gui->setTabActive('show_security');
240
241 $form = new ilPropertyFormGUI();
242 $form->setFormAction($this->ctrl->getFormAction($this));
243 $form->setTitle($this->lng->txt('ps_security_protection'));
244
245 include_once "Services/Administration/classes/class.ilAdministrationSettingsFormHandler.php";
248 $form,
249 $this
250 );
251
252 // $form->addCommandButton('save_security',$this->lng->txt('save'));
253 $this->tpl->setContent($form->getHTML());
254 }
255
262 public function save_privacy()
263 {
264 global $DIC;
265
266 $ilErr = $DIC['ilErr'];
267 $ilAccess = $DIC['ilAccess'];
268 $ilSetting = $DIC['ilSetting'];
269
270 if (!$ilAccess->checkAccess('write', '', $this->object->getRefId())) {
271 $ilErr->raiseError($this->lng->txt('no_permission'), $ilErr->WARNING);
272 }
273
274 if ((int) $_POST['rbac_log_age'] > 24) {
275 $_POST['rbac_log_age'] = 24;
276 } elseif ((int) $_POST['rbac_log_age'] < 1) {
277 $_POST['rbac_log_age'] = 1;
278 }
279
280 $_POST['profile_protection'] = isset($_POST['profile_protection']) ? $_POST['profile_protection'] : array();
281
283
284 // to determine if agreements need to be reset - see below
285 $old_settings = array(
286 'export_course' => $privacy->enabledCourseExport(),
287 'export_group' => $privacy->enabledGroupExport(),
288 'export_confirm_course' => $privacy->courseConfirmationRequired(),
289 'export_confirm_group' => $privacy->groupConfirmationRequired(),
290 'crs_access_times' => $privacy->enabledCourseAccessTimes(),
291 'grp_access_times' => $privacy->enabledGroupAccessTimes(),
292 'participants_list_courses' => $privacy->participantsListInCoursesEnabled()
293 );
294
295 $privacy->enableCourseExport((int) in_array('export_course', $_POST['profile_protection']));
296 $privacy->enableGroupExport((int) in_array('export_group', $_POST['profile_protection']));
297 $privacy->setCourseConfirmationRequired((int) in_array('export_confirm_course', $_POST['profile_protection']));
298 $privacy->setGroupConfirmationRequired((int) in_array('export_confirm_group', $_POST['profile_protection']));
299 $privacy->showGroupAccessTimes((int) in_array('grp_access_times', $_POST['profile_protection']));
300 $privacy->showCourseAccessTimes((int) in_array('crs_access_times', $_POST['profile_protection']));
301 $privacy->enableParticipantsListInCourses((bool) in_array('participants_list_courses', $_POST['profile_protection']));
302
303 // validate settings
304 $code = $privacy->validate();
305
306 // if error code != 0, display error and do not save
307 if ($code != 0) {
308 $msg = $this->getErrorMessage($code);
310 } else {
311 $privacy->save();
312
313 // reset agreements?
314 $do_reset = false;
315 if (!$old_settings['export_course'] && $privacy->enabledCourseExport()) {
316 $do_reset = true;
317 }
318 if (!$do_reset && !$old_settings['export_group'] && $privacy->enabledGroupExport()) {
319 $do_reset = true;
320 }
321 if (!$do_reset && !$old_settings['export_confirm_course'] && $privacy->courseConfirmationRequired()) {
322 $do_reset = true;
323 }
324 if (!$do_reset && !$old_settings['export_confirm_group'] && $privacy->groupConfirmationRequired()) {
325 $do_reset = true;
326 }
327 if (!$do_reset && !$old_settings['crs_access_times'] && $privacy->enabledCourseAccessTimes()) {
328 $do_reset = true;
329 }
330 if (!$do_reset && !$old_settings['grp_access_times'] && $privacy->enabledGroupAccessTimes()) {
331 $do_reset = true;
332 }
333 if ($do_reset) {
334 include_once('Services/Membership/classes/class.ilMemberAgreement.php');
336 }
337 ilUtil::sendSuccess($this->lng->txt('settings_saved'));
338 }
339
340 $this->showPrivacy();
341 }
342
349 public function save_security()
350 {
351 global $DIC;
352
353 $ilErr = $DIC['ilErr'];
354 $ilAccess = $DIC['ilAccess'];
355 $ilSetting = $DIC['ilSetting'];
356 $rbacreview = $DIC['rbacreview'];
357 $ilUser = $DIC['ilUser'];
358
359 if (!$ilAccess->checkAccess('write', '', $this->object->getRefId())) {
360 $ilErr->raiseError($this->lng->txt('no_permission'), $ilErr->WARNING);
361 }
362
363 /*
364 $security = ilSecuritySettings::_getInstance();
365
366 $code = $security->validate();
367
368 // if error code != 0, display error and do not save
369 if ($code != 0)
370 {
371 $msg = $this->getErrorMessage ($code);
372 ilUtil::sendFailure($msg);
373 } else
374 {
375 $security->save();
376 ilUtil::sendSuccess($this->lng->txt('settings_saved'));
377 }
378 */
379
380 $this->showSecurity();
381 }
382
383
391 public static function getErrorMessage($code)
392 {
395 }
396
397 public function addToExternalSettingsForm($a_form_id)
398 {
399 switch ($a_form_id) {
401
403
404 $subitems = array(
405 'ps_export_course' => array($privacy->enabledCourseExport(), ilAdministrationSettingsFormHandler::VALUE_BOOL),
406 'ps_export_confirm' => array($privacy->courseConfirmationRequired(), ilAdministrationSettingsFormHandler::VALUE_BOOL),
407 'ps_show_crs_access' => array($privacy->enabledCourseAccessTimes(), ilAdministrationSettingsFormHandler::VALUE_BOOL),
408 'ps_participants_list_courses' => [$privacy->participantsListInCoursesEnabled(), \ilAdministrationSettingsFormHandler::VALUE_BOOL]
409 );
410 $fields = array(
411 'ps_profile_export' => array(null, null, $subitems)
412 );
413 return array(array("showPrivacy", $fields));
414
416
418
419 $subitems = array(
420 'ps_export_groups' => array($privacy->enabledGroupExport(), ilAdministrationSettingsFormHandler::VALUE_BOOL),
421 'ps_export_confirm_group' => array($privacy->groupConfirmationRequired(), ilAdministrationSettingsFormHandler::VALUE_BOOL),
422 'ps_show_grp_access' => array($privacy->enabledGroupAccessTimes(), ilAdministrationSettingsFormHandler::VALUE_BOOL)
423 );
424 $fields = array(
425 'ps_profile_export' => array(null, null, $subitems)
426 );
427 return array(array("showPrivacy", $fields));
428 }
429 }
430}
$_POST["username"]
An exception for terminatinating execution or to throw for unit testing.
static addFieldsToForm($a_form_id, ilPropertyFormGUI $a_form, ilObjectGUI $a_parent_gui)
This class represents a property in a property form.
This class represents an option in a checkbox group.
static _hasAgreements()
Check if there is any user agreement.
static _reset()
Reset all.
__construct($a_data, $a_id, $a_call_by_reference=true, $a_prepare_output=true)
Contructor.
save_security()
Save security settings.
static getErrorMessage($code)
return error message for error code
Class ilObjectGUI Basic methods of all Output classes.
prepareOutput($a_show_subobjects=true)
prepare output
checkPermissionBool($a_perm, $a_cmd="", $a_type="", $a_ref_id=null)
Check permission.
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
static _getInstance()
Get instance of ilPrivacySettings.
This class represents a property form user interface.
const SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN2
const SECURITY_SETTINGS_ERR_CODE_INVALID_LOGIN_MAX_ATTEMPTS
static $SECURITY_SETTINGS_ERR_CODE_HTTP_NOT_AVAILABLE
const SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MAX_LENGTH
const SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN3
const SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MAX_AGE
const SECURITY_SETTINGS_ERR_CODE_PASSWORD_MAX_LENGTH_LESS_MIN_LENGTH
const SECURITY_SETTINGS_ERR_CODE_PASSWORD_MIN_LENGTH_MIN1
const SECURITY_SETTINGS_ERR_CODE_INVALID_PASSWORD_MIN_LENGTH
static $SECURITY_SETTINGS_ERR_CODE_HTTPS_NOT_AVAILABLE
static _getInstance()
Get instance of ilSecuritySettings.
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
$ret
Definition: parser.php:6
global $ilSetting
Definition: privfeed.php:17
$ilUser
Definition: imgupload.php:18
$DIC
Definition: xapitoken.php:46