5 require_once
'./Services/User/classes/class.ilObjUser.php';
6 require_once
'Services/Mail/classes/class.ilMailbox.php';
7 require_once
'Services/Mail/classes/class.ilFormatMail.php';
8 require_once
'Services/Contact/BuddySystem/classes/class.ilBuddySystem.php';
75 public function __construct($wsp_access_handler = null, $wsp_node_id = null)
79 $this->tpl = $DIC[
'tpl'];
80 $this->ctrl = $DIC[
'ilCtrl'];
81 $this->lng = $DIC[
'lng'];
82 $this->
user = $DIC[
'ilUser'];
83 $this->error = $DIC[
'ilErr'];
84 $this->rbacsystem = $DIC[
'rbacsystem'];
85 $this->rbacreview = $DIC[
'rbacreview'];
86 $this->tree = $DIC[
'tree'];
87 $this->cache = $DIC[
'ilObjDataCache'];
88 $this->refinery = $DIC->refinery();
91 $this->wsp_access_handler = $wsp_access_handler;
92 $this->wsp_node_id = $wsp_node_id;
94 $this->ctrl->saveParameter($this,
"mobj_id");
95 $this->ctrl->saveParameter($this,
"ref");
97 include_once
"Services/Mail/classes/class.ilMail.php";
99 $this->mailing_allowed = $this->rbacsystem->checkAccess(
'internal_mail', $mail->getMailObjectReferenceId());
107 if (isset(
$_GET[
'ref'])) {
109 $context = $this->refinery->byTrying([
110 $this->refinery->kindlyTo()->string(),
111 $this->refinery->custom()->transformation(
static function ($value) use ($always) {
114 ])->transform(
$_GET[
'ref']);
122 $forward_class = $this->ctrl->getNextClass($this);
123 switch ($forward_class) {
124 case 'ilbuddysystemgui':
126 $this->error->raiseError($this->lng->txt(
'msg_no_perm_read'), $this->error->MESSAGE);
129 require_once
'Services/Contact/BuddySystem/classes/class.ilBuddySystemGUI.php';
130 $this->ctrl->saveParameter($this,
'search_grp');
131 $this->ctrl->setReturn($this,
'showMembers');
136 if (!($cmd = $this->ctrl->getCmd())) {
137 $cmd =
"showMyGroups";
148 if (
$_GET[
"view"] ==
"mygroups") {
149 $ids = ((int)
$_GET[
'search_grp']) ? array((
int)
$_GET[
'search_grp']) :
$_POST[
'search_grp'];
154 $this->showMyGroups();
156 } elseif (
$_GET[
"view"] ==
"grp_members") {
157 $ids = ((int)
$_GET[
'search_members']) ? array((
int)
$_GET[
'search_members']) :
$_POST[
'search_members'];
165 $this->showMyGroups();
173 if (!is_array($old_mail_data = $this->umail->getSavedData())) {
174 $this->umail->savePostData(
175 $this->
user->getId(),
188 require_once
'./Services/Object/classes/class.ilObject.php';
189 require_once
'Services/Mail/classes/Address/Type/class.ilMailRoleAddressType.php';
191 $ids = ((int)
$_GET[
'search_grp']) ? array((
int)
$_GET[
'search_grp']) :
$_POST[
'search_grp'];
192 foreach ($ids as $grp_id) {
194 foreach ($ref_ids as $ref_id) {
197 $this->
user->getId(),
200 if (!$can_send_mails) {
204 $roles = $this->rbacreview->getAssignableChildRoles($ref_id);
205 foreach ($roles as $role) {
206 if (substr($role[
'title'], 0, 14) ==
'il_grp_member_' ||
207 substr($role[
'title'], 0, 13) ==
'il_grp_admin_') {
208 if (isset($old_mail_data[
'rcp_to']) &&
209 trim($old_mail_data[
'rcp_to']) !=
'') {
210 $rcpt = (new \ilRoleMailboxAddress($role[
'obj_id']))->value();
211 if (!$this->umail->existsRecipient($rcpt, (
string) $old_mail_data[
'rcp_to'])) {
212 array_push($members, $rcpt);
222 if (count($members)) {
223 $mail_data = $this->umail->appendSearchResult($members,
'to');
225 $mail_data = $this->umail->getSavedData();
228 $this->umail->savePostData(
229 $mail_data[
"user_id"],
230 $mail_data[
"attachments"],
231 $mail_data[
"rcp_to"],
232 $mail_data[
"rcp_cc"],
233 $mail_data[
"rcp_bcc"],
234 $mail_data[
"m_email"],
235 $mail_data[
"m_subject"],
236 $mail_data[
"m_message"],
237 $mail_data[
"use_placeholders"],
238 $mail_data[
'tpl_ctx_id'],
239 $mail_data[
'tpl_ctx_params']
249 if (!is_array($this->umail->getSavedData())) {
250 $this->umail->savePostData(
251 $this->
user->getId(),
264 $ids = ((int)
$_GET[
'search_members']) ? array((
int)
$_GET[
'search_members']) :
$_POST[
'search_members'];
266 foreach ($ids as $member) {
268 array_push($members,
$login);
270 $mail_data = $this->umail->appendSearchResult($members,
"to");
272 $this->umail->savePostData(
273 $mail_data[
"user_id"],
274 $mail_data[
"attachments"],
275 $mail_data[
"rcp_to"],
276 $mail_data[
"rcp_cc"],
277 $mail_data[
"rcp_bcc"],
278 $mail_data[
"m_email"],
279 $mail_data[
"m_subject"],
280 $mail_data[
"m_message"],
281 $mail_data[
"use_placeholders"],
282 $mail_data[
'tpl_ctx_id'],
283 $mail_data[
'tpl_ctx_params']
294 if (
$_GET[
"view"] ==
"mygroups" &&
295 $_GET[
"ref"] ==
"mail") {
296 $this->ctrl->returnToParent($this);
298 $this->showMyGroups();
305 public function showMyGroups()
307 include_once
'Modules/Group/classes/class.ilGroupParticipants.php';
309 $this->tpl->setTitle($this->lng->txt(
'mail_addressbook'));
311 $searchTpl =
new ilTemplate(
'tpl.mail_search_template.html',
true,
true,
'Services/Contact');
313 $_GET[
'view'] =
'mygroups';
315 $this->lng->loadLanguageModule(
'crs');
317 $this->ctrl->setParameter($this,
'view',
'mygroups');
319 include_once
'Services/Contact/classes/class.ilMailSearchCoursesTableGUI.php';
321 $table->setId(
'search_grps_tbl');
325 $tableData = array();
326 if (is_array($grp_ids) &&
327 count($grp_ids) > 0) {
328 $num_groups_hidden_members = 0;
329 include_once(
"./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php");
330 foreach ($grp_ids as $grp_id) {
337 $showMemberListEnabled = (boolean) $oTmpGrp->getShowMembers();
339 $isPrivilegedUser = $this->rbacsystem->checkAccess(
'write', $ref_ids[0]);
340 $oTmpGrp->setRefId($ref_ids[0]);
344 $this->
user->getId(),
348 if ($hasUntrashedReferences && ($showMemberListEnabled || $can_send_mails || $isPrivilegedUser)) {
350 $grp_members = $oGroupParticipants->getParticipants();
352 foreach ($grp_members as $key => $member) {
355 unset($grp_members[$key]);
359 $hiddenMembers =
false;
360 if ((
int) $oTmpGrp->getShowMembers() == $oTmpGrp->SHOW_MEMBERS_DISABLED) {
361 ++$num_groups_hidden_members;
362 $hiddenMembers =
true;
367 $ref_id = current($ref_ids);
368 $path_arr = $this->tree->getPathFull($ref_id, $this->tree->getRootId());
371 foreach ($path_arr as
$data) {
372 if ($path_counter++) {
375 $path .= $data[
'title'];
377 $path = $this->lng->txt(
'path') .
': ' . $path;
380 $current_selection_list->setListTitle($this->lng->txt(
"actions"));
381 $current_selection_list->setId(
"act_" . $counter);
383 $this->ctrl->setParameter($this,
'search_grp', $grp_id);
384 $this->ctrl->setParameter($this,
'view',
'mygroups');
387 if ($this->mailing_allowed && $can_send_mails) {
388 $current_selection_list->addItem($this->lng->txt(
"mail_members"),
'', $this->ctrl->getLinkTarget($this,
"mail"));
391 $current_selection_list->addItem($this->lng->txt(
"wsp_share_with_members"),
'', $this->ctrl->getLinkTarget($this,
"share"));
393 $current_selection_list->addItem($this->lng->txt(
"mail_list_members"),
'', $this->ctrl->getLinkTarget($this,
"showMembers"));
395 $this->ctrl->clearParameters($this);
399 'CRS_NAME' => $this->cache->lookupTitle($grp_id),
400 'CRS_NO_MEMBERS' => count($grp_members),
402 'COMMAND_SELECTION_LIST' => $current_selection_list->getHTML(),
403 "hidden_members" => $hiddenMembers,
404 "can_send_mails" => $can_send_mails,
407 $tableData[] = $rowData;
410 if ($num_groups_hidden_members > 0) {
411 $searchTpl->setCurrentBlock(
'caption_block');
412 $searchTpl->setVariable(
'TXT_LIST_MEMBERS_NOT_AVAILABLE', $this->lng->txt(
'mail_crs_list_members_not_available'));
413 $searchTpl->parseCurrentBlock();
416 $table->setData($tableData);
418 $this->tpl->setVariable(
'TXT_MARKED_ENTRIES', $this->lng->txt(
'marked_entries'));
421 $searchTpl->setVariable(
'TABLE', $table->getHTML());
422 $this->tpl->setContent($searchTpl->get());
424 if (
$_GET[
"ref"] !=
"wsp") {
425 $this->tpl->printToStdout();
434 if (
$_GET[
"search_grp"] !=
"") {
435 $_POST[
"search_grp"] = explode(
",",
$_GET[
"search_grp"]);
438 if (!is_array(
$_POST[
"search_grp"]) ||
439 count(
$_POST[
"search_grp"]) == 0) {
441 $this->showMyGroups();
443 $this->tpl->setTitle($this->lng->txt(
"mail_addressbook"));
444 include_once
'Services/Contact/classes/class.ilMailSearchCoursesMembersTableGUI.php';
447 $this->lng->loadLanguageModule(
'crs');
449 $tableData = array();
450 $searchTpl =
new ilTemplate(
'tpl.mail_search_template.html',
true,
true,
'Services/Contact');
452 foreach (
$_POST[
"search_grp"] as $grp_id) {
454 $ref_id = current($ref_ids);
457 $grp_members = $group_obj->getGroupMemberData($group_obj->getGroupMemberIds());
459 foreach ($grp_members as $member) {
461 if (!$tmp_usr->getActive()) {
467 $fullname = $member[
'lastname'] .
', ' . $member[
'firstname'];
471 'members_id' => $member[
"id"],
472 'members_login' => $member[
"login"],
473 'members_name' => $fullname,
474 'members_crs_grp' => $group_obj->getTitle(),
475 'search_grp' => $grp_id,
481 $rowData[
'status'] =
'';
482 if ($member[
'id'] != $this->
user->getId()) {
483 if ($relation->isOwnedByActor()) {
484 $rowData[
'status'] = $this->lng->txt(
'buddy_bs_state_' . $state_name .
'_a');
486 $rowData[
'status'] = $this->lng->txt(
'buddy_bs_state_' . $state_name .
'_p');
491 $tableData[] = $rowData;
495 $table->setData($tableData);
496 if (count($tableData)) {
497 $searchTpl->setVariable(
"TXT_MARKED_ENTRIES", $this->lng->txt(
"marked_entries"));
499 $searchTpl->setVariable(
'TABLE', $table->getHTML());
500 $this->tpl->setContent($searchTpl->get());
502 if (
$_GET[
"ref"] !=
"wsp") {
503 $this->tpl->printToStdout();
510 if (
$_GET[
"view"] ==
"mygroups") {
511 $ids = $_REQUEST[
"search_grp"];
512 if (!is_array($ids) && $ids !==
"") {
515 if (is_array($ids) && count($ids)) {
519 $this->showMyGroups();
521 } elseif (
$_GET[
"view"] ==
"grp_members") {
522 $ids = $_REQUEST[
"search_members"];
523 if (is_array($ids) && count($ids)) {
530 $this->showMyGroups();
536 if (!is_array($a_obj_ids)) {
537 $a_obj_ids = array($a_obj_ids);
540 $existing = $this->wsp_access_handler->getPermissions($this->wsp_node_id);
542 foreach ($a_obj_ids as $object_id) {
543 if (!in_array($object_id, $existing)) {
544 $added = $this->wsp_access_handler->addPermission($this->wsp_node_id, $object_id);
549 ilUtil::sendSuccess($this->lng->txt(
"wsp_share_success"),
true);
551 $this->ctrl->redirectByClass(
"ilworkspaceaccessgui",
"share");
static _lookupLogin($a_user_id)
lookup login
static canSendMailToMembers( $ref_id_or_instance, ?int $usr_id=null, ?int $mail_obj_ref_id=null)
This method was introduced as a band-aid fix for #22764.
static _hasUntrashedReference($a_obj_id)
checks wether an object has at least one reference that is not in trash
static convertUpperCamelCaseToUnderscoreCase($value)
Convert a value given in camel case conversion to underscore case conversion (e.g.
static getInstanceByGlobalUser()
addPermission($a_obj_ids)
static _getMembershipByType($a_usr_id, $a_type, $a_only_member_role=false)
get membership by type Get course or group membership
Class ilRoleMailboxAddress.
static _getAllReferences($a_id)
get all reference ids of object
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
showMembers()
Show course members.
__construct($wsp_access_handler=null, $wsp_node_id=null)
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
static _getInstanceByObjId($a_obj_id)
Get singleton instance.
static _lookupPref($a_usr_id, $a_keyword)
static getMailObjectRefId()
Determines the reference id of the mail object and stores this information in a local cache variable...
static getInstanceByRefId($a_ref_id, $stop_on_error=true)
get an instance of an Ilias object by reference id
static _lookupActive($a_usr_id)
Check user account active.
static redirect($a_script)