ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilOnScreenChatGUI.php
Go to the documentation of this file.
1 <?php declare(strict_types=1);
2 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
9 
17 {
22  protected static $frontend_initialized = false;
23 
25  private $dic;
27  private $http;
29  private $ctrl;
31  private $actor;
32 
36  public function __construct()
37  {
38  global $DIC;
39 
40  $this->dic = $DIC;
41  $this->http = $DIC->http();
42  $this->ctrl = $DIC->ctrl();
43  $this->actor = $DIC->user();
44  }
45 
50  private function getResponseWithText(string $body) : ResponseInterface
51  {
52  return $this->dic->http()->response()->withBody(Streams::ofString($body));
53  }
54 
59  protected static function isOnScreenChatAccessible(ilSetting $chatSettings) : bool
60  {
61  global $DIC;
62 
63  return $chatSettings->get('chat_enabled') && $chatSettings->get('enable_osc') && $DIC->user() && !$DIC->user()->isAnonymous();
64  }
65 
70  protected static function getEmoticons(ilChatroomServerSettings $chatSettings) : array
71  {
72  $smileys = array();
73 
74  if ($chatSettings->getSmiliesEnabled()) {
75  require_once 'Modules/Chatroom/classes/class.ilChatroomSmilies.php';
76  ;
77 
78  $smileys_array = ilChatroomSmilies::_getSmilies();
79  foreach ($smileys_array as $smiley_array) {
80  $new_keys = array();
81  $new_val = '';
82  foreach ($smiley_array as $key => $value) {
83  if ($key == 'smiley_keywords') {
84  $new_keys = explode("\n", $value);
85  }
86 
87  if ($key == 'smiley_fullpath') {
88  $new_val = $value;
89  }
90  }
91 
92  if (!$new_keys || !$new_val) {
93  continue;
94  }
95 
96  foreach ($new_keys as $new_key) {
97  $smileys[$new_key] = $new_val;
98  }
99  }
100  }
101 
102  return $smileys;
103  }
104 
105  public function executeCommand() : void
106  {
107  $cmd = $this->ctrl->getCmd();
108  switch ($cmd) {
109  case 'getUserProfileData':
110  $response = $this->getUserProfileData();
111  break;
112 
113  case 'verifyLogin':
114  $response = $this->verifyLogin();
115  break;
116 
117  case 'getRenderedNotificationItems':
118  $provider = new OnScreenChatNotificationProvider(
119  $this->dic,
120  new Conversation($this->dic->database(), $this->dic->user()),
121  new Subscriber($this->dic->database(), $this->dic->user())
122  );
123 
124  $conversationIds = (string) ($this->dic->http()->request()->getQueryParams()['ids'] ?? '');
125  $noAggregates = ($this->dic->http()->request()->getQueryParams()['no_aggregates'] ?? '');
126 
128  $this->dic->ui()->renderer()->renderAsync($provider->getAsyncItem(
129  $conversationIds,
130  $noAggregates !== 'true'
131  ))
132  );
133  break;
134 
135  case 'getUserlist':
136  default:
137  $response = $this->getUserList();
138  }
139 
140  if ($this->ctrl->isAsynch()) {
141  $this->http->saveResponse($response);
142  $this->http->sendResponse();
143  exit();
144  }
145  }
146 
152  private function verifyLogin() : ResponseInterface
153  {
155 
156  return $this->getResponseWithText(json_encode([
157  'loggedIn' => $this->actor->getId() && !$this->actor->isAnonymous()
158  ]));
159  }
160 
164  private function getUserList() : ResponseInterface
165  {
166  if (!$this->actor->getId() || $this->actor->isAnonymous()) {
167  return $this->getResponseWithText(json_encode([]));
168  }
169 
171  $auto->setUser($this->actor);
173  if (isset($this->http->request()->getQueryParams()['fetchall'])) {
174  $auto->setLimit(ilUserAutoComplete::MAX_ENTRIES);
175  }
176  $auto->setMoreLinkAvailable(true);
177  $auto->setSearchFields(['firstname', 'lastname']);
178  $auto->setResultField('login');
179  $auto->enableFieldSearchableCheck(true);
180 
181  return $this->getResponseWithText($auto->getList($this->http->request()->getQueryParams()['term'] ?? ''));
182  }
183 
188  private function getUserProfileData() : ResponseInterface
189  {
190  if (!$this->actor->getId() || $this->actor->isAnonymous()) {
191  return $this->getResponseWithText(json_encode([]));
192  }
193 
194  $usrIds = (string) ($this->http->request()->getQueryParams()['usr_ids'] ?? '');
195  if (0 === strlen($usrIds)) {
196  return $this->getResponseWithText(json_encode([]));
197  }
198 
199  $this->dic->language()->loadLanguageModule('user');
200  $subscriberRepo = new Subscriber($this->dic->database(), $this->dic->user());
201  $data = $subscriberRepo->getDataByUserIds(explode(',', $usrIds));
202 
204 
205  return $this->getResponseWithText(json_encode($data));
206  }
207 
214  public static function initializeFrontend(ilGlobalTemplateInterface $page) : void
215  {
216  global $DIC;
217 
218  if (!self::$frontend_initialized) {
219  $clientSettings = new ilSetting('chatroom');
220 
221  if (!self::isOnScreenChatAccessible($clientSettings)) {
222  self::$frontend_initialized = true;
223  return;
224  }
225 
227 
228  $DIC->language()->loadLanguageModule('chatroom');
229  $DIC->language()->loadLanguageModule('user');
230 
231  $renderer = $DIC->ui()->renderer();
232  $factory = $DIC->ui()->factory();
233 
234  $chatWindowTemplate = new ilTemplate('tpl.chat-window.html', false, false, 'Services/OnScreenChat');
235  $chatWindowTemplate->setVariable('SUBMIT_ACTION', $renderer->render(
236  $factory->button()->standard($DIC->language()->txt('chat_osc_send'), 'onscreenchat-submit')
237  ));
238  $chatWindowTemplate->setVariable('ADD_ACTION', $renderer->render(
239  $factory->symbol()->glyph()->add('addUser')
240  ));
241  $chatWindowTemplate->setVariable('CLOSE_ACTION', $renderer->render(
242  $factory->button()->close()
243  ));
244  $chatWindowTemplate->setVariable('CONVERSATION_ICON', ilUtil::img(ilUtil::getImagePath('outlined/icon_pcht.svg')));
245 
246  $subscriberRepo = new Subscriber($DIC->database(), $DIC->user());
247 
248  $guiConfig = array(
249  'chatWindowTemplate' => $chatWindowTemplate->get(),
250  'messageTemplate' => (new ilTemplate(
251  'tpl.chat-message.html',
252  false,
253  false,
254  'Services/OnScreenChat'
255  ))->get(),
256  'modalTemplate' => (new ilTemplate(
257  'tpl.chat-add-user.html',
258  false,
259  false,
260  'Services/OnScreenChat'
261  ))->get(),
262  'userId' => $DIC->user()->getId(),
263  'username' => $DIC->user()->getLogin(),
264  'userListURL' => $DIC->ctrl()->getLinkTargetByClass(
265  'ilonscreenchatgui',
266  'getUserList',
267  '',
268  true,
269  false
270  ),
271  'userProfileDataURL' => $DIC->ctrl()->getLinkTargetByClass(
272  'ilonscreenchatgui',
273  'getUserProfileData',
274  '',
275  true,
276  false
277  ),
278  'verifyLoginURL' => $DIC->ctrl()->getLinkTargetByClass(
279  'ilonscreenchatgui',
280  'verifyLogin',
281  '',
282  true,
283  false
284  ),
285  'renderNotificationItemsURL' => $DIC->ctrl()->getLinkTargetByClass(
286  'ilonscreenchatgui',
287  'getRenderedNotificationItems',
288  '',
289  true,
290  false
291  ),
292  'loaderImg' => ilUtil::getImagePath('loader.svg'),
293  'emoticons' => self::getEmoticons($settings),
294  'locale' => $DIC->language()->getLangKey(),
295  'initialUserData' => $subscriberRepo->getInitialUserProfileData(),
296  'enabledBrowserNotifications' => (
297  $clientSettings->get('enable_browser_notifications', false) &&
298  (bool) ilUtil::yn2tf($DIC->user()->getPref('chat_osc_browser_notifications'))
299  ),
300  'notificationIconPath' => \ilUtil::getImagePath('icon_chta.png'),
301  );
302 
303  $chatConfig = array(
304  'url' => $settings->generateClientUrl() . '/' . $settings->getInstance() . '-im',
305  'subDirectory' => $settings->getSubDirectory() . '/socket.io',
306  'userId' => $DIC->user()->getId(),
307  'username' => $DIC->user()->getLogin(),
308  );
309 
310  $DIC->language()->toJS([
311  'chat_osc_no_usr_found',
312  'chat_osc_emoticons',
313  'chat_osc_write_a_msg',
314  'autocomplete_more',
315  'close',
316  'chat_osc_invite_to_conversation',
317  'chat_osc_user',
318  'chat_osc_add_user',
319  'chat_osc_subs_rej_msgs',
320  'chat_osc_subs_rej_msgs_p',
321  'chat_osc_self_rej_msgs',
322  'chat_osc_search_modal_info',
323  'chat_osc_head_grp_x_persons',
324  'osc_noti_title',
325  'chat_osc_conversations',
326  'chat_osc_sure_to_leave_grp_conv',
327  'chat_osc_user_left_grp_conv',
328  'confirm',
329  'cancel',
330  'chat_osc_leave_grp_conv',
331  'chat_osc_no_conv',
332  'chat_osc_nc_conv_x_p',
333  'chat_osc_nc_conv_x_s',
334  'chat_osc_nc_no_conv',
335  'today',
336  'yesterday',
337  ], $page);
338 
342 
343  $page->addJavaScript('./node_modules/jquery-outside-events/jquery.ba-outside-events.js');
344  $page->addJavaScript('./node_modules/@andxor/jquery-ui-touch-punch-fix/jquery.ui.touch-punch.js');
345  $page->addJavascript('./Services/UIComponent/Modal/js/Modal.js');
346  $page->addJavascript('./node_modules/moment/min/moment-with-locales.min.js');
347  $page->addJavascript('./Services/Notifications/js/browser_notifications.js');
348  $page->addJavascript('./Services/OnScreenChat/js/onscreenchat-notifications.js');
349  $page->addJavascript('./Services/OnScreenChat/js/moment.js');
350  $page->addJavascript('./Modules/Chatroom/chat/node_modules/socket.io-client/dist/socket.io.js');
351  $page->addJavascript('./Services/OnScreenChat/js/chat.js');
352  $page->addJavascript('./Services/OnScreenChat/js/onscreenchat.js');
353  $page->addOnLoadCode("il.Chat.setConfig(" . json_encode($chatConfig) . ");");
354  $page->addOnLoadCode("il.OnScreenChat.setConfig(" . json_encode($guiConfig) . ");");
355  $page->addOnLoadCode("il.OnScreenChat.init();");
356  $page->addOnLoadCode('il.OnScreenChatNotifications.init(' . json_encode([
357  'conversationIdleTimeThreshold' => max(
358  1,
359  (int) $clientSettings->get('conversation_idle_state_in_minutes', 1)
360  ),
361  'logLevel' => $DIC['ilLoggerFactory']->getSettings()->getLevelByComponent('osch'),
362  ]) . ');');
363 
364  self::$frontend_initialized = true;
365  }
366  }
367 }
static enableWebAccessWithoutSession($enable_web_access_without_session)
exit
Definition: login.php:29
Class ilOnScreenChatUserUserAutoComplete.
$data
Definition: storeScorm.php:23
__construct()
ilOnScreenChatGUI constructor.
addOnLoadCode($a_code, $a_batch=2)
Add on load code.
static initializeFrontend(ilGlobalTemplateInterface $page)
Initialize frontend and delivers required javascript files and configuration to the global template...
static getEmoticons(ilChatroomServerSettings $chatSettings)
Class ilOnScreenChatGUI.
addJavaScript($a_js_file, $a_add_version_parameter=true, $a_batch=2)
Add a javascript file that should be included in the header.
static http()
Fetches the global http state from ILIAS.
static isOnScreenChatAccessible(ilSetting $chatSettings)
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
global $DIC
Definition: goto.php:24
static img($a_src, $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
get($a_keyword, $a_default_value=false)
get setting
static initjQueryUI($a_tpl=null)
inits and adds the jQuery-UI JS-File to the global template (see included_components.txt for included components)
Class ilChatroomServerSettings.
static initjQuery(ilGlobalTemplateInterface $a_tpl=null)
inits and adds the jQuery JS-File to the global or a passed template
verifyLogin()
Checks if a user is logged in.
Exercise XML Parser which completes/updates a given file by an xml string.
getResponseWithText(string $body)
static yn2tf($a_yn)
convert "y"/"n" to true/false
$response
static initLinkify($a_tpl=null)
Init Linkify.
$factory
Definition: metadata.php:58