ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAccountMail.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
34 {
35  private readonly GlobalHttpState $http;
36  private readonly ilSetting $settings;
37  private readonly Refinery $refinery;
38  private readonly ilTree $repositoryTree;
40  public string $u_password = '';
41  public ?ilObjUser $user = null;
42  public string $target = '';
43  private bool $lang_variables_as_fallback = false;
45  private array $attachments = [];
46  private bool $attachConfiguredFiles = false;
47  private array $amail = [];
48 
49  public function __construct()
50  {
51  global $DIC;
52  $this->http = $DIC->http();
53  $this->refinery = $DIC->refinery();
54  $this->settings = $DIC->settings();
55  $this->repositoryTree = $DIC->repositoryTree();
56  $this->senderFactory = $DIC->mail()->mime()->senderFactory();
57  }
58 
59  public function useLangVariablesAsFallback(bool $a_status): void
60  {
61  $this->lang_variables_as_fallback = $a_status;
62  }
63 
64  public function areLangVariablesUsedAsFallback(): bool
65  {
67  }
68 
69  public function shouldAttachConfiguredFiles(): bool
70  {
72  }
73 
74  public function setAttachConfiguredFiles(bool $attachConfiguredFiles): void
75  {
76  $this->attachConfiguredFiles = $attachConfiguredFiles;
77  }
78 
79  public function setUserPassword(string $a_pwd): void
80  {
81  $this->u_password = $a_pwd;
82  }
83 
84  public function getUserPassword(): string
85  {
86  return $this->u_password;
87  }
88 
89  public function setUser(ilObjUser $a_user): void
90  {
91  if (
92  $this->user instanceof ilObjUser &&
93  $a_user->getId() !== $this->user->getId()
94  ) {
95  $this->attachments = [];
96  }
97 
98  $this->user = $a_user;
99  }
100 
101  public function getUser(): ?ilObjUser
102  {
103  return $this->user;
104  }
105 
106  public function getTarget(): string
107  {
108  return $this->target;
109  }
110 
111  public function reset(): void
112  {
113  $this->user = null;
114  $this->u_password = '';
115  $this->target = '';
116  }
117 
122  private function ensureValidMailDataShape(array $mailData): array
123  {
124  foreach (['lang', 'subject', 'body', 'sal_f', 'sal_g', 'sal_m', 'type'] as $key) {
125  if (!isset($mailData[$key])) {
126  $mailData[$key] = '';
127  }
128  }
129 
130  $mailData['subject'] = trim($mailData['subject']);
131  $mailData['body'] = trim($mailData['body']);
132 
133  return $mailData;
134  }
135 
139  private function readAccountMail(string $a_lang): array
140  {
141  if (!isset($this->amail[$a_lang]) || !is_array($this->amail[$a_lang])) {
142  $this->amail[$a_lang] = $this->ensureValidMailDataShape(
144  );
145  }
146 
147  return $this->amail[$a_lang];
148  }
149 
154  private function addAttachments(array $mailData): void
155  {
156  if (isset($mailData['att_file']) && $this->shouldAttachConfiguredFiles()) {
158  $fs->create();
159 
160  $pathToFile = '/' . implode('/', array_map(static function (string $pathPart): string {
161  return trim($pathPart, '/');
162  }, [
163  $fs->getAbsolutePath(),
164  $mailData['lang'],
165  ]));
166 
167  $this->addAttachment($pathToFile, $mailData['att_file']);
168  }
169  }
170 
178  public function send(): bool
179  {
180  $user = $this->getUser();
181  if (!$user instanceof ilObjUser) {
182  throw new RuntimeException('A user instance must be passed when sending emails');
183  }
184 
185  if ($user->getEmail() === '') {
186  return false;
187  }
188 
189  // determine language and get account mail data
190  // fall back to default language if acccount mail data is not given for user language.
191  $amail = $this->readAccountMail($user->getLanguage());
192  $lang = $user->getLanguage();
193  if ($amail['body'] === '' || $amail['subject'] === '') {
194  $fallback_language = 'en';
195  $amail = $this->readAccountMail($this->settings->get('language', $fallback_language));
196  $lang = $this->settings->get('language', $fallback_language);
197  }
198 
199  // fallback if mail data is still not given
200  if (($amail['body'] === '' || $amail['subject'] === '') && $this->areLangVariablesUsedAsFallback()) {
201  $lang = $user->getLanguage();
202  $tmp_lang = new ilLanguage($lang);
203 
204  $mail_subject = $tmp_lang->txt('reg_mail_subject');
205 
206  $timelimit = '';
207  if (!$user->checkTimeLimit()) {
208  $tmp_lang->loadLanguageModule('registration');
209 
210  // #6098
211  $timelimit_from = new ilDateTime($user->getTimeLimitFrom(), IL_CAL_UNIX);
212  $timelimit_until = new ilDateTime($user->getTimeLimitUntil(), IL_CAL_UNIX);
213  $timelimit = ilDatePresentation::formatPeriod($timelimit_from, $timelimit_until);
214  $timelimit = "\n" . sprintf($tmp_lang->txt('reg_mail_body_timelimit'), $timelimit) . "\n\n";
215  }
216 
217  // mail body
218  $mail_body = $tmp_lang->txt('reg_mail_body_salutation') . ' ' . $user->getFullname() . ",\n\n" .
219  $tmp_lang->txt('reg_mail_body_text1') . "\n\n" .
220  $tmp_lang->txt('reg_mail_body_text2') . "\n" .
221  ILIAS_HTTP_PATH . '/login.php?client_id=' . CLIENT_ID . "\n";
222  $mail_body .= $tmp_lang->txt('login') . ': ' . $user->getLogin() . "\n";
223  $mail_body .= $tmp_lang->txt('passwd') . ': ' . $this->u_password . "\n";
224  $mail_body .= "\n" . $timelimit;
225  $mail_body .= $tmp_lang->txt('reg_mail_body_text3') . "\n\r";
226  $mail_body .= $user->getProfileAsString($tmp_lang);
227  } else {
228  $this->addAttachments($amail);
229 
230  // replace placeholders
231  $mail_subject = $this->replacePlaceholders($amail['subject'], $user, $amail, $lang);
232  $mail_body = $this->replacePlaceholders($amail['body'], $user, $amail, $lang);
233  }
234 
235  $mmail = new ilMimeMail();
236  $mmail->From($this->senderFactory->system());
237  $mmail->Subject($mail_subject, true);
238  $mmail->To($user->getEmail());
239  $mmail->Body($mail_body);
240 
241  foreach ($this->attachments as $filename => $display_name) {
242  $mmail->Attach($filename, '', 'attachment', $display_name);
243  }
244 
245  $mmail->Send();
246 
247  return true;
248  }
249 
250  public function replacePlaceholders(string $a_string, ilObjUser $a_user, array $a_amail, string $a_lang): string
251  {
252  global $DIC;
253  $tree = $DIC->repositoryTree();
254  $ilSetting = $DIC->settings();
255  $mustache_factory = $DIC->mail()->mustacheFactory();
256 
257  $replacements = [];
258 
259  // determine salutation
260  $replacements['MAIL_SALUTATION'] = match ($a_user->getGender()) {
261  'f' => trim((string) $a_amail['sal_f']),
262  'm' => trim((string) $a_amail['sal_m']),
263  default => trim((string) $a_amail['sal_g']),
264  };
265  $replacements['LOGIN'] = $a_user->getLogin();
266  $replacements['FIRST_NAME'] = $a_user->getFirstname();
267  $replacements['LAST_NAME'] = $a_user->getLastname();
268  // BEGIN Mail Include E-Mail Address in account mail
269  $replacements['EMAIL'] = $a_user->getEmail();
270  // END Mail Include E-Mail Address in account mail
271  $replacements['PASSWORD'] = $this->getUserPassword();
272  $replacements['ILIAS_URL'] = ILIAS_HTTP_PATH . '/login.php?client_id=' . CLIENT_ID;
273  $replacements['CLIENT_NAME'] = CLIENT_NAME;
274  $replacements['ADMIN_MAIL'] = $ilSetting->get('admin_email');
275  $replacements['IF_PASSWORD'] = $this->getUserPassword() != '';
276  $replacements['IF_NO_PASSWORD'] = $this->getUserPassword() == '';
277 
278  // #13346
279  if (!$a_user->getTimeLimitUnlimited()) {
280  // #6098
281  $replacements['IF_TIMELIMIT'] = !$a_user->getTimeLimitUnlimited();
282  $timelimit_from = new ilDateTime($a_user->getTimeLimitFrom(), IL_CAL_UNIX);
283  $timelimit_until = new ilDateTime($a_user->getTimeLimitUntil(), IL_CAL_UNIX);
284  $timelimit = ilDatePresentation::formatPeriod($timelimit_from, $timelimit_until);
285  $replacements['TIMELIMIT'] = $timelimit;
286  }
287 
288  // target
289  $replacements['IF_TARGET'] = false;
290  if ($this->http->wrapper()->query()->has('target') &&
291  $this->http->wrapper()->query()->retrieve('target', $this->refinery->kindlyTo()->string()) !== ''
292  ) {
293  $target = $this->http->wrapper()->query()->retrieve('target', $this->refinery->kindlyTo()->string());
294  $tarr = explode('_', (string) $target);
295  if ($this->repositoryTree->isInTree((int) $tarr[1])) {
296  $obj_id = ilObject::_lookupObjId((int) $tarr[1]);
297  $type = ilObject::_lookupType($obj_id);
298  if ($type === $tarr[0]) {
299  $replacements['TARGET_TITLE'] = ilObject::_lookupTitle($obj_id);
300  $replacements['TARGET'] = ILIAS_HTTP_PATH . '/goto.php?client_id=' . CLIENT_ID . '&target=' . $target;
301 
302  // this looks complicated, but we may have no initilised $lng object here
303  // if mail is send during user creation in authentication
304  $replacements['TARGET_TYPE'] = ilLanguage::_lookupEntry($a_lang, 'common', 'obj_' . $tarr[0]);
305  $replacements['IF_TARGET'] = true;
306  }
307  }
308  }
309 
310  return $mustache_factory->getBasicEngine()->render($a_string, $replacements);
311  }
312 
313  public function addAttachment(string $a_filename, string $a_display_name): void
314  {
315  $this->attachments[$a_filename] = $a_display_name;
316  }
317 }
send()
Sends the mail with its object properties as MimeMail It first tries to read the mail body...
const USER_FOLDER_ID
Definition: constants.php:33
readonly ilMailMimeSenderFactory $senderFactory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const CLIENT_NAME
Definition: constants.php:42
readAccountMail(string $a_lang)
setAttachConfiguredFiles(bool $attachConfiguredFiles)
readonly Refinery $refinery
getFullname(int $a_max_strlen=0)
ensureValidMailDataShape(array $mailData)
addAttachments(array $mailData)
const IL_CAL_UNIX
static _lookupObjId(int $ref_id)
replacePlaceholders(string $a_string, ilObjUser $a_user, array $a_amail, string $a_lang)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static http()
Fetches the global http state from ILIAS.
setUserPassword(string $a_pwd)
static _lookupTitle(int $obj_id)
static _lookupNewAccountMail(string $a_lang)
useLangVariablesAsFallback(bool $a_status)
addAttachment(string $a_filename, string $a_display_name)
const CLIENT_ID
Definition: constants.php:41
global $DIC
Definition: shib_login.php:22
readonly GlobalHttpState $http
readonly ilSetting $settings
$filename
Definition: buildRTE.php:78
$lang
Definition: xapiexit.php:25
readonly ilTree $repositoryTree
setUser(ilObjUser $a_user)
global $ilSetting
Definition: privfeed.php:31
Class ilAccountMail.
static _lookupEntry(string $a_lang_key, string $a_mod, string $a_id)
static _lookupType(int $id, bool $reference=false)
static formatPeriod(ilDateTime $start, ilDateTime $end, bool $a_skip_starting_day=false, ?ilObjUser $user=null)
Format a period of two dates Shows: 14.