ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMembershipMailGUI.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 
6 
25 
32 {
34  protected ilLanguage $lng;
37  protected Factory $refinery;
39 
40  public function __construct(ilObjectGUI $object)
41  {
42  global $DIC;
43  $this->main_tpl = $DIC->ui()->mainTemplate();
44  $this->http = $DIC->http();
45  $this->refinery = $DIC->refinery();
46  $this->object = $object;
47  $this->ctrl = $DIC->ctrl();
48  $this->lng = $DIC->language();
49  }
50 
51  public function getCurrentObject(): ilObjectGUI
52  {
53  return $this->object;
54  }
55 
56  public function executeCommand(): void
57  {
58  $next_class = $this->ctrl->getNextClass($this);
59  $cmd = $this->ctrl->getCmd();
60 
61  switch ($next_class) {
62  default:
63  $this->$cmd();
64  break;
65  }
66  }
67 
68  protected function initRecipientsFromPost(string $name): array
69  {
70  if ($this->http->wrapper()->post()->has($name)) {
71  return $this->http->wrapper()->post()->retrieve(
72  $name,
73  $this->refinery->kindlyTo()->listOf(
74  $this->refinery->kindlyTo()->int()
75  )
76  );
77  }
78  return [];
79  }
80 
81  protected function initMemberIdFromGet(): int
82  {
83  if ($this->http->wrapper()->query()->has('member_id')) {
84  return $this->http->wrapper()->query()->retrieve(
85  'member_id',
86  $this->refinery->kindlyTo()->int()
87  );
88  }
89  return 0;
90  }
91 
92  public function sendMailToSelectedUsers(): void
93  {
94  if ($this->http->wrapper()->query()->has('member_id')) {
95  $particpants = [$this->initMemberIdFromGet()];
96  } else {
97  $particpants = array_unique(array_merge(
98  $this->initRecipientsFromPost('admins'),
99  $this->initRecipientsFromPost('tutors'),
100  $this->initRecipientsFromPost('members'),
101  $this->initRecipientsFromPost('roles'),
102  $this->initRecipientsFromPost('waiting'),
103  $this->initRecipientsFromPost('subscribers')
104  ));
105  }
106 
107  if (!count($particpants)) {
108  $this->main_tpl->setOnScreenMessage('failure', $this->lng->txt("no_checkbox"), true);
109  $this->ctrl->returnToParent($this);
110  return;
111  }
112  $rcps = [];
113  foreach ($particpants as $usr_id) {
114  $rcps[] = ilObjUser::_lookupLogin($usr_id);
115  }
116  $this->ctrl->redirectToURL(
118  $this->getCurrentObject(),
119  'members',
120  [],
121  [
122  'type' => 'new',
123  'rcp_to' => implode(',', $rcps),
124  'sig' => $this->createMailSignature()
125  ]
126  )
127  );
128  }
129 
130  protected function createMailSignature(): string
131  {
132  $this->lng->loadLanguageModule($this->getCurrentObject()->getObject()->getType());
133 
134  $link = chr(13) . chr(10) . chr(13) . chr(10);
135  $link .= $this->lng->txt($this->getCurrentObject()->getObject()->getType() . '_mail_permanent_link');
136  $link .= chr(13) . chr(10) . chr(13) . chr(10);
137  $link .= ilLink::_getLink($this->getCurrentObject()->getObject()->getRefId());
138  return rawurlencode(base64_encode($link));
139  }
140 }
Interface GlobalHttpState.
__construct(ilObjectGUI $object)
global $DIC
Definition: feed.php:28
if($format !==null) $name
Definition: metadata.php:247
static http()
Fetches the global http state from ILIAS.
ilGlobalTemplateInterface $main_tpl
Class ilObjectGUI Basic methods of all Output classes.
static getRedirectTarget( $gui, string $cmd, array $gui_params=[], array $mail_params=[], array $context_params=[])
static _lookupLogin(int $a_user_id)