19 declare(strict_types=1);
42 'd_drafts' =>
'drafts',
57 $this->
lng = $DIC->language();
58 $this->db = $DIC->database();
59 $this->table_mail_obj_data =
'mail_obj_data';
60 $this->table_tree =
'mail_tree';
62 $this->mtree =
new ilTree($this->usrId);
63 $this->mtree->setTableNames($this->table_tree, $this->table_mail_obj_data);
65 $this->
lng->loadLanguageModule(
'mail');
70 $res = $this->db->queryF(
71 'SELECT obj_id FROM ' . $this->table_mail_obj_data .
' WHERE user_id = %s AND m_type = %s',
73 [$this->usrId,
'root']
76 $row = $this->db->fetchAssoc(
$res);
78 return (
int) $row[
'obj_id'];
83 $res = $this->db->queryF(
84 'SELECT obj_id FROM ' . $this->table_mail_obj_data .
' WHERE user_id = %s AND m_type = %s',
86 [$this->usrId,
'inbox']
89 $row = $this->db->fetchAssoc(
$res);
91 return (
int) $row[
'obj_id'];
96 $res = $this->db->queryF(
97 'SELECT obj_id FROM ' . $this->table_mail_obj_data .
' WHERE user_id = %s AND m_type = %s',
99 [$this->usrId,
'drafts']
102 $row = $this->db->fetchAssoc(
$res);
104 return (
int) $row[
'obj_id'];
109 $res = $this->db->queryF(
110 'SELECT obj_id FROM ' . $this->table_mail_obj_data .
' WHERE user_id = %s AND m_type = %s',
112 [$this->usrId,
'trash']
115 $row = $this->db->fetchAssoc(
$res);
117 return (
int) $row[
'obj_id'];
122 $res = $this->db->queryF(
123 'SELECT obj_id FROM ' . $this->table_mail_obj_data .
' WHERE user_id = %s AND m_type = %s',
125 [$this->usrId,
'sent']
128 $row = $this->db->fetchAssoc(
$res);
130 return (
int) $row[
'obj_id'];
138 $rootFolderId = $this->db->nextId($this->table_mail_obj_data);
139 $this->db->manipulateF(
140 'INSERT INTO ' . $this->table_mail_obj_data .
141 ' (obj_id, user_id, title, m_type) VALUES(%s, %s, %s, %s)',
142 [
'integer',
'integer',
'text',
'text'],
143 [$rootFolderId, $this->usrId,
'a_root',
'root']
145 $this->mtree->addTree($this->usrId, $rootFolderId);
147 foreach ($this->defaultFolders as $key => $folder) {
148 $last_id = $this->db->nextId($this->table_mail_obj_data);
149 $this->db->manipulateF(
150 'INSERT INTO ' . $this->table_mail_obj_data .
151 ' (obj_id, user_id, title, m_type) VALUES(%s, %s, %s, %s)',
152 [
'integer',
'integer',
'text',
'text'],
153 [$last_id, $this->usrId, $key, $folder]
155 $this->mtree->insertNode($last_id, $rootFolderId);
165 $nextId = $this->db->nextId($this->table_mail_obj_data);
166 $this->db->manipulateF(
167 'INSERT INTO ' . $this->table_mail_obj_data .
168 ' (obj_id, user_id, title, m_type) VALUES(%s,%s,%s,%s)',
169 [
'integer',
'integer',
'text',
'text'],
170 [$nextId, $this->usrId, $name,
'user_folder']
172 $this->mtree->insertNode($nextId, $parentFolderId);
183 $this->db->manipulateF(
184 'UPDATE ' . $this->table_mail_obj_data .
' SET title = %s WHERE obj_id = %s AND user_id = %s',
185 [
'text',
'integer',
'integer'],
186 [$name, $folderId, $this->usrId]
194 $res = $this->db->queryF(
195 'SELECT obj_id FROM ' . $this->table_mail_obj_data .
' WHERE user_id = %s AND title = %s',
197 [$this->usrId, $name]
199 $row = $this->db->fetchAssoc(
$res);
201 return is_array($row) && $row[
'obj_id'] > 0;
209 $query = $this->db->queryF(
210 'SELECT obj_id, title FROM ' . $this->table_mail_obj_data .
' WHERE obj_id = %s AND user_id = %s',
211 [
'integer',
'integer'],
212 [$folderId, $this->usrId]
214 $row = $this->db->fetchAssoc($query);
216 if (!is_array($row) || array_key_exists($row[
'title'], $this->defaultFolders)) {
220 $mailer =
new ilMail($this->usrId);
222 $subtree = $this->mtree->getSubTree($this->mtree->getNodeData($folderId));
223 $this->mtree->deleteTree($this->mtree->getNodeData($folderId));
225 foreach ($subtree as $node) {
226 $nodeId = (
int) $node[
'obj_id'];
228 $mails = $mailer->getMailsOfFolder($nodeId);
231 foreach ($mails as $mail) {
232 $mailIds[] = (
int) $mail[
'mail_id'];
235 $mailer->deleteMails($mailIds);
237 $this->db->manipulateF(
238 'DELETE FROM ' . $this->table_mail_obj_data .
' WHERE obj_id = %s AND user_id = %s',
239 [
'integer',
'integer'],
240 [$nodeId, $this->usrId]
249 $res = $this->db->queryF(
250 'SELECT * FROM ' . $this->table_mail_obj_data .
' WHERE user_id = %s AND obj_id = %s',
251 [
'integer',
'integer'],
252 [$this->usrId, $folderId]
254 $row = $this->db->fetchAssoc(
$res);
256 if (is_array($row)) {
266 (
int) $row[
'obj_id'],
267 (
int) $row[
'user_id'],
271 : $this->
lng->txt(
'mail_' . $row[
'title']))
277 $res = $this->db->queryF(
278 'SELECT * FROM ' . $this->table_tree .
' WHERE child = %s AND tree = %s',
279 [
'integer',
'integer'],
280 [$folderId, $this->usrId]
282 $row = $this->db->fetchAssoc(
$res);
284 return is_array($row) ? (
int) $row[
'parent'] : 0;
294 foreach (array_keys($this->defaultFolders) as $key) {
295 $res = $this->db->queryF(
296 'SELECT * FROM ' . $this->table_mail_obj_data .
' WHERE user_id = %s AND title = %s',
300 $row = $this->db->fetchAssoc(
$res);
301 if (is_array($row)) {
306 $query = implode(
' ', [
307 'SELECT * FROM ' . $this->table_tree .
', ' . $this->table_mail_obj_data,
308 'WHERE ' . $this->table_mail_obj_data .
'.obj_id = ' . $this->table_tree .
'.child',
309 'AND ' . $this->table_tree .
'.depth > %s',
310 'AND ' . $this->table_tree .
'.tree = %s',
311 'ORDER BY ' . $this->table_tree .
'.lft, ' . $this->table_mail_obj_data .
'.title',
313 $res = $this->db->queryF(
315 [
'integer',
'integer'],
318 while ($row = $this->db->fetchAssoc(
$res)) {
327 $this->usrId = $usrId;
335 public function delete():
void 337 $this->db->manipulateF(
338 'DELETE FROM mail_obj_data WHERE user_id = %s',
343 $this->db->manipulateF(
344 'DELETE FROM mail_options WHERE user_id = %s',
349 $this->db->manipulateF(
350 'DELETE FROM mail_saved WHERE user_id = %s',
355 $this->db->manipulateF(
356 'DELETE FROM mail_tree WHERE tree = %s',
361 $this->db->manipulateF(
362 'DELETE FROM mail_auto_responder WHERE sender_id = %s OR receiver_id = %s',
363 [
'integer',
'integer'],
364 [$this->usrId, $this->usrId]
370 $fdm->onUserDelete();
373 $this->db->manipulateF(
374 'DELETE FROM mail WHERE user_id = %s',
386 $this->db->manipulateF(
387 'UPDATE mail SET sender_id = %s, import_name = %s WHERE sender_id = %s',
388 [
'integer',
'text',
'integer'],
389 [0, $nameToShow, $this->usrId]
397 return $folder_data?->getFolderId() === $folderId;
addFolder(int $parentFolderId, string $name)
This class handles all operations on files (attachments) in directory ilias_data/mail.
updateMailsOfDeletedUser(string $nameToShow)
Update existing mails.
getFolderDataFromRow(array $row)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Mail Box class Base class for creating and handling mail boxes.
createDefaultFolder()
Creates all default folders for a user.
getParentFolderId(int $folderId)
renameFolder(int $folderId, string $name)
getFolderData(int $folderId)
__construct(protected int $usrId)
deleteFolder(int $folderId)
array string $table_mail_obj_data
folderNameExists(string $name)
isOwnedFolder(int $folderId)