forked from DirectoryTree/ImapEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessageQuery.php
More file actions
553 lines (457 loc) · 13.2 KB
/
MessageQuery.php
File metadata and controls
553 lines (457 loc) · 13.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
<?php
namespace DirectoryTree\ImapEngine;
use DirectoryTree\ImapEngine\Collections\MessageCollection;
use DirectoryTree\ImapEngine\Connection\ConnectionInterface;
use DirectoryTree\ImapEngine\Connection\ImapQueryBuilder;
use DirectoryTree\ImapEngine\Connection\Responses\UntaggedResponse;
use DirectoryTree\ImapEngine\Connection\Tokens\Atom;
use DirectoryTree\ImapEngine\Enums\ImapFetchIdentifier;
use DirectoryTree\ImapEngine\Support\Str;
use Illuminate\Pagination\LengthAwarePaginator;
use Illuminate\Support\Collection;
use Illuminate\Support\Traits\Conditionable;
use Illuminate\Support\Traits\ForwardsCalls;
/**
* @mixin \DirectoryTree\ImapEngine\Connection\ImapQueryBuilder
*/
class MessageQuery
{
use Conditionable, ForwardsCalls;
/**
* The current page.
*/
protected int $page = 1;
/**
* The fetch limit.
*/
protected ?int $limit = null;
/**
* Whether to fetch the message body.
*/
protected bool $fetchBody = false;
/**
* Whether to fetch the message flags.
*/
protected bool $fetchFlags = false;
/**
* Whether to fetch the message headers.
*/
protected bool $fetchHeaders = false;
/**
* The fetch order.
*/
protected string $fetchOrder = 'desc';
/**
* Whether to leave messages fetched as unread by default.
*/
protected bool $fetchAsUnread = true;
/**
* The methods that should be returned from query builder.
*/
protected array $passthru = ['toimap', 'isempty'];
/**
* Constructor.
*/
public function __construct(
protected Folder $folder,
protected ImapQueryBuilder $query,
) {}
/**
* Handle dynamic method calls into the query builder.
*/
public function __call(string $method, array $parameters): mixed
{
if (in_array(strtolower($method), $this->passthru)) {
return $this->query->{$method}(...$parameters);
}
$this->forwardCallTo($this->query, $method, $parameters);
return $this;
}
/**
* Don't mark messages as read when fetching.
*/
public function leaveUnread(): static
{
$this->fetchAsUnread = true;
return $this;
}
/**
* Mark all messages as read when fetching.
*/
public function markAsRead(): static
{
$this->fetchAsUnread = false;
return $this;
}
/**
* Set the limit and page for the current query.
*/
public function limit(int $limit, int $page = 1): static
{
if ($page >= 1) {
$this->page = $page;
}
$this->limit = $limit;
return $this;
}
/**
* Get the set fetch limit.
*/
public function getLimit(): ?int
{
return $this->limit;
}
/**
* Set the fetch limit.
*/
public function setLimit(int $limit): static
{
$this->limit = max($limit, 1);
return $this;
}
/**
* Get the set page.
*/
public function getPage(): int
{
return $this->page;
}
/**
* Set the page.
*/
public function setPage(int $page): static
{
$this->page = $page;
return $this;
}
/**
* Determine if the body of messages is being fetched.
*/
public function isFetchingBody(): bool
{
return $this->fetchBody;
}
/**
* Determine if the flags of messages is being fetched.
*/
public function isFetchingFlags(): bool
{
return $this->fetchFlags;
}
/**
* Determine if the headers of messages is being fetched.
*/
public function isFetchingHeaders(): bool
{
return $this->fetchHeaders;
}
/**
* Fetch the body of messages.
*/
public function withFlags(): static
{
return $this->setFetchFlags(true);
}
/**
* Fetch the body of messages.
*/
public function withBody(): static
{
return $this->setFetchBody(true);
}
/**
* Fetch the body of messages.
*/
public function withHeaders(): static
{
return $this->setFetchHeaders(true);
}
/**
* Don't fetch the body of messages.
*/
public function withoutBody(): static
{
return $this->setFetchBody(false);
}
/**
* Don't fetch the body of messages.
*/
public function withoutHeaders(): static
{
return $this->setFetchHeaders(false);
}
/**
* Don't fetch the body of messages.
*/
public function withoutFlags(): static
{
return $this->setFetchFlags(false);
}
/**
* Set whether to fetch the flags.
*/
protected function setFetchFlags(bool $fetchFlags): static
{
$this->fetchFlags = $fetchFlags;
return $this;
}
/**
* Set the fetch body flag.
*/
protected function setFetchBody(bool $fetchBody): static
{
$this->fetchBody = $fetchBody;
return $this;
}
/**
* Set whether to fetch the headers.
*/
protected function setFetchHeaders(bool $fetchHeaders): static
{
$this->fetchHeaders = $fetchHeaders;
return $this;
}
/**
* Set the fetch order.
*/
public function setFetchOrder(string $fetchOrder): static
{
$fetchOrder = strtolower($fetchOrder);
if (in_array($fetchOrder, ['asc', 'desc'])) {
$this->fetchOrder = $fetchOrder;
}
return $this;
}
/**
* Get the fetch order.
*/
public function getFetchOrder(): string
{
return $this->fetchOrder;
}
/**
* Set the fetch order to 'ascending'.
*/
public function setFetchOrderAsc(): static
{
return $this->setFetchOrder('asc');
}
/**
* Set the fetch order to 'descending'.
*/
public function setFetchOrderDesc(): static
{
return $this->setFetchOrder('desc');
}
/**
* Execute an IMAP search request.
*/
protected function search(): Collection
{
// If the query is empty, default to fetching all.
if ($this->query->isEmpty()) {
$this->query->all();
}
$response = $this->connection()->search([
$this->query->toImap(),
]);
return new Collection(array_map(
fn (Atom $token) => $token->value,
$response->tokensAfter(2)
));
}
/**
* Count all available messages matching the current search criteria.
*/
public function count(): int
{
return $this->search()->count();
}
/**
* Fetch a given id collection.
*/
protected function fetch(Collection $messages): array
{
if ($this->fetchOrder === 'desc') {
$messages = $messages->reverse();
}
$uids = $messages->forPage($this->page, $this->limit)->toArray();
$flags = $this->fetchFlags ? $this->connection()
->flags($uids)
->mapWithKeys(function (UntaggedResponse $response) {
$data = $response->tokenAt(3);
$uid = $data->lookup('UID')->value;
$flags = $data->lookup('FLAGS')->values();
return [$uid => $flags];
}) : new Collection;
$headers = $this->fetchHeaders ? $this->connection()
->bodyHeader($uids, $this->fetchAsUnread)
->mapWithKeys(function (UntaggedResponse $response) {
$data = $response->tokenAt(3);
$uid = $data->lookup('UID')->value;
$headers = $data->lookup('[HEADER]')->value;
return [$uid => $headers];
}) : new Collection;
$contents = $this->fetchBody ? $this->connection()
->bodyText($uids, $this->fetchAsUnread)
->mapWithKeys(function (UntaggedResponse $response) {
$data = $response->tokenAt(3);
$uid = $data->lookup('UID')->value;
$contents = $data->lookup('[TEXT]')->value;
return [$uid => $contents];
}) : new Collection;
return [
'uids' => $uids,
'flags' => $flags,
'headers' => $headers,
'contents' => $contents,
];
}
/**
* Make a new message from given raw components.
*/
protected function newMessage(int $uid, array $flags, string $headers, string $contents): Message
{
return new Message(
$this->folder,
$uid,
$flags,
$headers,
$contents,
);
}
/**
* Process the collection of messages.
*/
protected function process(Collection $messages): MessageCollection
{
if ($messages->isNotEmpty()) {
return $this->populate($messages);
}
return MessageCollection::make();
}
/**
* Populate a given id collection and receive a fully fetched message collection.
*/
protected function populate(Collection $uids): MessageCollection
{
$messages = MessageCollection::make();
$messages->total($uids->count());
$rawMessages = $this->fetch($uids);
foreach ($rawMessages['uids'] as $uid) {
$flags = $rawMessages['flags'][$uid] ?? [];
$headers = $rawMessages['headers'][$uid] ?? '';
$contents = $rawMessages['contents'][$uid] ?? '';
$messages->push(
$this->newMessage($uid, $flags, $headers, $contents)
);
}
return $messages;
}
/**
* Get the first message in the resulting collection.
*/
public function first(): ?Message
{
return $this->limit(1)->get()->first();
}
/**
* Get the messages matching the current query.
*/
public function get(): MessageCollection
{
return $this->process($this->search());
}
/**
* Append a new message to the folder.
*/
public function append(string $message, mixed $flags = null): int
{
$result = $this->connection()->append(
$this->folder->path(), $message, Str::enums($flags),
);
return $result // TAG4 OK [APPENDUID <uidvalidity> <uid>] APPEND completed.
->tokenAt(2) // [APPENDUID <uidvalidity> <uid>]
->tokenAt(2) // <uid>
->value;
}
/**
* Execute a callback over each message via a chunked query.
*/
public function each(callable $callback, int $chunkSize = 10, int $startChunk = 1): void
{
$this->chunk(fn (MessageCollection $messages) => (
$messages->each($callback)
), $chunkSize, $startChunk);
}
/**
* Execute a callback over each chunk of messages.
*/
public function chunk(callable $callback, int $chunkSize = 10, int $startChunk = 1): void
{
$startChunk = max($startChunk, 1);
$chunkSize = max($chunkSize, 1);
// Get all search result tokens once.
$messages = $this->search();
// Calculate how many chunks there are
$totalChunks = (int) ceil($messages->count() / $chunkSize);
// If startChunk is beyond our total chunks, return early.
if ($startChunk > $totalChunks) {
return;
}
// Save previous state to restore later.
$previousLimit = $this->limit;
$previousPage = $this->page;
$this->limit = $chunkSize;
// Iterate from the starting chunk to the last chunk.
for ($page = $startChunk; $page <= $totalChunks; $page++) {
$this->page = $page;
// populate() will use $this->page to slice the results.
$hydrated = $this->populate($messages);
// If no messages are returned, break out to prevent infinite loop.
if ($hydrated->isEmpty()) {
break;
}
$callback($hydrated, $page);
}
// Restore the original state.
$this->limit = $previousLimit;
$this->page = $previousPage;
}
/**
* Paginate the current query.
*/
public function paginate(int $perPage = 5, $page = null, string $pageName = 'page'): LengthAwarePaginator
{
if (is_null($page) && isset($_GET[$pageName]) && $_GET[$pageName] > 0) {
$this->page = intval($_GET[$pageName]);
} elseif ($page > 0) {
$this->page = (int) $page;
}
$this->limit = $perPage;
return $this->get()->paginate($perPage, $this->page, $pageName, true);
}
/**
* Find a message by the given identifier type.
*/
public function find(int $id, ImapFetchIdentifier $identifier = ImapFetchIdentifier::Uid): Message
{
// If the sequence is not UID, we'll need to fetch the UID first.
$uid = match ($identifier) {
ImapFetchIdentifier::Uid => $id,
ImapFetchIdentifier::MessageNumber => $this->connection()->uid([$id]) // ResponseCollection
->firstOrFail() // Untagged response
->tokenAt(3) // ListData
->tokenAt(1) // Atom
->value // UID
};
return $this->process(new MessageCollection([$uid]))->first();
}
/**
* Get the connection instance.
*/
protected function connection(): ConnectionInterface
{
return $this->folder->mailbox()->connection();
}
}