19 declare(strict_types=1);
34 private readonly \ILIAS\HTTP\GlobalHttpState
$http;
51 self::CONTACTS_VIEW_TABLE => self::CONTACTS_VIEW_TABLE,
52 self::CONTACTS_VIEW_GALLERY => self::CONTACTS_VIEW_GALLERY,
59 $this->tpl = $DIC[
'tpl'];
60 $this->
ctrl = $DIC[
'ilCtrl'];
61 $this->
lng = $DIC[
'lng'];
62 $this->tabs_gui = $DIC[
'ilTabs'];
63 $this->
help = $DIC[
'ilHelp'];
64 $this->
toolbar = $DIC[
'ilToolbar'];
65 $this->
user = $DIC[
'ilUser'];
66 $this->error = $DIC[
'ilErr'];
67 $this->rbacsystem = $DIC[
'rbacsystem'];
68 $this->
http = $DIC->http();
70 $this->ui_factory = $DIC->ui()->factory();
71 $this->ui_renderer = $DIC->ui()->renderer();
73 $this->
ctrl->saveParameter($this,
"mobj_id");
76 $this->
lng->loadLanguageModule(
'buddysystem');
83 $forward_class = $this->
ctrl->getNextClass($this) ??
'';
85 $this->umail->persistToStage($this->
user->getId(), [],
'',
'',
'',
'',
'',
false);
87 switch (strtolower($forward_class)) {
88 case strtolower(ilMailSearchCoursesGUI::class):
91 $this->
ctrl->setReturn($this,
"showContacts");
95 case strtolower(ilMailSearchGroupsGUI::class):
98 $this->
ctrl->setReturn($this,
"showContacts");
102 case strtolower(ilMailingListsGUI::class):
105 $this->
ctrl->setReturn($this,
"showContacts");
109 case strtolower(ilUsersGalleryGUI::class):
111 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
114 $this->tabs_gui->activateSubTab(
'buddy_view_gallery');
117 $this->tpl->printToStdout();
120 case strtolower(ilPublicUserProfileGUI::class):
122 $this->
http->wrapper()->query()->retrieve(
'user', $this->
refinery->kindlyTo()->int())
124 $profile_gui->setBackUrl($this->
ctrl->getLinkTarget($this,
'showContacts'));
125 $this->
ctrl->forwardCommand($profile_gui);
126 $this->tpl->printToStdout();
132 if (!($cmd = $this->
ctrl->getCmd())) {
134 $cmd =
'showContacts';
136 $this->
ctrl->redirectByClass(ilMailSearchCoursesGUI::class);
149 $galleryCmdClasses =
array_map(
'strtolower', [ilUsersGalleryGUI::class, self::class]);
150 if ($this->tabs_gui->hasTabs()) {
152 $this->tabs_gui->addSubTab(
154 $this->
lng->txt(
'my_contacts'),
155 $this->
ctrl->getLinkTarget($this)
158 if (in_array(strtolower($this->
ctrl->getCmdClass() ??
''), $galleryCmdClasses,
true)) {
159 $mode_options = array_combine(
161 fn(
string $mode):
string => $this->
lng->txt($mode),
162 array_keys($this->view_mode_options)
165 function (
string $mode):
string {
166 $this->
ctrl->setParameter($this,
'contacts_view', $mode);
167 $url = $this->
ctrl->getFormAction($this,
'changeContactsView');
168 $this->
ctrl->setParameter($this,
'contacts_view',
null);
172 array_keys($this->view_mode_options)
176 $active_mode = strtolower($this->
ctrl->getCmdClass() ??
'') === strtolower(ilUsersGalleryGUI::class)
177 ? self::CONTACTS_VIEW_GALLERY
178 : self::CONTACTS_VIEW_TABLE;
180 $sortViewControl = $this->ui_factory
182 ->mode($mode_options, $this->
lng->txt($active_mode))
183 ->withActive($this->
lng->txt($active_mode));
184 $this->
toolbar->addComponent($sortViewControl);
191 $this->tabs_gui->addSubTab(
192 'mail_my_mailing_lists',
193 $this->
lng->txt(
'mail_my_mailing_lists'),
194 $this->
ctrl->getLinkTargetByClass(ilMailingListsGUI::class)
199 $this->tabs_gui->addSubTab(
201 $this->
lng->txt(
'mail_my_courses'),
202 $this->
ctrl->getLinkTargetByClass(ilMailSearchCoursesGUI::class)
204 $this->tabs_gui->addSubTab(
206 $this->
lng->txt(
'mail_my_groups'),
207 $this->
ctrl->getLinkTargetByClass(ilMailSearchGroupsGUI::class)
209 $this->has_sub_tabs =
true;
213 $this->
help->setScreenIdComponent(
'contacts');
216 $this->tabs_gui->addTab(
218 $this->
lng->txt(
'my_contacts'),
219 $this->
ctrl->getLinkTarget($this)
222 if (in_array(strtolower($this->
ctrl->getCmdClass() ??
''), $galleryCmdClasses,
true)) {
223 $this->tabs_gui->addSubTab(
225 $this->
lng->txt(
'buddy_view_table'),
226 $this->
ctrl->getLinkTarget($this)
228 $this->tabs_gui->addSubTab(
229 'buddy_view_gallery',
230 $this->
lng->txt(
'buddy_view_gallery'),
231 $this->
ctrl->getLinkTargetByClass(ilUsersGalleryGUI::class)
239 $this->tabs_gui->addTab(
240 'mail_my_mailing_lists',
241 $this->
lng->txt(
'mail_my_mailing_lists'),
242 $this->
ctrl->getLinkTargetByClass(ilMailingListsGUI::class)
247 $this->tabs_gui->addTab(
249 $this->
lng->txt(
'mail_my_courses'),
250 $this->
ctrl->getLinkTargetByClass(ilMailSearchCoursesGUI::class)
252 $this->tabs_gui->addTab(
254 $this->
lng->txt(
'mail_my_groups'),
255 $this->
ctrl->getLinkTargetByClass(ilMailSearchGroupsGUI::class)
262 if ($this->has_sub_tabs) {
263 $this->tabs_gui->activateSubTab($a_id);
265 $this->tabs_gui->activateTab($a_id);
275 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
278 $contacts_view = $this->
http->wrapper()->query()->retrieve(
281 $this->refinery->kindlyTo()->string(),
282 $this->
refinery->always(self::CONTACTS_VIEW_TABLE)
286 switch ($contacts_view) {
287 case self::CONTACTS_VIEW_GALLERY:
288 $this->
ctrl->redirectByClass(ilUsersGalleryGUI::class);
291 case self::CONTACTS_VIEW_TABLE:
293 $this->
ctrl->redirect($this);
301 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
306 $table->resetOffset();
307 $table->writeFilterToSession();
316 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
321 $table->resetOffset();
322 $table->resetFilter();
331 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
336 $this->tabs_gui->activateSubTab(
'buddy_view_table');
339 if ($this->
http->wrapper()->query()->has(
'inv_room_ref_id') &&
340 $this->
http->wrapper()->query()->has(
'inv_usr_ids')) {
341 $inv_room_ref_id = $this->
http->wrapper()->query()->retrieve(
345 $inv_usr_ids = $this->
http->wrapper()->query()->retrieve(
348 $this->
refinery->kindlyTo()->string(),
349 $this->
refinery->custom()->transformation(fn(
string $s): array => explode(
',', $s)),
351 $this->
refinery->custom()->constraint(fn(array
$a) => $a !== [], fn() =>
'Empty array.'),
356 foreach ($inv_usr_ids as $inv_usr_id) {
358 $userlist[] = $login;
361 if ($userlist !== []) {
363 $content[] = $this->ui_factory->messageBox()->success(
364 $this->
lng->txt(
'chat_users_have_been_invited') . $this->ui_renderer->render(
365 $this->ui_factory->listing()->unordered($userlist)
368 $this->ui_factory->button()->standard($this->
lng->txt(
'goto_invitation_chat'),
$url)
375 $content[] = $this->ui_factory->legacy()->content($table->getHTML());
377 $this->tpl->setContent($this->ui_renderer->render($content));
378 $this->tpl->printToStdout();
384 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
389 $table->resetOffset();
390 $table->resetFilter();
392 $table->applyFilterValue(
394 ilBuddySystemRequestedRelationState::class .
'_p' 403 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
407 $usr_ids = $this->
http->wrapper()->post()->retrieve(
413 if ($usr_ids === []) {
414 throw new LengthException(
'mail_select_one_entry');
417 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_select_one_entry'));
423 $mail_data = $this->umail->retrieveFromStage();
424 foreach ($usr_ids as $usr_id) {
426 if (!$this->umail->existsRecipient($login, (
string) $mail_data[
'rcp_to'])) {
430 $logins = array_filter($logins);
432 if ($logins !== []) {
433 $mail_data = $this->umail->appendSearchResult($logins,
'to');
434 $this->umail->persistToStage(
435 (
int) $mail_data[
'user_id'],
436 $mail_data[
'attachments'],
437 $mail_data[
'rcp_to'],
438 $mail_data[
'rcp_cc'],
439 $mail_data[
'rcp_bcc'],
440 $mail_data[
'm_subject'],
441 $mail_data[
'm_message'],
442 $mail_data[
'use_placeholders'],
443 $mail_data[
'tpl_ctx_id'],
444 $mail_data[
'tpl_ctx_params']
448 $this->
ctrl->redirectToURL(
'ilias.php?baseClass=ilMailGUI&type=search_res');
454 $usr_ids = $this->
http->wrapper()->post()->retrieve(
'usr_ids', $this->
refinery->in()->series([
455 $this->
refinery->kindlyTo()->string(),
456 $this->
refinery->custom()->transformation(fn(
string $s) => explode(
',', $s)),
458 $this->
refinery->custom()->constraint(fn(array
$a) => $a !== [], fn() =>
'Empty array.'),
461 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_one'),
true);
462 $this->
ctrl->redirect($this);
466 $room_id = $this->
http->wrapper()->post()->retrieve(
'room_id', $this->
refinery->kindlyTo()->int());
468 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_one'));
478 $ref_id = $room->getRefIdByRoomId($room_id);
480 foreach ($usr_ids as $usr_id) {
483 $no_login[] = $usr_id;
486 $room->isUserBanned($usr_id)
488 $no_access[] = $login;
490 $valid_users[] = $usr_id;
495 $this->
asErrorMessage($no_access, $this->
lng->txt(
'chat_users_without_permission')),
500 $this->tpl->setOnScreenMessage(
'failure',
$message);
505 foreach ($valid_users as
$id) {
506 $room->sendInvitationNotification(
508 $this->
user->getId(),
514 $this->
ctrl->setParameter($this,
'inv_room_ref_id',
$ref_id);
515 $this->
ctrl->setParameter($this,
'inv_usr_ids', implode(
',', $valid_users));
517 $this->
ctrl->redirect($this);
525 $this->tabs_gui->activateSubTab(
'buddy_view_table');
528 $this->
lng->loadLanguageModule(
'chatroom');
530 $usr_ids ??= $this->
http->wrapper()->post()->retrieve(
'usr_ids', $this->
refinery->byTrying([
531 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->int()),
535 if ([] === $usr_ids) {
536 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'select_one'),
true);
537 $this->
ctrl->redirect($this);
540 $chat_rooms = (
new ilChatroom())->getAccessibleRoomIdByTitleMap($this->
user->getId());
542 $options = array_filter(
550 $this->tpl->setTitle($this->
lng->txt(
'mail_invite_users_to_chat'));
551 $this->tpl->setContent($this->
inviteToChatForm($options, $usr_ids)->getHTML());
552 $this->tpl->printToStdout();
565 fn($s) =>
'<li>' . htmlspecialchars((
string) $s) .
'</li>',
583 $form->setTitle($this->
lng->txt(
'mail_invite_users_to_chat'));
584 $form->addCommandButton(
'submitInvitation', $this->
lng->txt(
'submit'));
585 $form->addCommandButton(
'showContacts', $this->
lng->txt(
'cancel'));
586 $form->setFormAction($this->
ctrl->getFormAction($this,
'showContacts'));
590 $form->addItem($sel);
593 $hidden->setValue(implode(
',', $usr_ids));
594 $form->addItem($hidden);
final const STATE_FILTER_ELM_ID
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilUsersGalleryGUI: ilPublicUserProfileGUI ilUsersGalleryGUI: ilCourseMembershipGUI, ilGroupMembershipGUI
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
GUI class for public user profile presentation.
static http()
Fetches the global http state from ILIAS.
static checkPermissionsOfUser(int $usr_id, $permissions, int $ref_id)
Checks user permissions in question for a given user id in relation to a given ref_id.
static _getStaticLink(?int $a_ref_id, string $a_type='', bool $a_fallback_goto=true, string $append="")
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static byRoomId(int $room_id, bool $initObject=false)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static getMailObjectRefId()
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
static getInstanceByGlobalUser(?ilObjUser $user=null)
static _lookupLogin(int $a_user_id)