19 declare(strict_types=1);
43 public function __construct(
private $wsp_access_handler =
null,
private readonly ?
int $wsp_node_id =
null)
48 $this->tpl = $DIC[
'tpl'];
49 $this->
ctrl = $DIC[
'ilCtrl'];
50 $this->
lng = $DIC[
'lng'];
51 $this->rbacreview = $DIC[
'rbacreview'];
52 $this->object_data_cache = $DIC[
'ilObjDataCache'];
53 $this->
http = $DIC->http();
56 $this->
ctrl->saveParameter($this,
'mobj_id');
57 $this->
ctrl->saveParameter($this,
'ref');
64 if (!($cmd = $this->
ctrl->getCmd())) {
76 !$this->
http->wrapper()->query()->has(
'ref') ||
77 $this->
http->wrapper()->query()->retrieve(
'ref', $this->
refinery->kindlyTo()->string()) !==
'wsp' 83 $trafo = $this->
refinery->kindlyTo()->int();
85 $trafo = $this->
refinery->kindlyTo()->string();
89 foreach ([
'to',
'cc',
'bcc'] as $recipient_type) {
91 foreach ([
'addr',
'usr',
'grp'] as $search_type) {
92 if ($this->
http->wrapper()->post()->has(
'search_name_' . $recipient_type .
'_' . $search_type)) {
93 $recipients[] = $this->
http->wrapper()->post()->retrieve(
94 'search_name_' . $recipient_type .
'_' . $search_type,
95 $this->
refinery->kindlyTo()->listOf($trafo)
100 $recipients = array_unique(array_merge(...$recipients));
101 ilSession::set(
'mail_search_results_' . $recipient_type, $recipients);
103 if (
'to' === $recipient_type) {
104 $recipients_to = $recipients;
114 $this->
ctrl->returnToParent($this);
119 $mail_data = $this->umail->retrieveFromStage();
120 $this->umail->persistToStage(
121 (
int) $mail_data[
'user_id'],
122 $mail_data[
'attachments'],
123 $mail_data[
'rcp_to'],
124 $mail_data[
'rcp_cc'],
125 $mail_data[
'rcp_bcc'],
126 $mail_data[
'm_subject'],
127 $mail_data[
'm_message'],
128 $mail_data[
'use_placeholders'],
129 $mail_data[
'tpl_ctx_id'],
130 $mail_data[
'tpl_ctx_params']
136 $this->
ctrl->returnToParent($this);
142 if ($this->
http->wrapper()->post()->has(
'search')) {
143 $search = $this->
http->wrapper()->post()->retrieve(
'search', $this->
refinery->kindlyTo()->string());
149 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'mail_insert_query'));
150 } elseif (strlen((
string)
ilSession::get(
'mail_search_search')) < 3) {
151 $this->
lng->loadLanguageModule(
'search');
152 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'search_minimum_three'));
164 $title = $this->
lng->txt(
'search_recipients');
166 $this->
lng->loadLanguageModule(
'wsp');
167 $title = $this->
lng->txt(
'wsp_share_search_users');
171 $form->setTitle($title);
172 $form->setId(
'search_rcp');
173 $form->setFormAction($this->
ctrl->getFormAction($this,
'search'));
177 $dsDataLink = $this->
ctrl->getLinkTarget($this,
'lookupRecipientAsync',
'',
true,
false);
178 $inp->setDataSource($dsDataLink);
189 $form->addItem($inp);
191 $form->addCommandButton(
'search', $this->
lng->txt(
'search'));
192 $form->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
200 if ($this->
http->wrapper()->query()->has(
'term')) {
201 $search = $this->
http->wrapper()->query()->retrieve(
203 $this->
refinery->kindlyTo()->string()
206 if ($this->
http->wrapper()->post()->has(
'term')) {
207 $search = $this->
http->wrapper()->post()->retrieve(
209 $this->
refinery->kindlyTo()->string()
213 $search = trim($search);
219 $quoted = str_replace([
'%',
'_'], [
'\%',
'\_'], $quoted);
222 $result = $mailFormObj->getRecipientAsync(
229 $this->
http->saveResponse(
230 $this->
http->response()
231 ->withHeader(ResponseHeader::CONTENT_TYPE,
'application/json')
232 ->withBody(\
ILIAS\
Filesystem\Stream\Streams::ofString(json_encode($result, JSON_THROW_ON_ERROR)))
234 $this->
http->sendResponse();
235 $this->
http->close();
245 string $recipient_type,
250 'search_name_' . $recipient_type .
'_' . $search_type .
'[' . $index .
']',
254 $result[$index][
'id_' . $recipient_type] =
'search_name_' . $search_type .
'_' . $index;
255 $result[$index][
'txt_' . $recipient_type] = $this->
lng->txt(
'mail_' . $recipient_type);
262 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.mail_search.html',
'components/ILIAS/Contact');
263 $this->tpl->setVariable(
'ACTION', $this->
ctrl->getFormAction($this));
264 $this->tpl->setTitle($this->
lng->txt(
'mail'));
265 $this->tpl->setVariable(
'SEARCHFORM', $form->getHtml());
274 $this->tpl->printToStdout();
280 if (count($relations) > 0) {
285 $query_parser->setMinWordLength(3);
286 $query_parser->parse();
289 $user_search->enableActiveCheck(
true);
290 $user_search->setFields([
'login']);
291 $result_obj = $user_search->performSearch();
292 $contacts_search_result->mergeEntries($result_obj);
294 $user_search->setFields([
'firstname']);
295 $result_obj = $user_search->performSearch();
296 $contacts_search_result->mergeEntries($result_obj);
298 $user_search->setFields([
'lastname']);
299 $result_obj = $user_search->performSearch();
300 $contacts_search_result->mergeEntries($result_obj);
302 $contacts_search_result->setMaxHits(100000);
303 $contacts_search_result->preventOverwritingMaxhits(
true);
308 $users = array_intersect($users, $relations->getKeys());
311 $tbl_contacts->setTitle($this->
lng->txt(
'mail_addressbook'));
312 $tbl_contacts->setRowTemplate(
'tpl.mail_search_addr_row.html',
'components/ILIAS/Contact');
314 $has_mail_addr =
false;
317 foreach ($users as $user) {
321 foreach ([
'to',
'cc',
'bcc'] as $recipient_type) {
328 $result[$counter][
'login'] = $login;
330 $has_mail_addr =
true;
336 $result[$counter][
'firstname'] = $name[
'firstname'];
337 $result[$counter][
'lastname'] = $name[
'lastname'];
339 $result[$counter][
'firstname'] =
'';
340 $result[$counter][
'lastname'] =
'';
347 $tbl_contacts->addColumn(
348 $this->
lng->txt(
'mail_to') .
'/' . $this->
lng->txt(
'mail_cc') .
'/' . $this->
lng->txt(
'mail_bcc'),
353 $tbl_contacts->addColumn(
'',
'',
'1%',
true);
355 $tbl_contacts->addColumn($this->
lng->txt(
'login'),
'login',
'15%');
356 $tbl_contacts->addColumn($this->
lng->txt(
'firstname'),
'firstname',
'15%');
357 $tbl_contacts->addColumn($this->
lng->txt(
'lastname'),
'lastname',
'15%');
358 if ($has_mail_addr) {
359 foreach ($result as $key => $val) {
360 if (!isset($val[
'email']) || $val[
'email'] ===
'') {
361 $result[$key][
'email'] =
' ';
365 $tbl_contacts->addColumn($this->
lng->txt(
'email'),
'email',
"15%");
367 $tbl_contacts->setData($result);
369 $tbl_contacts->setDefaultOrderField(
'login');
370 $tbl_contacts->enable(
'select_all');
371 $tbl_contacts->setSelectAllCheckbox(
'search_name_to_addr');
372 $tbl_contacts->setFormName(
'recipients');
374 $this->tpl->setVariable(
'TABLE_ADDR', $tbl_contacts->getHTML());
381 $query_parser->setMinWordLength(3);
382 $query_parser->parse();
385 $user_search->enableActiveCheck(
true);
386 $user_search->setFields([
'login']);
387 $result_obj = $user_search->performSearch();
388 $all_results->mergeEntries($result_obj);
390 $user_search->setFields([
'firstname']);
391 $result_obj = $user_search->performSearch();
392 $all_results->mergeEntries($result_obj);
394 $user_search->setFields([
'lastname']);
395 $result_obj = $user_search->performSearch();
396 $all_results->mergeEntries($result_obj);
398 $all_results->setMaxHits(100000);
399 $all_results->preventOverwritingMaxhits(
true);
403 $has_mail_usr =
false;
407 $tbl_users->setTitle($this->
lng->txt(
'system') .
': ' . $this->
lng->txt(
'persons'));
408 $tbl_users->setRowTemplate(
'tpl.mail_search_users_row.html',
'components/ILIAS/Contact');
412 foreach ($users as $user) {
416 foreach ([
'to',
'cc',
'bcc'] as $recipient_type) {
422 $result[$counter][
'login'] = $login;
426 $result[$counter][
'firstname'] = $name[
'firstname'];
427 $result[$counter][
'lastname'] = $name[
'lastname'];
429 $result[$counter][
'firstname'] =
'';
430 $result[$counter][
'lastname'] =
'';
434 $has_mail_usr =
true;
442 $tbl_users->addColumn(
443 $this->
lng->txt(
'mail_to') .
'/' . $this->
lng->txt(
'mail_cc') .
'/' . $this->
lng->txt(
'mail_bcc'),
448 $tbl_users->addColumn(
'',
'',
'1%');
450 $tbl_users->addColumn($this->
lng->txt(
'login'),
'login',
'15%');
451 $tbl_users->addColumn($this->
lng->txt(
'firstname'),
'firstname',
'15%');
452 $tbl_users->addColumn($this->
lng->txt(
'lastname'),
'lastname',
'15%');
454 foreach ($result as $key => $val) {
455 if (!isset($val[
'email']) || $val[
'email'] ===
'') {
456 $result[$key][
'email'] =
' ';
460 $tbl_users->addColumn($this->
lng->txt(
'email'),
'email',
'15%');
462 $tbl_users->setData($result);
464 $tbl_users->setDefaultOrderField(
'login');
465 $tbl_users->enable(
'select_all');
466 $tbl_users->setSelectAllCheckbox(
'search_name_to_usr');
467 $tbl_users->setFormName(
'recipients');
469 $this->tpl->setVariable(
'TABLE_USERS', $tbl_users->getHTML());
476 $query_parser->setMinWordLength(3);
477 $query_parser->parse();
480 $search->setFilter([
'grp']);
481 $result = $search->performSearch();
482 $group_results->mergeEntries($result);
483 $group_results->setMaxHits(PHP_INT_MAX);
484 $group_results->preventOverwritingMaxhits(
true);
485 $group_results->setRequiredPermission(
'read');
488 $visible_groups = [];
489 if ($group_results->getResults()) {
491 $tbl_grp->setTitle($this->
lng->txt(
'system') .
': ' . $this->
lng->txt(
'groups'));
492 $tbl_grp->setRowTemplate(
'tpl.mail_search_groups_row.html',
'components/ILIAS/Contact');
497 $this->object_data_cache->preloadReferenceCache(array_keys($group_results->getResults()));
499 $groups = $group_results->getResults();
500 foreach ($groups as $grp) {
507 $roles = $this->rbacreview->getAssignableChildRoles($grp[
'ref_id']);
508 foreach ($roles as $role) {
510 str_starts_with($role[
'title'],
'il_grp_member_') ||
511 str_starts_with($role[
'title'],
'il_grp_admin_')
514 $members[] =
'#' . $role[
'title'];
517 $str_members = implode(
',', $members);
519 foreach ([
'to',
'cc',
'bcc'] as $recipient_type) {
525 $result[$counter][
'title'] = $this->object_data_cache->lookupTitle((
int) $grp[
'obj_id']);
526 $result[$counter][
'description'] = $this->object_data_cache->lookupDescription((
int) $grp[
'obj_id']);
529 $visible_groups[] = $grp;
532 if ($visible_groups !== []) {
533 $tbl_grp->setData($result);
537 $this->
lng->txt(
'mail_to') .
'/' . $this->
lng->txt(
'mail_cc') .
'/' . $this->
lng->txt(
'mail_bcc'),
542 $tbl_grp->addColumn(
'',
'',
'1%');
544 $tbl_grp->addColumn($this->
lng->txt(
'title'),
'title',
'15%');
545 $tbl_grp->addColumn($this->
lng->txt(
'description'),
'description',
'15%');
547 $tbl_grp->setDefaultOrderField(
'title');
548 $tbl_grp->enable(
'select_all');
549 $tbl_grp->setSelectAllCheckbox(
'search_name_to_grp');
550 $tbl_grp->setFormName(
'recipients');
552 $this->tpl->setVariable(
'TABLE_GRP', $tbl_grp->getHTML());
556 if (count($users) || count($visible_groups) || count($relations)) {
558 $this->tpl->setVariable(
"ALT_ARROW",
'');
560 $this->tpl->setVariable(
"ALT_ARROW_UP",
'');
563 $this->tpl->setVariable(
'BUTTON_ADOPT', $this->
lng->txt(
'adopt'));
565 $this->tpl->setVariable(
'BUTTON_ADOPT', $this->
lng->txt(
'wsp_share_with_users'));
568 $this->
lng->loadLanguageModule(
'search');
569 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'search_no_match'));
573 $this->tpl->printToStdout();
582 if (!is_array($a_obj_ids)) {
583 $a_obj_ids = [$a_obj_ids];
586 $added = $this->wsp_access_handler->addMissingPermissionForObjects($this->wsp_node_id, $a_obj_ids);
589 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'wsp_share_success'),
true);
static get(string $a_var)
readonly ilGlobalTemplateInterface $tpl
Interface Observer Contains several chained tasks and infos about them.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static _lookupName(int $a_user_id)
lookup user name
readonly GlobalHttpState $http
static _lookupPref(int $a_usr_id, string $a_keyword)
static _getUserSearchInstance(ilQueryParser $query_parser)
readonly Refinery $refinery
ilObjectDataCache $object_data_cache
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static strLen(string $a_string)
static http()
Fetches the global http state from ILIAS.
static _getObjectSearchInstance(ilQueryParser $query_parser)
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 hasParticipantListAccess(int $a_obj_id, ?int $a_usr_id=null)
Check if (current) user has access to the participant list.
addPermission(array $a_obj_ids)
isDefaultRequestContext()
__construct(Container $dic, ilPlugin $plugin)
appendRecipientSelection(array &$result, int $index, string $search_type, string $recipient_type, string $value)
readonly ilFormatMail $umail
static _lookupEmail(int $a_user_id)
readonly ilCtrlInterface $ctrl
static set(string $a_var, $a_val)
Set a value.
static getInstanceByGlobalUser(?ilObjUser $user=null)
static _lookupLogin(int $a_user_id)