19 declare(strict_types=1);
48 private readonly
bool $lucene_enabled,
51 $this->folder->getUserId()
53 ->withFolderId($this->folder->getFolderId())
54 ->withSender($this->
filter->getSender())
55 ->withRecipients($this->
filter->getRecipients())
56 ->withSubject($this->
filter->getSubject())
57 ->withBody($this->
filter->getBody())
58 ->withPeriodStart($this->
filter->getPeriodStart())
59 ->withPeriodEnd($this->
filter->getPeriodEnd())
60 ->withIsUnread($this->
filter->isUnread())
61 ->withIsSystem($this->
filter->isSystem())
62 ->withHasAttachment($this->
filter->hasAttachment());
64 if ($this->lucene_enabled && (
65 ($this->
filter->getSender() ??
'') !==
'' ||
66 ($this->
filter->getRecipients() ??
'') !==
'' ||
67 ($this->
filter->getSubject() ??
'') !==
'' ||
68 ($this->
filter->getBody() ??
'') !==
'' ||
69 ($this->
filter->getAttachment() ??
'') !==
'' 72 $query_parser->setFields([
73 'title' => $this->
filter->getSubject(),
74 'content' => $this->
filter->getBody(),
75 'mattachment' => $this->
filter->getAttachment(),
76 'msender' => $this->
filter->getSender(),
78 $query_parser->parse();
91 if ($this->count ===
null) {
92 $this->count = $this->mailbox_query->withFilteredIds($this->
getFilteredIds())->count();
103 if ($this->unread ===
null) {
104 $this->unread = $this->mailbox_query->withFilteredIds($this->
getFilteredIds())->countUnread();
116 return $this->mailbox_query
127 return $this->mailbox_query
140 ?
string $order_direction
142 return $this->mailbox_query
145 ->withOffset($offset)
146 ->withOrderColumn($order_column)
147 ->withOrderDirection($order_direction)
158 if ($this->filtered_ids ===
null &&
159 $this->lucene_result !==
null &&
160 $this->lucene_searcher !==
null) {
161 $this->lucene_searcher->search($this->folder->getUserId(), $this->folder->getFolderId());
162 $this->filtered_ids = $this->lucene_result->getIds();
174 $clone = clone $this;
175 $clone->filtered_ids = $ids;
getCount()
Get a cached count of mails for the filter criteria.
Database query for mails of a user.
getUnread()
Get a cached count of unread mails for the filter criteria.
forMailIds(array $ids)
Inject already filtered mail ids, e.g.
MailBoxQuery $mailbox_query
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getFilteredIds()
Get the cached mail ids from a lucene search for selected filter criteria These will be used as addit...
getPagedRecords(int $limit, int $offset, ?MailBoxOrderColumn $order_column, ?string $order_direction)
Get record objects of filtered and paged mails.
__construct(private readonly MailFolderData $folder, private readonly MailFilterData $filter, private readonly bool $lucene_enabled,)
ilMailSearchResult $lucene_result
Filter data for display of mail records Properties with null value will not be applied as a filter...
ilMailLuceneSearcher $lucene_searcher
filter(string $filter_id, $class_path, string $cmd, bool $activated=true, bool $expanded=true)
getRecords()
Get record objects of all filtered mails.
getMaiIds()
Get the ids of all filtered mails.