ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailNotification.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 abstract class ilMailNotification
27 {
28  final public const SUBJECT_TITLE_LENGTH = 60;
29 
30  protected int $type;
31  protected int $sender;
32  protected ?ilMail $mail = null;
33  protected string $subject = '';
34  protected string $body = '';
35  protected array $attachments = [];
36  protected ilLanguage $language;
37  protected array $lang_modules = [];
38  protected array $recipients = [];
39  protected int $ref_id;
40  protected int $obj_id = 0;
41  protected string $obj_type = '';
42  protected array $additional_info = [];
45 
46  public function __construct(protected bool $is_in_wsp = false)
47  {
48  global $DIC;
50  $this->language = ilLanguageFactory::_getLanguage($DIC->language()->getDefaultLanguage());
51 
52  if ($this->is_in_wsp) {
53  $this->wsp_tree = new ilWorkspaceTree($DIC->user()->getId()); // owner of tree is irrelevant
54  $this->wsp_access_handler = new ilWorkspaceAccessHandler($this->wsp_tree);
55  }
56  }
57 
58  public function setType(int $a_type): void
59  {
60  $this->type = $a_type;
61  }
62 
63  public function getType(): int
64  {
65  return $this->type;
66  }
67 
68  public function setSender(int $a_usr_id): void
69  {
70  $this->sender = $a_usr_id;
71  }
72 
73  public function getSender(): int
74  {
75  return $this->sender;
76  }
77 
78  protected function setSubject(string $a_subject): string
79  {
80  if (ilStr::strLen($a_subject) > 255) {
81  $a_subject = ilStr::subStr($a_subject, 0, 255);
82  }
83 
84  return $this->subject = $a_subject;
85  }
86 
87  protected function getSubject(): string
88  {
89  return $this->subject;
90  }
91 
92  protected function setBody(string $a_body): void
93  {
94  $this->body = $a_body;
95  }
96 
97  protected function appendBody(string $a_body): string
98  {
99  return $this->body .= $a_body;
100  }
101 
102  protected function getBody(): string
103  {
104  return $this->body;
105  }
106 
107  public function setRecipients(array $a_rcp): void
108  {
109  $this->recipients = $a_rcp;
110  }
111 
112  public function getRecipients(): array
113  {
114  return $this->recipients;
115  }
116 
117  public function setAttachments(array $a_att): void
118  {
119  $this->attachments = $a_att;
120  }
121 
122  public function getAttachments(): array
123  {
124  return $this->attachments;
125  }
126 
127  public function setLangModules(array $a_modules): void
128  {
129  $this->lang_modules = $a_modules;
130  }
131 
132  protected function initLanguage(int $a_usr_id): void
133  {
134  $this->language = $this->getUserLanguage($a_usr_id);
135  }
136 
137  public function getUserLanguage(int $a_usr_id): ilLanguage
138  {
139  $language = ilLanguageFactory::_getLanguageOfUser($a_usr_id);
140  $language->loadLanguageModule('mail');
141 
142  foreach ($this->lang_modules as $lmod) {
143  $language->loadLanguageModule($lmod);
144  }
145 
146  return $language;
147  }
148 
149  protected function initLanguageByIso2Code(string $a_code = ''): void
150  {
151  $this->language = ilLanguageFactory::_getLanguage($a_code);
152  $this->language->loadLanguageModule('mail');
153 
154  foreach ($this->lang_modules as $lmod) {
155  $this->language->loadLanguageModule($lmod);
156  }
157  }
158 
159  protected function setLanguage(ilLanguage $a_language): void
160  {
161  $this->language = $a_language;
162  }
163 
164  protected function getLanguage(): ilLanguage
165  {
166  return $this->language;
167  }
168 
169  protected function getLanguageText(string $a_keyword): string
170  {
171  return str_replace('\n', "\n", $this->getLanguage()->txt($a_keyword));
172  }
173 
174  public function setRefId(int $a_id): void
175  {
176  if (!$this->is_in_wsp) {
177  $this->ref_id = $a_id;
178  $obj_id = ilObject::_lookupObjId($this->ref_id);
179  } else {
180  $this->ref_id = $a_id;
181  $obj_id = $this->wsp_tree->lookupObjectId($this->getRefId());
182  }
183 
184  $this->setObjId($obj_id);
185  }
186 
187  public function getRefId(): int
188  {
189  return $this->ref_id;
190  }
191 
192  public function getObjId(): int
193  {
194  return $this->obj_id;
195  }
196 
197  public function setObjId(int $a_obj_id): void
198  {
199  $this->obj_id = $a_obj_id;
200  $this->obj_type = ilObject::_lookupType($this->obj_id);
201  }
202 
203  public function getObjType(): string
204  {
205  return $this->obj_type;
206  }
207 
208  public function setAdditionalInformation(array $a_info): void
209  {
210  $this->additional_info = $a_info;
211  }
212 
213  public function getAdditionalInformation(): array
214  {
215  return $this->additional_info;
216  }
217 
218  protected function getObjectTitle(bool $a_shorten = false): string
219  {
220  if ($this->getObjId() === 0) {
221  return '';
222  }
224  if ($a_shorten) {
225  $txt = ilStr::shortenTextExtended($txt, self::SUBJECT_TITLE_LENGTH, true);
226  }
227  return $txt;
228  }
229 
230  public function sendMail(array $a_rcp, bool $a_parse_recipients = true): void
231  {
232  $recipients = [];
233  foreach ($a_rcp as $rcp) {
234  if ($a_parse_recipients) {
235  $recipients[] = ilObjUser::_lookupLogin((int) $rcp);
236  } else {
237  $recipients[] = $rcp;
238  }
239  }
240  $recipients = implode(',', $recipients);
241  $errors = $this->getMail()->enqueue(
242  $recipients,
243  '',
244  '',
245  $this->getSubject(),
246  $this->getBody(),
247  $this->getAttachments()
248  );
249  if ($errors !== []) {
250  ilLoggerFactory::getLogger('mail')->dump($errors, ilLogLevel::ERROR);
251  }
252  }
253 
254  protected function initMail(): ilMail
255  {
256  return $this->mail = new ilMail($this->getSender());
257  }
258 
259  protected function getMail(): ilMail
260  {
261  return is_object($this->mail) ? $this->mail : $this->initMail();
262  }
263 
264  protected function createPermanentLink(array $a_params = [], string $a_append = ''): ?string
265  {
266  if ($this->getRefId() !== 0) {
267  if (!$this->is_in_wsp) {
268  return ilLink::_getLink($this->ref_id, $this->getObjType(), $a_params, $a_append);
269  }
270  return ilWorkspaceAccessHandler::getGotoLink($this->getRefId(), $this->getObjId(), $a_append);
271  }
272  return ilLink::_getLink(ROOT_FOLDER_ID, 'root');
273  }
274 
275  protected function userToString(int $a_usr_id): string
276  {
277  $name = ilObjUser::_lookupName($a_usr_id);
278  return ($name['title'] ? $name['title'] . ' ' : '') .
279  ($name['firstname'] ? $name['firstname'] . ' ' : '') .
280  ($name['lastname'] ? $name['lastname'] . ' ' : '');
281  }
282 
283  protected function isRefIdAccessible(int $a_user_id, int $a_ref_id, string $a_permission = "read"): bool
284  {
285  global $DIC;
286 
287  // no given permission == accessible
288 
289  if (!$this->is_in_wsp) {
290  if (trim($a_permission) &&
291  !$DIC->access()->checkAccessOfUser(
292  $a_user_id,
293  $a_permission,
294  "",
295  $a_ref_id,
296  $this->getObjType()
297  )) {
298  return false;
299  }
300  } elseif (
301  trim($a_permission) &&
302  !$this->wsp_access_handler->checkAccessOfUser(
303  $this->wsp_tree,
304  $a_user_id,
305  $a_permission,
306  "",
307  $a_ref_id,
308  $this->getObjType()
309  )
310  ) {
311  return false;
312  }
313 
314  return true;
315  }
316 
317  public function getBlockBorder(): string
318  {
319  return "----------------------------------------\n";
320  }
321 }
__construct(protected bool $is_in_wsp=false)
const ANONYMOUS_USER_ID
Definition: constants.php:27
static getLogger(string $a_component_id)
Get component logger.
sendMail(array $a_rcp, bool $a_parse_recipients=true)
const ROOT_FOLDER_ID
Definition: constants.php:32
static getGotoLink(int $a_node_id, int $a_obj_id, string $a_additional="")
static _lookupName(int $a_user_id)
lookup user name
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initLanguageByIso2Code(string $a_code='')
loadLanguageModule(string $a_module)
Load language module.
static subStr(string $a_str, int $a_start, ?int $a_length=null)
Definition: class.ilStr.php:24
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static strLen(string $a_string)
Definition: class.ilStr.php:63
static _lookupTitle(int $obj_id)
ilWorkspaceAccessHandler $wsp_access_handler
static _getLanguageOfUser(int $a_usr_id)
Get language object of user.
setLangModules(array $a_modules)
global $DIC
Definition: shib_login.php:22
static _getLanguage(string $a_lang_key='')
Get language object.
$txt
Definition: error.php:31
getLanguageText(string $a_keyword)
isRefIdAccessible(int $a_user_id, int $a_ref_id, string $a_permission="read")
getObjectTitle(bool $a_shorten=false)
createPermanentLink(array $a_params=[], string $a_append='')
static shortenTextExtended(string $a_str, int $a_len, bool $a_dots=false, bool $a_next_blank=false, bool $a_keep_extension=false)
setSubject(string $a_subject)
language()
description: > Example for rendring a language glyph.
Definition: language.php:41
static _lookupType(int $id, bool $reference=false)
setLanguage(ilLanguage $a_language)
setAdditionalInformation(array $a_info)
static _lookupLogin(int $a_user_id)