19 declare(strict_types=1);
36 $this->gui->switchToVisibleMode();
56 $username = $chat_user->{
63 if (!$failure && trim($username) !==
'') {
64 if (!$room->isSubscribed($chat_user->getUserId())) {
65 $chat_user->setUsername($chat_user->buildUniqueUsername($username));
70 $this->mainTpl->setOnScreenMessage(
'failure', $this->ilLng->txt(
'no_username_given'));
80 $this->mainTpl->addJavaScript(
'Modules/Chatroom/js/chat.js');
81 $this->mainTpl->addJavaScript(
'Modules/Chatroom/js/iliaschat.jquery.js');
82 $this->mainTpl->addJavaScript(
'node_modules/jquery-outside-events/jquery.ba-outside-events.js');
83 $this->mainTpl->addJavaScript(
'./Services/UIComponent/AdvancedSelectionList/js/AdvancedSelectionList.js');
85 $this->mainTpl->addCss(
'Modules/Chatroom/templates/default/style.css');
87 $this->mainTpl->setPermanentLink($this->gui->getObject()->getType(), $this->gui->getObject()->getRefId());
102 $this->navigationHistory->addItem(
104 $this->
ilCtrl->getLinkTargetByClass(ilRepositoryGUI::class,
'view'),
109 $this->
cancelJoin($this->ilLng->txt(
'banned'));
114 $connector = $this->gui->getConnector();
118 $this->mainTpl->setOnScreenMessage(
'failure', $this->ilLng->txt(
'unable_to_connect'),
true);
119 $this->
ilCtrl->redirectByClass(ilInfoScreenGUI::class,
'info');
127 $response = $connector->sendEnterPrivateRoom(
$scope, $subScope, $user_id);
129 $this->mainTpl->setOnScreenMessage(
'failure', $this->ilLng->txt(
'unable_to_connect'),
true);
130 $this->
ilCtrl->redirectByClass(
'ilinfoscreengui',
'info');
138 $initial->private_rooms = array_values($known_private_room);
139 $initial->redirect_url = $this->
ilCtrl->getLinkTarget($this->gui,
'view-lostConnection',
'',
false);
140 $initial->profile_image_url = $this->
ilCtrl->getLinkTarget($this->gui,
'view-getUserProfileImages',
'',
true);
142 $initial->private_rooms_enabled = (bool) $room->
getSetting(
'private_rooms_enabled');
143 $initial->subdirectory =
$settings->getSubDirectory();
145 $initial->userinfo = [
155 $smileys_array = ilChatroomSmilies::_getSmilies();
156 foreach ($smileys_array as $smiley_array) {
159 foreach ($smiley_array as
$key => $value) {
160 if (
$key ===
'smiley_keywords') {
161 $new_keys = explode(
"\n", $value);
164 if (
$key ===
'smiley_fullpath') {
169 if (!$new_keys || !$new_val) {
173 foreach ($new_keys as $new_key) {
174 $smileys[$new_key] = $new_val;
178 $initial->smileys = $smileys;
180 $initial->smileys =
'{}';
183 $initial->messages = [];
191 if ($known_private_room[$sub]) {
193 $initial->messages[] = [
195 'message' => $this->ilLng->txt(
'not_allowed_to_enter'),
203 $params[
'message'] = json_encode([
204 'type' =>
'private_room_entered',
206 ], JSON_THROW_ON_ERROR);
208 $connector = $this->gui->getConnector();
215 $initial->enter_room = $sub;
218 $initial->messages[] = [
220 'message' => $this->ilLng->txt(
'user_invited'),
225 if ((
int) $room->
getSetting(
'display_past_msgs')) {
226 $initial->messages = array_merge(
232 $roomTpl =
new ilTemplate(
'tpl.chatroom.html',
true,
true,
'Modules/Chatroom');
233 $roomTpl->setVariable(
'BASEURL',
$settings->generateClientUrl());
234 $roomTpl->setVariable(
'INSTANCE',
$settings->getInstance());
235 $roomTpl->setVariable(
'SCOPE',
$scope);
236 $roomTpl->setVariable(
'POSTURL', $this->
ilCtrl->getLinkTarget($this->gui,
'postMessage',
'',
true));
238 $roomTpl->setVariable(
'ACTIONS', $this->ilLng->txt(
'actions'));
239 $roomTpl->setVariable(
'LBL_CREATE_PRIVATE_ROOM', $this->ilLng->txt(
'create_private_room_label'));
240 $roomTpl->setVariable(
'LBL_USER', $this->ilLng->txt(
'user'));
241 $roomTpl->setVariable(
'LBL_USER_TEXT', $this->ilLng->txt(
'invite_username'));
242 $showAutoMessages =
true;
243 if ($this->ilUser->getPref(
'chat_hide_automsg_' . $room->
getRoomId())) {
244 $showAutoMessages =
false;
247 $roomTpl->setVariable(
248 'TOGGLE_SCROLLING_COMPONENT',
249 $this->uiRenderer->render(
250 $this->uiFactory->button()->toggle(
251 $this->ilLng->txt(
'auto_scroll'),
256 ->withAriaLabel($this->ilLng->txt(
'auto_scroll'))
260 .on("click", function(e) { 261 let t = $(this), msg = $("#chat_messages"); 262 if (t.hasClass("on")) { 263 msg.trigger("msg-scrolling:toggle", [true]); 265 msg.trigger("msg-scrolling:toggle", [false]); 273 $toggleUrl = $this->
ilCtrl->getFormAction($this->gui,
'view-toggleAutoMessageDisplayState',
'',
true,
false);
274 $roomTpl->setVariable(
275 'TOGGLE_AUTO_MESSAGE_COMPONENT',
276 $this->uiRenderer->render(
277 $this->uiFactory->button()->toggle(
278 $this->ilLng->txt(
'chat_show_auto_messages'),
283 ->withAriaLabel($this->ilLng->txt(
'chat_show_auto_messages'))
284 ->
withOnLoadCode(
static function (
string $id) use ($toggleUrl):
string {
287 .on("click", function(e) { 288 let t = $(this), msg = $("#chat_messages"); 289 if (t.hasClass("on")) { 290 msg.trigger("auto-message:toggle", [true, "' . $toggleUrl .
'"]); 292 msg.trigger("auto-message:toggle", [false, "' . $toggleUrl .
'"]); 301 $initial->state->scrolling =
true;
302 $initial->state->show_auto_msg = $showAutoMessages;
304 $roomTpl->setVariable(
'INITIAL_DATA', json_encode($initial, JSON_THROW_ON_ERROR));
305 $roomTpl->setVariable(
'INITIAL_USERS', json_encode($room->
getConnectedUsers(), JSON_THROW_ON_ERROR));
312 $roomRightTpl =
new ilTemplate(
'tpl.chatroom_right.html',
true,
true,
'Modules/Chatroom');
316 $right_content_panel->setHeading($this->ilLng->txt(
'users'));
319 $right_content_panel->setBody($roomRightTpl->get());
321 $this->mainTpl->setContent($roomTpl->get());
322 $this->mainTpl->setRightContent($right_content_panel->getHTML());
332 if ($this->
http->wrapper()->post()->has(
'state')) {
333 $state = $this->
http->wrapper()->post()->retrieve(
'state', $this->
refinery->kindlyTo()->int());
337 $this->ilUser->getId(),
338 'chat_hide_automsg_' . $room->getRoomId(),
339 (string) ((
int) (!(bool) $state))
342 $this->
http->saveResponse(
343 $this->
http->response()
344 ->withHeader(ResponseHeader::CONTENT_TYPE,
'application/json')
345 ->withBody(Streams::ofString(json_encode([
'success' =>
true], JSON_THROW_ON_ERROR)))
347 $this->
http->sendResponse();
348 $this->
http->close();
357 $this->mainTpl->setOnScreenMessage(
'failure', $message);
362 $roomTpl->
setVariable(
'LBL_MESSAGE', $this->ilLng->txt(
'chat_message'));
363 $roomTpl->
setVariable(
'LBL_TOALL', $this->ilLng->txt(
'chat_message_to_all'));
364 $roomTpl->
setVariable(
'LBL_OPTIONS', $this->ilLng->txt(
'chat_message_options'));
365 $roomTpl->
setVariable(
'LBL_DISPLAY', $this->ilLng->txt(
'chat_message_display'));
366 $roomTpl->
setVariable(
'LBL_SEND', $this->ilLng->txt(
'send'));
372 'LBL_MAINROOM' =>
'chat_mainroom',
373 'LBL_LEAVE_PRIVATE_ROOM' =>
'leave_private_room',
374 'LBL_LEFT_PRIVATE_ROOM' =>
'left_private_room',
375 'LBL_JOIN' =>
'chat_join',
376 'LBL_DELETE_PRIVATE_ROOM' =>
'delete_private_room',
377 'LBL_DELETE_PRIVATE_ROOM_QUESTION' =>
'delete_private_room_question',
378 'LBL_INVITE_TO_PRIVATE_ROOM' =>
'invite_to_private_room',
379 'LBL_KICK' =>
'chat_kick',
380 'LBL_BAN' =>
'chat_ban',
381 'LBL_KICK_QUESTION' =>
'kick_question',
382 'LBL_BAN_QUESTION' =>
'ban_question',
383 'LBL_ADDRESS' =>
'chat_address',
384 'LBL_WHISPER' =>
'chat_whisper',
385 'LBL_CONNECT' =>
'chat_connection_established',
386 'LBL_DISCONNECT' =>
'chat_connection_disconnected',
387 'LBL_TO_MAINROOM' =>
'chat_to_mainroom',
388 'LBL_CREATE_PRIVATE_ROOM_JS' =>
'chat_create_private_room_button',
389 'LBL_WELCOME_TO_CHAT' =>
'welcome_to_chat',
390 'LBL_USER_INVITED' =>
'user_invited',
391 'LBL_USER_KICKED' =>
'user_kicked',
392 'LBL_USER_INVITED_SELF' =>
'user_invited_self',
393 'LBL_PRIVATE_ROOM_CLOSED' =>
'private_room_closed',
394 'LBL_PRIVATE_ROOM_ENTERED' =>
'private_room_entered',
395 'LBL_PRIVATE_ROOM_LEFT' =>
'private_room_left',
396 'LBL_PRIVATE_ROOM_ENTERED_USER' =>
'private_room_entered_user',
397 'LBL_KICKED_FROM_PRIVATE_ROOM' =>
'kicked_from_private_room',
399 'LBL_INVITE' =>
'chat_invite',
400 'LBL_CANCEL' =>
'cancel',
401 'LBL_WHISPER_TO' =>
'whisper_to',
402 'LBL_SPEAK_TO' =>
'speak_to',
403 'LBL_HISTORY_CLEARED' =>
'history_cleared',
404 'LBL_CLEAR_ROOM_HISTORY' =>
'clear_room_history',
405 'LBL_CLEAR_ROOM_HISTORY_QUESTION' =>
'clear_room_history_question',
406 'LBL_END_WHISPER' =>
'end_whisper',
407 'LBL_TIMEFORMAT' =>
'lang_timeformat_no_sec',
408 'LBL_DATEFORMAT' =>
'lang_dateformat' 410 foreach ($js_translations as $placeholder => $lng_variable) {
411 $roomTpl->
setVariable($placeholder, json_encode($this->ilLng->txt($lng_variable), JSON_THROW_ON_ERROR));
413 $this->ilLng->toJSMap([
414 'chat_user_x_is_typing' => $this->ilLng->txt(
'chat_user_x_is_typing'),
415 'chat_users_are_typing' => $this->ilLng->txt(
'chat_users_are_typing'),
418 $roomTpl->
setVariable(
'LBL_CREATE_PRIVATE_ROOM', $this->ilLng->txt(
'chat_create_private_room_button'));
419 $roomTpl->
setVariable(
'LBL_CREATE_PRIVATE_ROOM_TEXT', $this->ilLng->txt(
'create_private_room_text'));
420 $roomTpl->
setVariable(
'LBL_LAYOUT', $this->ilLng->txt(
'layout'));
421 $roomTpl->
setVariable(
'LBL_SHOW_SETTINGS', $this->ilLng->txt(
'show_settings'));
422 $roomTpl->
setVariable(
'LBL_USER_IN_ROOM', $this->ilLng->txt(
'user_in_room'));
423 $roomTpl->
setVariable(
'LBL_USER_IN_ILIAS', $this->ilLng->txt(
'user_in_ilias'));
428 $roomTpl->
setVariable(
'LBL_NO_FURTHER_USERS', $this->ilLng->txt(
'no_further_users'));
435 $selectionForm = $formFactory->getUserChatNameSelectionForm($name_options);
437 $this->
ilCtrl->saveParameter($this->gui,
'sub');
439 $selectionForm->addCommandButton(
'view-joinWithCustomName', $this->ilLng->txt(
'enter'));
440 $selectionForm->setFormAction(
441 $this->
ilCtrl->getFormAction($this->gui,
'view-joinWithCustomName')
444 $this->mainTpl->setVariable(
'ADM_CONTENT', $selectionForm->getHTML());
457 $this->gui->switchToVisibleMode();
460 $chatSettings =
new ilSetting(
'chatroom');
461 if (!$chatSettings->get(
'chat_enabled',
'0')) {
462 $this->
ilCtrl->redirect($this->gui,
'settings-general');
467 if (!$room->getSetting(
'allow_anonymous') && $this->ilUser->isAnonymous()) {
468 $this->
cancelJoin($this->ilLng->txt(
'chat_anonymous_not_allowed'));
474 if ($room->getSetting(
'allow_custom_usernames')) {
475 if ($room->isSubscribed($chat_user->getUserId())) {
476 $chat_user->setUsername($chat_user->getUsername());
482 $chat_user->setUsername($this->ilUser->getLogin());
489 $chatSettings =
new ilSetting(
'chatroom');
490 if (!$chatSettings->get(
'chat_enabled',
'0')) {
491 $this->
ilCtrl->redirect($this->gui,
'settings-general');
499 $connector = $this->gui->getConnector();
500 $title = $room->getUniquePrivateRoomTitle($chat_user->buildLogin());
501 $subRoomId = $room->addPrivateRoom($title, $chat_user, [
'public' =>
false]);
503 $room->inviteUserToPrivateRoom($user_id, $subRoomId);
504 $connector->sendCreatePrivateRoom($room->getRoomId(), $subRoomId, $chat_user->getUserId(), $title);
505 $connector->sendInviteToPrivateRoom($room->getRoomId(), $subRoomId, $chat_user->getUserId(), $user_id);
507 $room->sendInvitationNotification($this->gui, $chat_user, $user_id, $subRoomId);
511 $this->
ilCtrl->setParameter($this->gui,
'sub', $subRoomId);
512 $this->
ilCtrl->redirect($this->gui,
'view');
517 $pid = $this->tree->getParentId($this->gui->getRefId());
518 $this->
ilCtrl->setParameterByClass(ilRepositoryGUI::class,
'ref_id', $pid);
519 $this->
ilCtrl->redirectByClass(ilRepositoryGUI::class);
524 if ($this->
http->wrapper()->query()->has(
'msg')) {
525 switch ($this->
http->wrapper()->query()->retrieve(
'msg', $this->
refinery->kindlyTo()->string())) {
527 $this->mainTpl->setOnScreenMessage(
'failure', $this->ilLng->txt(
'kicked'),
true);
531 $this->mainTpl->setOnScreenMessage(
'failure', $this->ilLng->txt(
'banned'),
true);
535 $this->mainTpl->setOnScreenMessage(
'failure', $this->ilLng->txt(
'lost_connection'),
true);
539 $this->mainTpl->setOnScreenMessage(
'failure', $this->ilLng->txt(
'lost_connection'),
true);
542 $this->
ilCtrl->redirectByClass(ilInfoScreenGUI::class,
'info');
545 public function getUserProfileImages():
void 555 if (null === $usr_ids ||
'' === $usr_ids) {
559 $this->ilLng->loadLanguageModule(
'user');
563 $user_ids = array_filter(array_map(
'intval', array_map(
'trim', explode(
',', $usr_ids))));
567 $chatRoomUserDetailsByUsrId = array_combine(
569 static function (
stdClass $userData):
int {
570 return (
int) $userData->id;
580 foreach ($user_ids as $usr_id) {
581 if (!array_key_exists($usr_id, $chatRoomUserDetailsByUsrId)) {
585 if ($room->getSetting(
'allow_custom_usernames')) {
587 $avatar = $DIC[
"user.avatar.factory"]->avatar(
'xsmall');
591 $public_name = $chatRoomUserDetailsByUsrId[$usr_id]->login;
592 $public_image = $avatar->getUrl();
594 $public_image = $public_data[$usr_id][
'img'] ??
'';
596 if (isset($public_names[$usr_id])) {
597 $public_name = $public_names[$usr_id];
598 if (isset($public_data[$usr_id][
'login']) &&
'unknown' === $public_name) {
599 $public_name = $public_data[$usr_id][
'login'];
605 'public_name' => $public_name,
606 'profile_image' => $public_image,
static checkUserPermissions($permissions, int $ref_id, bool $send_info=true)
Checks user permissions by given array and ref_id.
getUserId()
Returns Ilias User ID.
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link="", bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
renderLanguageVariables(ilTemplate $roomTpl)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
redirectIfNoPermission($permission)
Checks for requested permissions and redirects if the permission check failed.
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static initJS(ilGlobalTemplateInterface $a_main_tpl=null)
getRequestValue(string $key, Transformation $trafo, $default=null)
getLastMessages(int $number, ilChatroomUser $chatuser)
renderSendMessageBox(ilTemplate $roomTpl)
static subStr(string $a_str, int $a_start, ?int $a_length=null)
getConnectedUsers(bool $only_data=true)
static getUserInformation(array $usrIds, ?int $roomId=null)
static setTokenMaxLifetimeInSeconds(int $token_max_lifetime_in_seconds)
withOnLoadCode(Closure $binder)
cancelJoin(string $message)
Calls ilUtil::sendFailure method using given $message as parameter.
static http()
Fetches the global http state from ILIAS.
setVariable($variable, $value='')
Sets a variable value.
hasRequestValue(string $key)
Class ilChatroomGUIHandler.
setupTemplate()
Adds CSS and JavaScript files that should be included in the header.
isSubscribed(int $chat_userid)
isUserBanned(int $user_id)
showRoom(ilChatroom $room, ilChatroomUser $chat_user)
Prepares and displays chatroom and connects user to it.
isSuccessful($response)
Checks for success param in an json decoded response.
connectUser(ilChatroomUser $user)
isAllowedToEnterPrivateRoom(int $chat_userid, int $proom_id)
getChatNameSuggestions()
Returns an array of chat-name suggestions.
executeDefault(string $requestedMethod)
Chatroom and Chatuser get prepared before $this->showRoom method is called.
sendResponse($response, bool $isJson=false)
Sends a json encoded response and exits the php process.
static byObjectId(int $object_id)
showNameSelection(ilChatroomUser $chat_user)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static _writePref(int $a_usr_id, string $a_keyword, string $a_value)
const PANEL_STYLE_SECONDARY
getUsername()
Returns username from Object or SESSION.
const HEADING_STYLE_BLOCK
subscribeUserToPrivateRoom(int $room_id, int $user_id)
renderRightUsersBlock(ilTemplate $roomTpl)
static set(string $a_var, $a_val)
Set a value.
getActivePrivateRooms(int $userid)
toggleAutoMessageDisplayState()