19 declare(strict_types=1);
43 protected \Psr\Http\Message\RequestInterface
$request;
57 $this->main_tpl = $DIC[
'tpl'];
58 $this->
lng = $DIC[
'lng'];
59 $this->
ctrl = $DIC[
'ilCtrl'];
60 $this->
user = $DIC[
'ilUser'];
62 $this->uiFactory = $DIC[
'ui.factory'];
63 $this->uiRenderer = $DIC[
'ui.renderer'];
64 $this->
event = $DIC[
'ilAppEventHandler'];
65 $this->request = $DIC->http()->request();
67 $this->chatSettings =
new ilSetting(
'chatroom');
68 $this->notificationSettings =
new ilSetting(
'notifications');
72 $this->profile_mode =
new ProfileMode($this->
lng, $this->
settings, $this->
user);
80 $this->
lng->loadLanguageModule(
'user');
85 $next_class = $this->
ctrl->getNextClass();
87 switch ($next_class) {
89 $cmd = $this->
ctrl->getCmd(
"showPrivacySettings");
93 $this->main_tpl->printToStdout();
105 return $this->user_settings_config->isVisibleAndChangeable($setting);
110 return $this->user_settings_config->isVisible($setting);
121 if ($this->checklist_status->anyVisibilitySettings()
125 if (is_null($form)) {
128 $html = $this->uiRenderer->render([$form]);
132 if ($this->profile_mode->isEnabled()) {
133 $pub_profile_legacy = $this->uifactory->legacy()->content($pub_profile->getEmbeddable());
134 $html .= $this->uiRenderer->render($this->uiFactory->panel()->standard(
135 $this->
lng->txt(
'user_profile_preview'),
138 } elseif (!$this->checklist_status->anyVisibilitySettings()) {
139 $html .= $this->uiRenderer->render(
140 [$this->uiFactory->messageBox()->info($lng->
txt(
"usr_public_profile_disabled"))]
147 $main_tpl->
setContent($html . $chat_tpl->get());
157 return $awrn_set->get(
"awrn_enabled",
'0') && $this->
userSettingVisible(
"hide_own_online_status");
180 $form_action = $this->
ctrl->getLinkTarget($this,
"savePrivacySettings");
182 return $this->uiFactory->input()
185 ->standard($form_action, $sections)
186 ->withAdditionalTransformation($this->
refinery->custom()->transformation(
static function (array $values): array {
187 return array_merge(...array_values($values));
194 $this->chatSettings->get(
'enable_osc',
'0') &&
195 !$this->
settings->get(
'usr_settings_hide_chat_osc_accept_msg',
'0')
202 !$this->
settings->get(
'usr_settings_hide_chat_broadcast_typing',
'0')
208 return (
bool) $this->chatSettings->get(
'chat_enabled',
'0');
213 return (
bool) $this->notificationSettings->get(
'osd_play_sound',
'0');
218 return (
bool) $this->notificationSettings->get(
'enable_osd',
'0');
228 $this->
lng->loadLanguageModule(
"awrn");
230 $default = ($this->
settings->get(
'hide_own_online_status') ===
"n")
231 ? $this->
lng->txt(
"user_awrn_show")
232 : $this->
lng->txt(
"user_awrn_hide");
235 "x" => $this->
lng->txt(
"user_awrn_default") .
" (" . $default .
")",
236 "n" => $this->
lng->txt(
"user_awrn_show"),
237 "y" => $this->
lng->txt(
"user_awrn_hide")
239 $val = $this->
user->prefs[
"hide_own_online_status"] ??
"";
244 $fields[
"hide_own_online_status"] = $this->uiFactory->input()
247 $this->
lng->txt(
"awrn_user_show"),
249 $this->
lng->txt(
"awrn_hide_from_awareness_info")
254 $this->
settings->get(
'usr_settings_disable_hide_own_online_status',
'0') ===
'1' ? true : false
257 $formSections[
'awrn_sec'] = $this->uiFactory->input()->field()->section($fields, $this->
lng->txt(
'obj_awra'));
267 $this->
lng->loadLanguageModule(
'buddysystem');
268 $bs_allow_contact_me = isset($this->
user->prefs[
'bs_allow_to_contact_me']) ?
269 $this->
user->prefs[
'bs_allow_to_contact_me'] ===
'y' :
false;
270 $fields[
"bs_allow_to_contact_me"] = $this->uiFactory->input()
273 $this->
lng->txt(
"buddy_allow_to_contact_me"),
274 $this->
lng->txt(
"buddy_allow_to_contact_me_info")
278 $this->
settings->get(
'usr_settings_disable_bs_allow_to_contact_me',
'0') ===
'1' ? true : false
281 $formSections[
'contacts_sec'] = $this->uiFactory->input()->field()->section($fields, $this->
lng->txt(
'mm_contacts'));
296 $this->
lng->loadLanguageModule(
'notifications_adm');
297 $fields[self::PROP_ENABLE_SOUND] = $this->uiFactory->input()->field()
298 ->checkbox($this->
lng->txt(
'osd_play_sound'), $this->
lng->txt(
'osd_play_sound_desc'))
302 if ($fields !== []) {
303 $formSections[
'notification_sec'] = $this->uiFactory->input()->field()->section(
305 $this->
lng->txt(
'notification_settings')
317 $fieldFactory = $this->uiFactory->input()->field();
320 $this->
lng->loadLanguageModule(
'chatroom_adm');
321 $checkboxStateToBooleanTrafo = $this->
refinery->custom()->transformation(
static function ($v) {
330 return $v ===
'checked';
334 $oscAvailable = $this->
settings->get(
'usr_settings_disable_chat_osc_accept_msg',
'0') ===
'1' ? true :
false;
335 $oscSubFormGroup = [];
337 if ($this->chatSettings->get(
'enable_browser_notifications',
'0')) {
338 $enabledBrowserNotifications = $fieldFactory
340 $this->
lng->txt(
'osc_enable_browser_notifications_label'),
342 $this->
lng->txt(
'osc_enable_browser_notifications_info'),
343 (
int) $this->chatSettings->get(
'conversation_idle_state_in_minutes')
346 ->withAdditionalTransformation($checkboxStateToBooleanTrafo)
347 ->withDisabled($oscAvailable);
349 $oscSubFormGroup[self::PROP_ENABLE_BROWSER_NOTIFICATIONS] = $enabledBrowserNotifications;
354 self::PROP_ENABLE_BROWSER_NOTIFICATIONS =>
ilUtil::yn2tf((
string) $this->
user->getPref(
'chat_osc_browser_notifications')),
357 $enabledOsc = $fieldFactory
360 $this->
lng->txt(
'chat_osc_accept_msg'),
361 $this->
lng->txt(
'chat_osc_accept_msg_info')
364 ->withDisabled($oscAvailable)
365 ->withValue($groupValue);
367 $enabledOsc = $fieldFactory
369 $this->
lng->txt(
'chat_osc_accept_msg'),
370 $this->
lng->txt(
'chat_osc_accept_msg_info')
373 ->withDisabled($oscAvailable)
374 ->withValue(
ilUtil::yn2tf((
string) $this->
user->getPref(
'chat_osc_accept_msg')));
377 $fields[self::PROP_ENABLE_OSC] = $enabledOsc;
381 $fields[self::PROP_ENABLE_BROADCAST_TYPING] = $fieldFactory
382 ->checkbox($this->
lng->txt(
'chat_broadcast_typing'), $this->
lng->txt(
'chat_broadcast_typing_info'))
384 ->withValue(
ilUtil::yn2tf((
string) $this->
user->getPref(
'chat_broadcast_typing')));
387 if ($fields !== []) {
388 $formSections[
'chat_sec'] = $this->uiFactory->input()->field()->section(
390 $this->
lng->txt(
'chat_settings')
403 if ($request->getMethod() ===
"POST") {
404 $form = $form->withRequest($request);
405 $formData = $form->getData();
408 $val = $formData[
"hide_own_online_status"] ??
'x';
413 "hide_own_online_status",
418 if ($formData[
"bs_allow_to_contact_me"]) {
419 $user->
setPref(
"bs_allow_to_contact_me",
"y");
421 $user->
setPref(
"bs_allow_to_contact_me",
"n");
429 $oldPlaySoundValue = (
int) $this->
user->getPref(
'osd_play_sound');
430 $playASound = (
int) ($formData[self::PROP_ENABLE_SOUND] ?? 0);
432 if ($oldPlaySoundValue !== $playASound) {
433 $this->
user->setPref(
'osd_play_sound', (
string) $playASound);
439 $preferencesUpdated =
false;
442 $oldEnableOscValue =
ilUtil::yn2tf((
string) $this->
user->getPref(
'chat_osc_accept_msg'));
443 $enableOsc = $formData[self::PROP_ENABLE_OSC] ??
null;
444 if (!is_bool($enableOsc)) {
445 $enableOsc = is_array($enableOsc);
448 if ($this->
settings->get(
'usr_settings_disable_chat_osc_accept_msg',
'0') !==
'1') {
449 $preferencesUpdated =
true;
450 if ($oldEnableOscValue !== $enableOsc) {
452 $preferencesUpdated =
true;
456 if ($enableOsc && $this->chatSettings->get(
'enable_browser_notifications',
'0')) {
457 $oldBrowserNotificationValue =
ilUtil::yn2tf((
string) $this->
user->getPref(
'chat_osc_browser_notifications'));
459 $sendBrowserNotifications =
false;
460 if (is_array($formData[self::PROP_ENABLE_OSC]) &&
461 true === $formData[self::PROP_ENABLE_OSC][self::PROP_ENABLE_BROWSER_NOTIFICATIONS]) {
462 $sendBrowserNotifications =
true;
465 if ($oldBrowserNotificationValue !== $sendBrowserNotifications) {
466 $this->
user->setPref(
467 'chat_osc_browser_notifications',
470 $preferencesUpdated =
true;
476 $oldBroadcastTypingValue =
ilUtil::yn2tf((
string) $this->
user->getPref(
'chat_broadcast_typing'));
477 $broadcastTyping = (bool) ($formData[self::PROP_ENABLE_BROADCAST_TYPING] ??
false);
479 if ($oldBroadcastTypingValue !== $broadcastTyping) {
481 $preferencesUpdated =
true;
485 if ($preferencesUpdated) {
486 $this->
user->writePrefs();
489 'components/ILIAS/Chatroom',
490 'chatSettingsChanged',
492 'user' => $this->
user 498 $this->checklist_status->saveStepSucess(ChecklistStatus::STEP_VISIBILITY_OPTIONS);
499 $this->main_tpl->setOnScreenMessage(
'success', $lng->
txt(
'msg_obj_modified'),
true);
509 $tpl =
new ilTemplate(
'tpl.personal_chat_settings_form.html',
true,
true,
'components/ILIAS/Chatroom');
511 $pageTemplate->
addJavaScript(
'assets/js/browser_notifications.js');
514 $tpl->setVariable(
'BROWSER_NOTIFICATION_TOGGLE_LABEL', $this->
lng->txt(
'osc_enable_browser_notifications_label'));
516 $this->
lng->toJSMap([
517 'osc_browser_noti_no_permission_error' => $this->
lng->txt(
'osc_browser_noti_no_permission_error'),
518 'osc_browser_noti_no_support_error' => $this->
lng->txt(
'osc_browser_noti_no_support_error'),
519 'osc_browser_noti_req_permission_error' => $this->
lng->txt(
'osc_browser_noti_req_permission_error'),
initPrivacySettingsForm()
Init form.
populateWithContactsSettingsSection(array &$formSections)
shouldDisplayChatSection()
ilSetting $notificationSettings
ILIAS UI Factory $uiFactory
appendChatJsToTemplate(ilGlobalTemplateInterface $pageTemplate)
Personal profile publishing mode of a user.
Interface Observer Contains several chained tasks and infos about them.
workWithUserSetting(string $setting)
setContent(string $a_html)
Sets content for standard template.
shouldShowNotificationOptions()
populateWithNotificationSettingsSection(array &$formSections)
ilUserSettingsConfig $user_settings_config
ProfileMode $profile_mode
isAwarnessSettingVisible()
Is awareness tool setting visible.
populateWithAwarenessSettingsSection(array &$formSections)
const PROP_ENABLE_BROADCAST_TYPING
ILIAS UI Renderer $uiRenderer
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ILIAS Refinery Factory $refinery
GUI class for public user profile presentation.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
shouldDisplayNotificationSection()
shouldShowChatTypingBroadcastOption()
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
userSettingVisible(string $setting)
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setPref(string $a_keyword, ?string $a_value)
showPrivacySettings(?\ILIAS\UI\Component\Input\Container\Form\Standard $form=null)
shouldShowOnScreenChatOptions()
ilGlobalTemplateInterface $main_tpl
ChecklistStatus $checklist_status
const PROP_ENABLE_BROWSER_NOTIFICATIONS
populateWithChatSettingsSection(array &$formSections)
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static yn2tf(string $a_yn)
isContactSettingVisible()
Is contact setting visible.
Psr Http Message RequestInterface $request