19 declare(strict_types=1);
60 $this->db = $DIC->database();
105 $clone = clone $this;
113 $clone = clone $this;
121 $clone = clone $this;
129 $clone = clone $this;
137 $clone = clone $this;
148 $clone = clone $this;
156 $clone = clone $this;
164 $clone = clone $this;
172 $clone = clone $this;
173 if ($order_column !==
null) {
176 $clone->order_column = self::DEFAULT_ORDER_COLUMN;
184 $clone = clone $this;
188 $clone->order_direction = self::DEFAULT_ORDER_DIRECTION;
207 if ($this->filtered_ids === []) {
211 $query =
'SELECT COUNT(m.mail_id) cnt ' 215 $res = $this->db->query($query);
216 if ($row = $this->db->fetchAssoc(
$res)) {
217 return (
int) $row[
'cnt'];
229 if ($this->filtered_ids === []) {
233 $query =
'SELECT m.mail_id ' 238 $res = $this->db->query($query);
239 while ($row = $this->db->fetchAssoc(
$res)) {
240 $ids[] = (
int) $row[
'mail_id'];
251 public function query($short): array
253 if ($this->filtered_ids === []) {
258 $query =
'SELECT m.mail_id, m.user_id, m.folder_id, m.sender_id, m.send_time, ' 259 .
'm.m_status, m.m_subject, m.import_name, m.rcp_to, m.attachments' 263 $query =
'SELECT m.*' 268 if ($this->order_column === MailBoxOrderColumn::FROM) {
269 $query .=
' ORDER BY ' 270 .
' u.firstname ' . $this->order_direction .
', ' 271 .
' u.lastname ' . $this->order_direction .
', ' 272 .
' u.login ' . $this->order_direction .
', ' 278 $this->db->setLimit($this->limit, $this->offset);
279 $res = $this->db->query($query);
282 while ($row = $this->db->fetchAssoc(
$res)) {
284 isset($row[
'mail_id']) ? (
int) $row[
'mail_id'] : 0,
285 isset($row[
'user_id']) ? (
int) $row[
'user_id'] : 0,
286 isset($row[
'folder_id']) ? (
int) $row[
'folder_id'] : 0,
287 isset($row[
'sender_id']) ? (
int) $row[
'sender_id'] :
null,
289 isset($row[
'm_status']) ? (
string) $row[
'm_status'] : null,
290 isset($row[
'm_subject']) ? (
string) $row[
'm_subject'] : null,
291 isset($row[
'import_name']) ? (
string) $row[
'import_name'] : null,
292 isset($row[
'use_placeholders']) ? (
bool) $row[
'use_placeholders'] :
false,
293 isset($row[
'm_message']) ? (
string) $row[
'm_message'] : null,
294 isset($row[
'rcp_to']) ? (
string) $row[
'rcp_to'] : null,
295 isset($row[
'rcp_cc']) ? (
string) $row[
'rcp_cc'] : null,
296 isset($row[
'rcp_bcc']) ? (
string) $row[
'rcp_bcc'] : null,
297 isset($row[
'attachments']) ? (array) unserialize(
298 stripslashes($row[
'attachments']),
299 [
'allowed_classes' =>
false]
301 isset($row[
'tpl_ctx_id']) ? (
string) $row[
'tpl_ctx_id'] : null,
302 isset($row[
'tpl_ctx_params']) ? (
string) $row[
'tpl_ctx_params'] : null
312 LEFT JOIN usr_data u ON u.usr_id = m.sender_id 313 LEFT JOIN usr_pref p ON p.usr_id = m.sender_id AND p.keyword = 'public_profile'";
324 $sender_conditions = [];
325 if (($this->sender ??
'') !==
'') {
326 $sender_conditions[] = $this->db->like(
'u.login',
ilDBConstants::T_TEXT,
'%%' . $this->sender .
'%%');
329 $sender_conditions[] =
'(' .
331 .
" AND p.value = 'y')";
335 $sender_conditions[] =
'(' .
337 .
" AND p.value = 'y')";
340 if (!empty($sender_conditions)) {
341 $parts[] =
'(' . implode(
' OR ', $sender_conditions) .
')';
351 foreach ($text_conditions as $cond) {
352 if (($cond[0] ??
'') !==
'') {
353 $parts[] = $this->db->like(
356 '%%' . $cond[0] .
'%%',
362 if ($this->folder_id !==
null) {
366 if ($this->is_unread ===
true) {
367 $parts[] =
'm.m_status = ' . $this->db->quote(
'unread',
'text');
368 } elseif ($this->is_unread ===
false) {
369 $parts[] =
'm.m_status != ' . $this->db->quote(
'unread',
'text');
372 if ($this->is_system ===
true) {
374 } elseif ($this->is_system ===
false) {
378 if ($this->has_attachment ===
true) {
381 } elseif ($this->has_attachment ===
false) {
386 if ($this->period_start !==
null) {
387 $parts[] =
'm.send_time >= ' . $this->db->quote(
390 ->setTimezone(
new DateTimeZone(date_default_timezone_get()))
391 ->format(
'Y-m-d H:i:s'),
396 if ($this->period_end !==
null) {
397 $parts[] =
'm.send_time <= ' . $this->db->quote(
400 ->setTimezone(
new DateTimeZone(date_default_timezone_get()))
401 ->format(
'Y-m-d H:i:s'),
406 if (!empty($this->filtered_ids)) {
416 return ' WHERE ' . implode(
' AND ',
$parts);
withIsSystem(?bool $is_system)
DateTimeImmutable $period_end
Database query for mails of a user.
withHasAttachment(?bool $has_attachment)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
withFilteredIds(?array $filtered_ids)
MailBoxOrderColumn $order_column
countUnread()
Count the number of unread mails with applied filter.
queryMailIds()
Get a list of mail ids.
DateTimeImmutable $period_start
withOrderColumn(?MailBoxOrderColumn $order_column)
__construct(private readonly int $user_id,)
withOrderDirection(?string $order_direction)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withSender(?string $sender)
withPeriodEnd(?DateTimeImmutable $period_end)
count()
Count the number of all mails with applied filter.
withFolderId(?int $folder_id)
withRecipients(?string $recipients)
const DEFAULT_ORDER_DIRECTION
withPeriodStart(?DateTimeImmutable $period_start)
withSubject(?string $subject)
static _isEnabled($a_key)
query($short)
Query for mail data with applied filter.
withIsUnread(?bool $is_unread)
const DEFAULT_ORDER_COLUMN