forked from Webklex/php-imap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Query.php
1100 lines (980 loc) · 29.5 KB
/
Query.php
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
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/*
* File: Query.php
* Category: -
* Author: M. Goldenbaum
* Created: 21.07.18 18:54
* Updated: -
*
* Description:
* -
*/
namespace Webklex\PHPIMAP\Query;
use Carbon\Carbon;
use Exception;
use Illuminate\Pagination\LengthAwarePaginator;
use Illuminate\Support\Collection;
use ReflectionException;
use Webklex\PHPIMAP\Client;
use Webklex\PHPIMAP\Exceptions\AuthFailedException;
use Webklex\PHPIMAP\Exceptions\ConnectionFailedException;
use Webklex\PHPIMAP\Exceptions\EventNotFoundException;
use Webklex\PHPIMAP\Exceptions\GetMessagesFailedException;
use Webklex\PHPIMAP\Exceptions\ImapBadRequestException;
use Webklex\PHPIMAP\Exceptions\ImapServerErrorException;
use Webklex\PHPIMAP\Exceptions\InvalidMessageDateException;
use Webklex\PHPIMAP\Exceptions\MessageContentFetchingException;
use Webklex\PHPIMAP\Exceptions\MessageFlagException;
use Webklex\PHPIMAP\Exceptions\MessageHeaderFetchingException;
use Webklex\PHPIMAP\Exceptions\MessageNotFoundException;
use Webklex\PHPIMAP\Exceptions\MessageSearchValidationException;
use Webklex\PHPIMAP\Exceptions\ResponseException;
use Webklex\PHPIMAP\Exceptions\RuntimeException;
use Webklex\PHPIMAP\IMAP;
use Webklex\PHPIMAP\Message;
use Webklex\PHPIMAP\Support\MessageCollection;
/**
* Class Query
*
* @package Webklex\PHPIMAP\Query
*/
class Query {
/** @var Collection $query */
protected Collection $query;
/** @var string $raw_query */
protected string $raw_query;
/** @var string[] $extensions */
protected array $extensions;
/** @var Client $client */
protected Client $client;
/** @var ?int $limit */
protected ?int $limit = null;
/** @var int $page */
protected int $page = 1;
/** @var ?int $fetch_options */
protected ?int $fetch_options = null;
/** @var boolean $fetch_body */
protected bool $fetch_body = true;
/** @var boolean $fetch_flags */
protected bool $fetch_flags = true;
/** @var int|string $sequence */
protected mixed $sequence = IMAP::NIL;
/** @var string $fetch_order */
protected string $fetch_order;
/** @var string $date_format */
protected string $date_format;
/** @var bool $soft_fail */
protected bool $soft_fail = false;
/** @var array $errors */
protected array $errors = [];
/**
* Query constructor.
* @param Client $client
* @param string[] $extensions
*/
public function __construct(Client $client, array $extensions = []) {
$this->setClient($client);
$config = $this->client->getConfig();
$this->sequence = $config->get('options.sequence', IMAP::ST_MSGN);
if ($config->get('options.fetch') === IMAP::FT_PEEK) $this->leaveUnread();
if ($config->get('options.fetch_order') === 'desc') {
$this->fetch_order = 'desc';
} else {
$this->fetch_order = 'asc';
}
$this->date_format = $config->get('date_format', 'd M y');
$this->soft_fail = $config->get('options.soft_fail', false);
$this->setExtensions($extensions);
$this->query = new Collection();
$this->boot();
}
/**
* Instance boot method for additional functionality
*/
protected function boot(): void {
}
/**
* Parse a given value
* @param mixed $value
*
* @return string
*/
protected function parse_value(mixed $value): string {
if ($value instanceof Carbon) {
$value = $value->format($this->date_format);
}
return (string)$value;
}
/**
* Check if a given date is a valid carbon object and if not try to convert it
* @param mixed $date
*
* @return Carbon
* @throws MessageSearchValidationException
*/
protected function parse_date(mixed $date): Carbon {
if ($date instanceof Carbon) return $date;
try {
$date = Carbon::parse($date);
} catch (Exception) {
throw new MessageSearchValidationException();
}
return $date;
}
/**
* Get the raw IMAP search query
*
* @return string
*/
public function generate_query(): string {
$query = '';
$this->query->each(function($statement) use (&$query) {
if (count($statement) == 1) {
$query .= $statement[0];
} else {
if ($statement[1] === null) {
$query .= $statement[0];
} else {
if (is_numeric($statement[1])) {
$query .= $statement[0] . ' ' . $statement[1];
} else {
$query .= $statement[0] . ' "' . $statement[1] . '"';
}
}
}
$query .= ' ';
});
$this->raw_query = trim($query);
return $this->raw_query;
}
/**
* Perform an imap search request
*
* @return Collection
* @throws GetMessagesFailedException
* @throws AuthFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws ResponseException
*/
protected function search(): Collection {
$this->generate_query();
try {
$available_messages = $this->client->getConnection()->search([$this->getRawQuery()], $this->sequence)->validatedData();
return new Collection($available_messages);
} catch (RuntimeException|ConnectionFailedException $e) {
throw new GetMessagesFailedException("failed to fetch messages", 0, $e);
}
}
/**
* Count all available messages matching the current search criteria
*
* @return int
* @throws AuthFailedException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws ResponseException
*/
public function count(): int {
return $this->search()->count();
}
/**
* Fetch a given id collection
* @param Collection $available_messages
*
* @return array
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws RuntimeException
* @throws ResponseException
*/
protected function fetch(Collection $available_messages): array {
if ($this->fetch_order === 'desc') {
$available_messages = $available_messages->reverse();
}
$uids = $available_messages->forPage($this->page, $this->limit)->toArray();
$extensions = $this->getExtensions();
if (empty($extensions) === false && method_exists($this->client->getConnection(), "fetch")) {
// this polymorphic call is fine - the method exists at this point
$extensions = $this->client->getConnection()->fetch($extensions, $uids, null, $this->sequence)->validatedData();
}
$flags = $this->client->getConnection()->flags($uids, $this->sequence)->validatedData();
$headers = $this->client->getConnection()->headers($uids, "RFC822", $this->sequence)->validatedData();
$contents = [];
if ($this->getFetchBody()) {
$contents = $this->client->getConnection()->content($uids, "RFC822", $this->sequence)->validatedData();
}
return [
"uids" => $uids,
"flags" => $flags,
"headers" => $headers,
"contents" => $contents,
"extensions" => $extensions,
];
}
/**
* Make a new message from given raw components
* @param integer $uid
* @param integer $msglist
* @param string $header
* @param string $content
* @param array $flags
*
* @return Message|null
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws EventNotFoundException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws ReflectionException
* @throws ResponseException
*/
protected function make(int $uid, int $msglist, string $header, string $content, array $flags): ?Message {
try {
return Message::make($uid, $msglist, $this->getClient(), $header, $content, $flags, $this->getFetchOptions(), $this->sequence);
} catch (RuntimeException|MessageFlagException|InvalidMessageDateException|MessageContentFetchingException $e) {
$this->setError($uid, $e);
}
$this->handleException($uid);
return null;
}
/**
* Get the message key for a given message
* @param string $message_key
* @param integer $msglist
* @param Message $message
*
* @return string
*/
protected function getMessageKey(string $message_key, int $msglist, Message $message): string {
$key = match ($message_key) {
'number' => $message->getMessageNo(),
'list' => $msglist,
'uid' => $message->getUid(),
default => $message->getMessageId(),
};
return (string)$key;
}
/**
* Curates a given collection aof messages
* @param Collection $available_messages
*
* @return MessageCollection
* @throws GetMessagesFailedException
*/
public function curate_messages(Collection $available_messages): MessageCollection {
try {
if ($available_messages->count() > 0) {
return $this->populate($available_messages);
}
return MessageCollection::make();
} catch (Exception $e) {
throw new GetMessagesFailedException($e->getMessage(), 0, $e);
}
}
/**
* Populate a given id collection and receive a fully fetched message collection
* @param Collection $available_messages
*
* @return MessageCollection
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws EventNotFoundException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws ReflectionException
* @throws RuntimeException
* @throws ResponseException
*/
protected function populate(Collection $available_messages): MessageCollection {
$messages = MessageCollection::make();
$config = $this->client->getConfig();
$messages->total($available_messages->count());
$message_key = $config->get('options.message_key');
$raw_messages = $this->fetch($available_messages);
$msglist = 0;
foreach ($raw_messages["headers"] as $uid => $header) {
$content = $raw_messages["contents"][$uid] ?? "";
$flag = $raw_messages["flags"][$uid] ?? [];
$extensions = $raw_messages["extensions"][$uid] ?? [];
$message = $this->make($uid, $msglist, $header, $content, $flag);
foreach ($extensions as $key => $extension) {
$message->getHeader()->set($key, $extension);
}
if ($message !== null) {
$key = $this->getMessageKey($message_key, $msglist, $message);
$messages->put("$key", $message);
}
$msglist++;
}
return $messages;
}
/**
* Fetch the current query and return all found messages
*
* @return MessageCollection
* @throws AuthFailedException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws ResponseException
*/
public function get(): MessageCollection {
return $this->curate_messages($this->search());
}
/**
* Fetch the current query as chunked requests
* @param callable $callback
* @param int $chunk_size
* @param int $start_chunk
*
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws EventNotFoundException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws ReflectionException
* @throws RuntimeException
* @throws ResponseException
*/
public function chunked(callable $callback, int $chunk_size = 10, int $start_chunk = 1): void {
$start_chunk = max($start_chunk,1);
$chunk_size = max($chunk_size,1);
$skipped_messages_count = $chunk_size * ($start_chunk-1);
$available_messages = $this->search();
$available_messages_count = max($available_messages->count() - $skipped_messages_count,0);
if ($available_messages_count > 0) {
$old_limit = $this->limit;
$old_page = $this->page;
$this->limit = $chunk_size;
$this->page = $start_chunk;
$handled_messages_count = 0;
do {
$messages = $this->populate($available_messages);
$handled_messages_count += $messages->count();
$callback($messages, $this->page);
$this->page++;
} while ($handled_messages_count < $available_messages_count);
$this->limit = $old_limit;
$this->page = $old_page;
}
}
/**
* Paginate the current query
* @param int $per_page Results you which to receive per page
* @param null $page The current page you are on (e.g. 0, 1, 2, ...) use `null` to enable auto mode
* @param string $page_name The page name / uri parameter used for the generated links and the auto mode
*
* @return LengthAwarePaginator
* @throws AuthFailedException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws ResponseException
*/
public function paginate(int $per_page = 5, $page = null, string $page_name = 'imap_page'): LengthAwarePaginator {
if ($page === null && isset($_GET[$page_name]) && $_GET[$page_name] > 0) {
$this->page = intval($_GET[$page_name]);
} elseif ($page > 0) {
$this->page = (int)$page;
}
$this->limit = $per_page;
return $this->get()->paginate($per_page, $this->page, $page_name, true);
}
/**
* Get a new Message instance
* @param int $uid
* @param null $msglist
* @param null $sequence
*
* @return Message
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws EventNotFoundException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws InvalidMessageDateException
* @throws MessageContentFetchingException
* @throws MessageFlagException
* @throws MessageHeaderFetchingException
* @throws RuntimeException
* @throws ResponseException
*/
public function getMessage(int $uid, $msglist = null, $sequence = null): Message {
return new Message($uid, $msglist, $this->getClient(), $this->getFetchOptions(), $this->getFetchBody(), $this->getFetchFlags(), $sequence ?: $this->sequence);
}
/**
* Get a message by its message number
* @param $msgn
* @param null $msglist
*
* @return Message
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws EventNotFoundException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws InvalidMessageDateException
* @throws MessageContentFetchingException
* @throws MessageFlagException
* @throws MessageHeaderFetchingException
* @throws RuntimeException
* @throws ResponseException
*/
public function getMessageByMsgn($msgn, $msglist = null): Message {
return $this->getMessage($msgn, $msglist, IMAP::ST_MSGN);
}
/**
* Get a message by its uid
* @param $uid
*
* @return Message
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws EventNotFoundException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws InvalidMessageDateException
* @throws MessageContentFetchingException
* @throws MessageFlagException
* @throws MessageHeaderFetchingException
* @throws RuntimeException
* @throws ResponseException
*/
public function getMessageByUid($uid): Message {
return $this->getMessage($uid, null, IMAP::ST_UID);
}
/**
* Filter all available uids by a given closure and get a curated list of messages
* @param callable $closure
*
* @return MessageCollection
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws MessageNotFoundException
* @throws RuntimeException
* @throws ResponseException
*/
public function filter(callable $closure): MessageCollection {
$connection = $this->getClient()->getConnection();
$uids = $connection->getUid()->validatedData();
$available_messages = new Collection();
if (is_array($uids)) {
foreach ($uids as $id) {
if ($closure($id)) {
$available_messages->push($id);
}
}
}
return $this->curate_messages($available_messages);
}
/**
* Get all messages with an uid greater or equal to a given UID
* @param int $uid
*
* @return MessageCollection
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws MessageNotFoundException
* @throws RuntimeException
* @throws ResponseException
*/
public function getByUidGreaterOrEqual(int $uid): MessageCollection {
return $this->filter(function($id) use ($uid) {
return $id >= $uid;
});
}
/**
* Get all messages with an uid greater than a given UID
* @param int $uid
*
* @return MessageCollection
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws MessageNotFoundException
* @throws RuntimeException
* @throws ResponseException
*/
public function getByUidGreater(int $uid): MessageCollection {
return $this->filter(function($id) use ($uid) {
return $id > $uid;
});
}
/**
* Get all messages with an uid lower than a given UID
* @param int $uid
*
* @return MessageCollection
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws MessageNotFoundException
* @throws RuntimeException
* @throws ResponseException
*/
public function getByUidLower(int $uid): MessageCollection {
return $this->filter(function($id) use ($uid) {
return $id < $uid;
});
}
/**
* Get all messages with an uid lower or equal to a given UID
* @param int $uid
*
* @return MessageCollection
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws MessageNotFoundException
* @throws RuntimeException
* @throws ResponseException
*/
public function getByUidLowerOrEqual(int $uid): MessageCollection {
return $this->filter(function($id) use ($uid) {
return $id <= $uid;
});
}
/**
* Get all messages with an uid greater than a given UID
* @param int $uid
*
* @return MessageCollection
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws GetMessagesFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws MessageNotFoundException
* @throws RuntimeException
* @throws ResponseException
*/
public function getByUidLowerThan(int $uid): MessageCollection {
return $this->filter(function($id) use ($uid) {
return $id < $uid;
});
}
/**
* Don't mark messages as read when fetching
*
* @return $this
*/
public function leaveUnread(): static {
$this->setFetchOptions(IMAP::FT_PEEK);
return $this;
}
/**
* Mark all messages as read when fetching
*
* @return $this
*/
public function markAsRead(): static {
$this->setFetchOptions(IMAP::FT_UID);
return $this;
}
/**
* Set the sequence type
* @param int $sequence
*
* @return $this
*/
public function setSequence(int $sequence): static {
$this->sequence = $sequence;
return $this;
}
/**
* Get the sequence type
*
* @return int|string
*/
public function getSequence(): int|string {
return $this->sequence;
}
/**
* @return Client
* @throws AuthFailedException
* @throws ConnectionFailedException
* @throws ImapBadRequestException
* @throws ImapServerErrorException
* @throws RuntimeException
* @throws ResponseException
*/
public function getClient(): Client {
$this->client->checkConnection();
return $this->client;
}
/**
* Set the limit and page for the current query
* @param int $limit
* @param int $page
*
* @return $this
*/
public function limit(int $limit, int $page = 1): static {
if ($page >= 1) $this->page = $page;
$this->limit = $limit;
return $this;
}
/**
* Get the current query collection
*
* @return Collection
*/
public function getQuery(): Collection {
return $this->query;
}
/**
* Set all query parameters
* @param array $query
*
* @return $this
*/
public function setQuery(array $query): static {
$this->query = new Collection($query);
return $this;
}
/**
* Get the raw query
*
* @return string
*/
public function getRawQuery(): string {
return $this->raw_query;
}
/**
* Set the raw query
* @param string $raw_query
*
* @return $this
*/
public function setRawQuery(string $raw_query): static {
$this->raw_query = $raw_query;
return $this;
}
/**
* Get all applied extensions
*
* @return string[]
*/
public function getExtensions(): array {
return $this->extensions;
}
/**
* Set all extensions that should be used
* @param string[] $extensions
*
* @return $this
*/
public function setExtensions(array $extensions): static {
$this->extensions = $extensions;
if (count($this->extensions) > 0) {
if (in_array("UID", $this->extensions) === false) {
$this->extensions[] = "UID";
}
}
return $this;
}
/**
* Set the client instance
* @param Client $client
*
* @return $this
*/
public function setClient(Client $client): static {
$this->client = $client;
return $this;
}
/**
* Get the set fetch limit
*
* @return ?int
*/
public function getLimit(): ?int {
return $this->limit;
}
/**
* Set the fetch limit
* @param int $limit
*
* @return $this
*/
public function setLimit(int $limit): static {
$this->limit = $limit <= 0 ? null : $limit;
return $this;
}
/**
* Get the set page
*
* @return int
*/
public function getPage(): int {
return $this->page;
}
/**
* Set the page
* @param int $page
*
* @return $this
*/
public function setPage(int $page): static {
$this->page = $page;
return $this;
}
/**
* Set the fetch option flag
* @param int $fetch_options
*
* @return $this
*/
public function setFetchOptions(int $fetch_options): static {
$this->fetch_options = $fetch_options;
return $this;
}
/**
* Set the fetch option flag
* @param int $fetch_options
*
* @return $this
*/
public function fetchOptions(int $fetch_options): static {
return $this->setFetchOptions($fetch_options);
}
/**
* Get the fetch option flag
*
* @return ?int
*/
public function getFetchOptions(): ?int {
return $this->fetch_options;
}
/**
* Get the fetch body flag
*
* @return boolean
*/
public function getFetchBody(): bool {
return $this->fetch_body;
}
/**
* Set the fetch body flag
* @param boolean $fetch_body
*
* @return $this
*/
public function setFetchBody(bool $fetch_body): static {
$this->fetch_body = $fetch_body;
return $this;
}
/**
* Set the fetch body flag
* @param boolean $fetch_body
*
* @return $this
*/
public function fetchBody(bool $fetch_body): static {
return $this->setFetchBody($fetch_body);
}
/**
* Get the fetch body flag
*
* @return bool
*/
public function getFetchFlags(): bool {
return $this->fetch_flags;
}
/**
* Set the fetch flag
* @param bool $fetch_flags
*
* @return $this
*/
public function setFetchFlags(bool $fetch_flags): static {
$this->fetch_flags = $fetch_flags;
return $this;
}
/**
* Set the fetch order
* @param string $fetch_order
*
* @return $this
*/
public function setFetchOrder(string $fetch_order): static {
$fetch_order = strtolower($fetch_order);
if (in_array($fetch_order, ['asc', 'desc'])) {
$this->fetch_order = $fetch_order;
}
return $this;
}
/**
* Set the fetch order
* @param string $fetch_order
*
* @return $this
*/
public function fetchOrder(string $fetch_order): static {
return $this->setFetchOrder($fetch_order);
}
/**
* Get the fetch order
*
* @return string
*/
public function getFetchOrder(): string {
return $this->fetch_order;
}
/**
* Set the fetch order to ascending
*
* @return $this
*/
public function setFetchOrderAsc(): static {
return $this->setFetchOrder('asc');
}
/**
* Set the fetch order to ascending
*
* @return $this
*/
public function fetchOrderAsc(): static {
return $this->setFetchOrderAsc();
}
/**
* Set the fetch order to descending
*
* @return $this
*/
public function setFetchOrderDesc(): static {
return $this->setFetchOrder('desc');
}
/**
* Set the fetch order to descending
*
* @return $this
*/
public function fetchOrderDesc(): static {
return $this->setFetchOrderDesc();
}
/**
* Set soft fail mode
* @var boolean $state
*
* @return $this
*/
public function softFail(bool $state = true): static {
return $this->setSoftFail($state);
}
/**
* Set soft fail mode
*
* @var boolean $state
* @return $this
*/
public function setSoftFail(bool $state = true): static {