ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailFormCall.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 {
29  final public const SESSION_KEY = 'mail_transport';
30  final public const REFERER_KEY = 'r';
31  final public const SIGNATURE_KEY = 'sig';
32  final public const CONTEXT_PREFIX = 'ctx';
33  final public const CONTEXT_KEY = 'ctx_template';
34 
38  public static function getLinkTarget(
39  $gui,
40  string $cmd,
41  array $gui_params = [],
42  array $mail_params = [],
43  array $context_params = []
44  ): string {
45  return self::getTargetUrl('&', $gui, $cmd, $gui_params, $mail_params, $context_params);
46  }
47 
51  public static function getRedirectTarget(
52  $gui,
53  string $cmd,
54  array $gui_params = [],
55  array $mail_params = [],
56  array $context_params = []
57  ): string {
58  return self::getTargetUrl('&', $gui, $cmd, $gui_params, $mail_params, $context_params);
59  }
60 
64  protected static function getTargetUrl(
65  string $argument_separator,
66  $gui,
67  string $cmd,
68  array $gui_params = [],
69  array $mail_params = [],
70  array $context_params = []
71  ): string {
72  global $DIC;
73 
74  $mparams = '';
75  $referer = '';
76 
77  foreach ($mail_params as $key => $value) {
78  $mparams .= $argument_separator . $key . '=' . urlencode((string) $value);
79  }
80 
81  foreach ($context_params as $key => $value) {
82  if ($key === self::CONTEXT_KEY) {
83  $mparams .= $argument_separator . $key . '=' . urlencode((string) $value);
84  } else {
85  $mparams .= $argument_separator . self::CONTEXT_PREFIX . '_' . $key . '=' . urlencode((string) $value);
86  }
87  }
88 
89  if (is_object($gui)) {
90  $ilCtrlTmp = clone $DIC->ctrl();
91  foreach ($gui_params as $key => $value) {
92  $ilCtrlTmp->setParameter($gui, $key, $value);
93  }
94  $referer = $ilCtrlTmp->getLinkTarget($gui, $cmd, '');
95  } elseif (is_string($gui)) {
96  $referer = $gui;
97  }
98 
99  $referer = $argument_separator . self::REFERER_KEY . '=' . rawurlencode(base64_encode($referer));
100 
101  return 'ilias.php?baseClass=ilMailGUI' . $referer . $mparams;
102  }
103 
107  public static function storeReferer(array $queryParameters): void
108  {
109  $session = ilSession::get(self::SESSION_KEY);
110 
111  if (isset($queryParameters[self::REFERER_KEY])) {
112  $session[self::REFERER_KEY] = base64_decode(rawurldecode($queryParameters[self::REFERER_KEY]));
113  $session[self::SIGNATURE_KEY] = base64_decode(
114  rawurldecode(
115  $queryParameters[self::SIGNATURE_KEY] ?? ''
116  )
117  );
118 
119  $contextParameters = [];
120  foreach ($queryParameters as $key => $value) {
121  $prefix = substr($key, 0, strlen(self::CONTEXT_PREFIX));
122  if ($prefix === self::CONTEXT_PREFIX) {
123  if ($key === self::CONTEXT_KEY) {
124  $contextParameters[$key] = $value;
125  } else {
126  $contextParameters[substr($key, strlen(self::CONTEXT_PREFIX . '_'))] = $value;
127  }
128  }
129  }
130  $session[self::CONTEXT_PREFIX] = $contextParameters;
131  } else {
132  if (isset($session[self::REFERER_KEY])) {
133  unset($session[self::REFERER_KEY]);
134  }
135  if (isset($session[self::SIGNATURE_KEY])) {
136  unset($session[self::SIGNATURE_KEY]);
137  }
138  if (isset($session[self::CONTEXT_PREFIX])) {
139  unset($session[self::CONTEXT_PREFIX]);
140  }
141  }
142 
143  ilSession::set(self::SESSION_KEY, $session);
144  }
145 
146  public static function getSignature(): string
147  {
148  $sig = '';
149  $session = ilSession::get(self::SESSION_KEY);
150 
151  if (isset($session[self::SIGNATURE_KEY])) {
152  $sig = $session[self::SIGNATURE_KEY];
153 
154  unset($session[self::SIGNATURE_KEY]);
155  ilSession::set(self::SESSION_KEY, $session);
156  }
157 
158  return $sig;
159  }
160 
161  public static function getRefererRedirectUrl(): string
162  {
163  $url = '';
164  $session = ilSession::get(self::SESSION_KEY);
165 
166  if (isset($session[self::REFERER_KEY])) {
167  $url = $session[self::REFERER_KEY];
168  if (is_string($url) && $url !== '') {
169  $parts = parse_url($url);
170  if (isset($parts['query']) && $parts['query'] !== '') {
171  $url .= '&returned_from_mail=1';
172  } else {
173  $url .= '?returned_from_mail=1';
174  }
175 
176  $ilias_url_parts = parse_url(ilUtil::_getHttpPath());
177  if (isset($parts['host']) && $ilias_url_parts['host'] !== $parts['host']) {
178  $url = 'ilias.php?baseClass=ilMailGUI';
179  }
180  }
181 
182  unset($session[self::REFERER_KEY]);
183  ilSession::set(self::SESSION_KEY, $session);
184  }
185 
186  return $url;
187  }
188 
189  public static function isRefererStored(): bool
190  {
191  $session = ilSession::get(self::SESSION_KEY);
192 
193  return (
194  isset($session[self::REFERER_KEY]) &&
195  is_string($session[self::REFERER_KEY]) &&
196  $session[self::REFERER_KEY] !== ''
197  );
198  }
199 
200  public static function getContextId(): ?string
201  {
202  $session = ilSession::get(self::SESSION_KEY);
203  return (
204  isset($session[self::CONTEXT_PREFIX][self::CONTEXT_KEY]) &&
205  is_string($session[self::CONTEXT_PREFIX][self::CONTEXT_KEY]) ?
206  $session[self::CONTEXT_PREFIX][self::CONTEXT_KEY] : null
207  );
208  }
209 
210  public static function setContextId(?string $id): void
211  {
212  $session = ilSession::get(self::SESSION_KEY);
213  $session[self::CONTEXT_KEY] = $id;
214  ilSession::set(self::SESSION_KEY, $session);
215  }
216 
217  public static function getContextParameters(): array
218  {
219  $session = ilSession::get(self::SESSION_KEY);
220  if (isset($session[self::CONTEXT_PREFIX]) && is_array($session[self::CONTEXT_PREFIX])) {
221  return $session[self::CONTEXT_PREFIX];
222  }
223 
224  return [];
225  }
226 
227  public static function setContextParameters(array $parameters): void
228  {
229  $session = ilSession::get(self::SESSION_KEY);
230  $session[self::CONTEXT_PREFIX] = $parameters;
231  ilSession::set(self::SESSION_KEY, $session);
232  }
233 
237  public static function setRecipients(array $recipients, string $type = 'to'): void
238  {
239  $session = ilSession::get(self::SESSION_KEY) ?? [];
240  $session['rcp_' . $type] = array_map('strval', array_values($recipients));
241  ilSession::set(self::SESSION_KEY, $session);
242  }
243 
247  public static function getRecipients(string $type = 'to'): array
248  {
249  $session = ilSession::get(self::SESSION_KEY) ?? [];
250  $key = 'rcp_' . $type;
251  if (isset($session[$key]) && is_array($session[$key])) {
252  return array_map('strval', array_values($session[$key]));
253  }
254 
255  return [];
256  }
257 }
static get(string $a_var)
final const CONTEXT_PREFIX
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
Definition: ltitoken.php:61
static storeReferer(array $queryParameters)
static getLinkTarget( $gui, string $cmd, array $gui_params=[], array $mail_params=[], array $context_params=[])
Statically used helper class for generating links to the mail form user interface.
$url
Definition: shib_logout.php:66
static getTargetUrl(string $argument_separator, $gui, string $cmd, array $gui_params=[], array $mail_params=[], array $context_params=[])
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
static setContextParameters(array $parameters)
static getRecipients(string $type='to')
final const SIGNATURE_KEY
static setRecipients(array $recipients, string $type='to')
static _getHttpPath()
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
static getRedirectTarget( $gui, string $cmd, array $gui_params=[], array $mail_params=[], array $context_params=[])
static setContextId(?string $id)
static set(string $a_var, $a_val)
Set a value.