1 <?php declare(strict_types=1);
36 $dic->
language()->loadLanguageModule(
'chatroom');
55 return $this->
if->identifier($id);
58 if (0 === (
int) $this->dic->user()->getId() || $this->dic->user()->isAnonymous()) {
62 $chatSettings = new \ilSetting(
'chatroom');
63 $isEnabled = $chatSettings->get(
'chat_enabled') && $chatSettings->get(
'enable_osc');
70 $showAcceptMessageChange = (
71 !
\ilUtil::yn2tf($this->dic->user()->getPref(
'chat_osc_accept_msg')) &&
72 !(
bool) $this->dic->settings()->get(
'usr_settings_hide_chat_osc_accept_msg',
false) &&
73 !(bool) $this->dic->settings()->get(
'usr_settings_disable_chat_osc_accept_msg',
false)
76 $description = $this->dic->language()->txt(
'chat_osc_nc_no_conv');
77 if ($showAcceptMessageChange) {
78 $description = sprintf(
79 $this->dic->language()->txt(
'chat_osc_dont_accept_msg'),
80 $this->dic->ui()->renderer()->render(
81 $this->dic->ui()->factory()
84 $this->dic->language()->txt(
'chat_osc_dont_accept_msg_link_txt'),
85 $this->dic->ctrl()->getLinkTargetByClass(
86 [
'ilDashboardGUI',
'ilPersonalSettingsGUI',
'ilPersonalChatSettingsFormGUI'],
90 ->withOpenInNewViewport(
true)
95 $icon = $this->dic->ui()->factory()
99 $title = $this->dic->language()->txt(
'chat_osc_conversations');
101 $notificationItem = $this->dic->ui()->factory()
103 ->notification($title, $icon)
104 ->withDescription($description);
105 if ($showAcceptMessageChange) {
110 $notificationItem = $notificationItem
111 ->withAdditionalOnLoadCode(
114 il.OnScreenChat.setNotificationItemId('$id'); 121 ->standardGroup($id(
'chat_bucket_group'))
124 $factory->standard($id(
'chat_bucket'))
125 ->withNotificationItem($notificationItem)
141 string $conversationIds,
144 $conversationIds = array_filter(explode(
',', $conversationIds));
146 $icon = $this->dic->ui()->factory()
149 ->standard(
Standard::CHTA,
'conversations')->withIsOutlined(
true);
151 $title = $this->dic->language()->txt(
'chat_osc_conversations');
152 if ($withAggregates && count($conversationIds) > 0) {
153 $title = $this->dic->ui()->factory()
155 ->standard($title,
'#');
157 $notificationItem = $this->dic->ui()->factory()
159 ->notification($title, $icon)
160 ->withDescription($this->dic->language()->txt(
'chat_osc_nc_no_conv'))
163 $tsInfo = json_encode(
new \stdClass());
165 il.OnScreenChat.setConversationMessageTimes($tsInfo); 166 il.OnScreenChat.setNotificationItemId('$id'); 172 0 === count($conversationIds) ||
174 (!$this->dic->user()->getId() || $this->dic->user()->isAnonymous())
176 return [$notificationItem];
179 $conversations = $this->conversationRepo->findByIds($conversationIds);
180 if (0 === count($conversations)) {
181 return [$notificationItem];
185 array_walk($conversations,
function (
ConversationDto $conversation) use (&$allUsrIds) {
188 $allUsrData = $this->subscriberRepo->getDataByUserIds($allUsrIds);
190 $messageTimesByConversation = [];
192 $aggregatedItems = [];
193 $latestMessageTimeStamp = null;
194 foreach ($conversations as $conversation) {
195 $convUsrData = array_filter($allUsrData,
function ($key) use ($conversation) {
196 return in_array($key, $conversation->getSubscriberUsrIds());
197 }, ARRAY_FILTER_USE_KEY);
199 $convUsrNames = array_map(
function ($value) {
200 return $value[
'public_name'];
203 $name = implode(
', ', $convUsrNames);
204 $message = $conversation->getLastMessage()->getMessage();
205 $timestamp = (int) ($conversation->getLastMessage()->getCreatedTimestamp() / 1000);
208 $messageTimesByConversation[$conversation->getId()] = [
209 'ts' => $conversation->getLastMessage()->getCreatedTimestamp(),
210 'formatted' => $formattedDateTime
213 $aggregateTitle = $this->dic->ui()->factory()
219 ->withAdditionalOnLoadCode(
220 function ($id) use ($conversation) {
222 $('#$id').attr('data-onscreenchat-menu-item', ''); 223 $('#$id').attr('data-onscreenchat-conversation', '{$conversation->getId()}'); 227 $aggregatedItems[] = $this->dic->ui()->factory()
229 ->notification($aggregateTitle, $icon)
231 ->withAdditionalOnLoadCode(
232 function ($id) use ($conversation) {
234 il.OnScreenChat.addConversationToUiIdMapping('{$conversation->getId()}', '$id'); 236 $('#$id').find('.il-item-description').html( 237 il.OnScreenChat.getMessageFormatter().format( 238 $('#$id').find('.il-item-description').html() 241 $('#$id').find('button.close') 242 .attr('data-onscreenchat-menu-remove-conversation', '') 243 .attr('data-onscreenchat-conversation', '{$conversation->getId()}'); 248 $this->dic->language()->txt(
'chat_osc_nc_prop_time') => $formattedDateTime,
250 ->withCloseAction(
'#');
257 $description = sprintf($this->dic->language()->txt(
'chat_osc_nc_conv_x_p'), count($aggregatedItems));
258 if (1 === count($aggregatedItems)) {
259 $description = $this->dic->language()->txt(
'chat_osc_nc_conv_x_s');
262 $notificationItem = $notificationItem
263 ->withAggregateNotifications($aggregatedItems)
264 ->withDescription($description)
265 ->withAdditionalOnLoadCode(
266 function ($id) use ($messageTimesByConversation) {
267 $tsInfo = json_encode($messageTimesByConversation);
269 il.OnScreenChat.setConversationMessageTimes($tsInfo); 279 return [$notificationItem];
user()
Get the current user.
database()
Get interface to the Database.
Interface AbstractNotificationProvider.
Interface IdentificationInterface.
withAdditionalOnLoadCode(\Closure $binder)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false, $include_seconds=false)
Format a date public.
Customizing of pimple-DIC for ILIAS.
Class OnScreenChatNotificationProvider.
language()
Get interface to the i18n service.
Interface NotificationProvider.
foreach($mandatory_scripts as $file) $timestamp
__construct(Container $dic, ilPlugin $plugin)
static yn2tf($a_yn)
convert "y"/"n" to true/false
__construct(Container $dic, Conversation $conversationRepo=null, Subscriber $subscriberRepo=null)
OnScreenChatNotificationProvider constructor.
getAsyncItem(string $conversationIds, bool $withAggregates)