19 declare(strict_types=1);
47 $this->
http = $DIC->http();
48 $this->
ctrl = $DIC->ctrl();
49 $this->actor = $DIC->user();
54 return $this->dic->http()->response()->withBody(Streams::ofString($body));
62 $chatSettings->
get(
'chat_enabled',
'0') &&
63 $chatSettings->
get(
'enable_osc',
'0') &&
64 $DIC->user() && !$DIC->user()->isAnonymous()
77 $smileys_array = ilChatroomSmilies::_getSmilies();
78 foreach ($smileys_array as $smiley_array) {
81 foreach ($smiley_array as
$key => $value) {
82 if (
$key ===
'smiley_keywords') {
83 $new_keys = explode(
"\n", $value);
86 if (
$key ===
'smiley_fullpath') {
91 if (!$new_keys || !$new_val) {
95 foreach ($new_keys as $new_key) {
96 $smileys[$new_key] = $new_val;
106 $cmd = $this->
ctrl->getCmd();
108 case 'getUserProfileData':
116 case 'getRenderedConversationItems':
119 new Conversation($this->dic->database(), $this->dic->user()),
120 new Subscriber($this->dic->database(), $this->dic->user())
123 $conversationIds = (string) ($this->dic->http()->request()->getQueryParams()[
'ids'] ??
'');
124 $noAggregates = ($this->dic->http()->request()->getQueryParams()[
'no_aggregates'] ??
'');
127 $this->dic->ui()->renderer()->renderAsync(
$provider->getAsyncItem(
129 $noAggregates !==
'true' 139 if ($this->
ctrl->isAsynch()) {
141 $this->
http->sendResponse();
142 $this->
http->close();
151 'loggedIn' => $this->actor->getId() && !$this->actor->isAnonymous()
152 ], JSON_THROW_ON_ERROR));
157 if (!$this->actor->getId() || $this->actor->isAnonymous()) {
162 $auto->setUser($this->actor);
164 if (isset($this->
http->request()->getQueryParams()[
'fetchall'])) {
167 $auto->setMoreLinkAvailable(
true);
168 $auto->setSearchFields([
'firstname',
'lastname']);
169 $auto->setResultField(
'login');
170 $auto->enableFieldSearchableCheck(
true);
172 return $this->
getResponseWithText($auto->getList($this->http->request()->getQueryParams()[
'term'] ??
''));
177 if (!$this->actor->getId() || $this->actor->isAnonymous()) {
181 $usrIds = (string) ($this->
http->request()->getQueryParams()[
'usr_ids'] ??
'');
182 if ($usrIds ===
'') {
186 $this->dic->language()->loadLanguageModule(
'user');
187 $subscriberRepo =
new Subscriber($this->dic->database(), $this->dic->user());
188 $data = $subscriberRepo->getDataByUserIds(explode(
',', $usrIds));
199 if (!self::$frontend_initialized) {
200 $clientSettings =
new ilSetting(
'chatroom');
202 if (!self::isOnScreenChatAccessible($clientSettings)) {
203 self::$frontend_initialized =
true;
209 $DIC->language()->loadLanguageModule(
'chatroom');
210 $DIC->language()->loadLanguageModule(
'user');
212 $renderer = $DIC->ui()->renderer();
215 $chatWindowTemplate =
new ilTemplate(
'tpl.chat-window.html',
false,
false,
'Services/OnScreenChat');
216 $chatWindowTemplate->setVariable(
'SUBMIT_ACTION', $renderer->render(
217 $factory->button()->standard($DIC->language()->txt(
'chat_osc_send'),
'onscreenchat-submit')
219 $chatWindowTemplate->setVariable(
'ADD_ACTION', $renderer->render(
220 $factory->symbol()->glyph()->add(
'addUser')
222 $chatWindowTemplate->setVariable(
'MINIMIZE_ACTION', $renderer->render(
227 $subscriberRepo =
new Subscriber($DIC->database(), $DIC->user());
230 'chatWindowTemplate' => $chatWindowTemplate->get(),
232 'tpl.chat-message.html',
235 'Services/OnScreenChat' 238 'tpl.chat-add-user.html',
241 'Services/OnScreenChat' 243 'userId' => $DIC->user()->getId(),
244 'username' => $DIC->user()->getLogin(),
245 'userListURL' => $DIC->ctrl()->getLinkTargetByClass(
252 'userProfileDataURL' => $DIC->ctrl()->getLinkTargetByClass(
254 'getUserProfileData',
259 'verifyLoginURL' => $DIC->ctrl()->getLinkTargetByClass(
266 'renderConversationItemsURL' => $DIC->ctrl()->getLinkTargetByClass(
268 'getRenderedConversationItems',
274 'emoticons' => self::getEmoticons(
$settings),
275 'locale' => $DIC->language()->getLangKey(),
276 'initialUserData' => $subscriberRepo->getInitialUserProfileData(),
277 'enabledBrowserNotifications' => (
278 $clientSettings->get(
'enable_browser_notifications',
'0') &&
279 ilUtil::yn2tf((
string) $DIC->user()->getPref(
'chat_osc_browser_notifications'))
281 'broadcast_typing' => (
282 ilUtil::yn2tf((
string) $DIC->user()->getPref(
'chat_broadcast_typing'))
289 'subDirectory' =>
$settings->getSubDirectory() .
'/socket.io',
290 'userId' => $DIC->user()->getId(),
291 'username' => $DIC->user()->getLogin(),
294 $DIC->language()->toJS([
295 'chat_osc_no_usr_found',
296 'chat_osc_emoticons',
297 'chat_osc_write_a_msg',
300 'chat_osc_invite_to_conversation',
303 'chat_osc_subs_rej_msgs',
304 'chat_osc_subs_rej_msgs_p',
305 'chat_osc_self_rej_msgs',
306 'chat_osc_search_modal_info',
307 'chat_osc_head_grp_x_persons',
309 'chat_osc_conversations',
310 'chat_osc_sure_to_leave_grp_conv',
311 'chat_osc_user_left_grp_conv',
314 'chat_osc_leave_grp_conv',
316 'chat_osc_nc_conv_x_p',
317 'chat_osc_nc_conv_x_s',
318 'chat_osc_nc_no_conv',
319 'chat_user_x_is_typing',
320 'chat_users_are_typing',
329 $page->
addJavaScript(
'./node_modules/jquery-outside-events/jquery.ba-outside-events.js');
330 $page->
addJavaScript(
'./node_modules/@andxor/jquery-ui-touch-punch-fix/jquery.ui.touch-punch.js');
331 $page->addJavascript(
'./Services/UIComponent/Modal/js/Modal.js');
332 $page->addJavascript(
'./node_modules/moment/min/moment-with-locales.min.js');
333 $page->addJavascript(
'./Services/Notifications/js/browser_notifications.js');
334 $page->addJavascript(
'./Services/OnScreenChat/js/onscreenchat-notifications.js');
335 $page->addJavascript(
'./Services/OnScreenChat/js/moment.js');
336 $page->addJavascript(
'./Modules/Chatroom/chat/node_modules/socket.io-client/dist/socket.io.js');
337 $page->addJavascript(
'./Services/OnScreenChat/js/chat.js');
338 $page->addJavascript(
'./Services/OnScreenChat/js/onscreenchat.js');
339 $page->
addOnLoadCode(
"il.Chat.setConfig(" . json_encode($chatConfig, JSON_THROW_ON_ERROR) .
");");
340 $page->
addOnLoadCode(
"il.OnScreenChat.setConfig(" . json_encode($guiConfig, JSON_THROW_ON_ERROR) .
");");
342 $page->
addOnLoadCode(
'il.OnScreenChatNotifications.init(' . json_encode([
343 'conversationIdleTimeThreshold' => max(
345 (
int) $clientSettings->get(
'conversation_idle_state_in_minutes',
'1')
347 'logLevel' => $DIC[
'ilLoggerFactory']->
getSettings()->getLevelByComponent(
'osch'),
348 ], JSON_THROW_ON_ERROR) .
');');
350 self::$frontend_initialized =
true;
static enableWebAccessWithoutSession(bool $enable_web_access_without_session)
get(string $a_keyword, ?string $a_default_value=null)
get setting
Class ilOnScreenChatUserUserAutoComplete.
const PRIVACY_MODE_RESPECT_USER_SETTING
static initLinkify(?ilGlobalTemplateInterface $a_tpl=null)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static initializeFrontend(ilGlobalTemplateInterface $page)
static img(string $a_src, ?string $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
static getEmoticons(ilChatroomServerSettings $chatSettings)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Interface ilCtrlBaseClassInterface describes ilCtrl base classes.
ILIAS HTTP Services $http
static http()
Fetches the global http state from ILIAS.
static isOnScreenChatAccessible(ilSetting $chatSettings)
static bool $frontend_initialized
static initjQueryUI(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery-UI JS-File to the global template (see included_components.txt for included components)
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.
addOnLoadCode(string $a_code, int $a_batch=2)
Add on load code.
Class ilChatroomServerSettings.
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
Class OnScreenChatProvider.
static yn2tf(string $a_yn)
getResponseWithText(string $body)