-
Notifications
You must be signed in to change notification settings - Fork 0
/
Client.php
572 lines (503 loc) · 14.8 KB
/
Client.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
<?php
/*
* File: Client.php
* Category: -
* Author: M. Goldenbaum
* Created: 19.01.17 22:21
* Updated: -
*
* Description:
* -
*/
namespace Webklex\IMAP;
use Webklex\IMAP\Exceptions\ConnectionFailedException;
use Webklex\IMAP\Exceptions\GetMessagesFailedException;
use Webklex\IMAP\Exceptions\MessageSearchValidationException;
use Webklex\IMAP\Support\FolderCollection;
use Webklex\IMAP\Support\MessageCollection;
/**
* Class Client
*
* @package Webklex\IMAP
*/
class Client {
/**
* @var boolean|resource
*/
public $connection = false;
/**
* Server hostname.
*
* @var string
*/
public $host;
/**
* Server port.
*
* @var int
*/
public $port;
/**
* Service protocol.
*
* @var int
*/
public $protocol;
/**
* Server encryption.
* Supported: none, ssl or tls.
*
* @var string
*/
public $encryption;
/**
* If server has to validate cert.
*
* @var mixed
*/
public $validate_cert;
/**
* Account username/
*
* @var mixed
*/
public $username;
/**
* Account password.
*
* @var string
*/
public $password;
/**
* Read only parameter.
*
* @var bool
*/
protected $read_only = false;
/**
* Active folder.
*
* @var Folder
*/
protected $activeFolder = false;
/**
* Connected parameter
*
* @var bool
*/
protected $connected = false;
/**
* IMAP errors that might have ben occurred
*
* @var array $errors
*/
protected $errors = [];
/**
* All valid and available account config parameters
*
* @var array $validConfigKeys
*/
protected $validConfigKeys = ['host', 'port', 'encryption', 'validate_cert', 'username', 'password','protocol'];
/**
* Client constructor.
*
* @param array $config
*/
public function __construct($config = []) {
$this->setConfig($config);
}
/**
* Client destructor
*/
public function __destruct() {
$this->disconnect();
}
/**
* Set the Client configuration
*
* @param array $config
*
* @return self
*/
public function setConfig(array $config) {
$defaultAccount = config('imap.default');
$defaultConfig = config("imap.accounts.$defaultAccount");
foreach ($this->validConfigKeys as $key) {
$this->$key = isset($config[$key]) ? $config[$key] : $defaultConfig[$key];
}
return $this;
}
/**
* Get the current imap resource
*
* @return bool|resource
* @throws ConnectionFailedException
*/
public function getConnection() {
$this->checkConnection();
return $this->connection;
}
/**
* Set read only property and reconnect if it's necessary.
*
* @param bool $readOnly
*
* @return self
*/
public function setReadOnly($readOnly = true) {
$this->read_only = $readOnly;
return $this;
}
/**
* Determine if connection was established.
*
* @return bool
*/
public function isConnected() {
return $this->connected;
}
/**
* Determine if connection is in read only mode.
*
* @return bool
*/
public function isReadOnly() {
return $this->read_only;
}
/**
* Determine if connection was established and connect if not.
*
* @throws ConnectionFailedException
*/
public function checkConnection() {
if (!$this->isConnected() || $this->connection === false) {
$this->connect();
}
}
/**
* Connect to server.
*
* @param int $attempts
*
* @return $this
* @throws ConnectionFailedException
*/
public function connect($attempts = 3) {
$this->disconnect();
try {
$this->connection = imap_open(
$this->getAddress(),
$this->username,
$this->password,
$this->getOptions(),
$attempts,
config('imap.options.open')
);
$this->connected = !!$this->connection;
} catch (\ErrorException $e) {
$errors = imap_errors();
$message = $e->getMessage().'. '.implode("; ", (is_array($errors) ? $errors : array()));
throw new ConnectionFailedException($message);
}
return $this;
}
/**
* Disconnect from server.
*
* @return $this
*/
public function disconnect() {
if ($this->isConnected() && $this->connection !== false && is_integer($this->connection) === false) {
$this->errors = array_merge($this->errors, imap_errors() ?: []);
$this->connected = !imap_close($this->connection, CL_EXPUNGE);
}
return $this;
}
/**
* Get a folder instance by a folder name
* ---------------------------------------------
* PLEASE NOTE: This is an experimental function
* ---------------------------------------------
* @param string $folder_name
* @param int $attributes
* @param null|string $delimiter
*
* @return Folder
*/
public function getFolder($folder_name, $attributes = 32, $delimiter = null) {
$delimiter = $delimiter === null ? config('imap.options.delimiter', '/') : $delimiter;
$oFolder = new Folder($this, (object) [
'name' => $this->getAddress().$folder_name,
'attributes' => $attributes,
'delimiter' => $delimiter
]);
return $oFolder;
}
/**
* Get folders list.
* If hierarchical order is set to true, it will make a tree of folders, otherwise it will return flat array.
*
* @param boolean $hierarchical
* @param string|null $parent_folder
*
* @return FolderCollection
* @throws ConnectionFailedException
*/
public function getFolders($hierarchical = true, $parent_folder = null) {
$this->checkConnection();
$folders = FolderCollection::make([]);
$pattern = $parent_folder.($hierarchical ? '%' : '*');
$items = imap_getmailboxes($this->connection, $this->getAddress(), $pattern);
foreach ($items as $item) {
$folder = new Folder($this, $item);
if ($hierarchical && $folder->hasChildren()) {
$pattern = $folder->fullName.$folder->delimiter.'%';
$children = $this->getFolders(true, $pattern);
$folder->setChildren($children);
}
$folders->push($folder);
}
return $folders;
}
/**
* Open folder.
*
* @param Folder $folder
* @param int $attempts
*
* @throws ConnectionFailedException
*/
public function openFolder(Folder $folder, $attempts = 3) {
$this->checkConnection();
if ($this->activeFolder !== $folder) {
$this->activeFolder = $folder;
imap_reopen($this->getConnection(), $folder->path, $this->getOptions(), $attempts);
}
}
/**
* Create a new Folder
* @param string $name
* @param boolean $expunge
*
* @return bool
* @throws ConnectionFailedException
*/
public function createFolder($name, $expunge = true) {
$this->checkConnection();
$status = imap_createmailbox($this->getConnection(), $this->getAddress() . imap_utf7_encode($name));
if($expunge) $this->expunge();
return $status;
}
/**
* Rename Folder
* @param string $old_name
* @param string $new_name
* @param boolean $expunge
*
* @return bool
* @throws ConnectionFailedException
*/
public function renameFolder($old_name, $new_name, $expunge = true) {
$this->checkConnection();
$status = imap_renamemailbox($this->getConnection(), $this->getAddress() . imap_utf7_encode($old_name), $this->getAddress() . imap_utf7_encode($new_name));
if($expunge) $this->expunge();
return $status;
}
/**
* Delete Folder
* @param string $name
* @param boolean $expunge
*
* @return bool
* @throws ConnectionFailedException
*/
public function deleteFolder($name, $expunge = true) {
$this->checkConnection();
$status = imap_deletemailbox($this->getConnection(), $this->getAddress() . imap_utf7_encode($name));
if($expunge) $this->expunge();
return $status;
}
/**
* Get messages from folder.
*
* @param Folder $folder
* @param string $criteria
* @param int|null $fetch_options
* @param boolean $fetch_body
* @param boolean $fetch_attachment
*
* @return MessageCollection
* @throws ConnectionFailedException
* @throws Exceptions\InvalidWhereQueryCriteriaException
* @throws GetMessagesFailedException
* @throws MessageSearchValidationException
*
* @deprecated 1.0.5.2:2.0.0 No longer needed. Use Folder::getMessages() instead
* @see Folder::getMessages()
*/
public function getMessages(Folder $folder, $criteria = 'ALL', $fetch_options = null, $fetch_body = true, $fetch_attachment = true, $fetch_flags = false) {
return $folder->getMessages($criteria, $fetch_options, $fetch_body, $fetch_attachment, $fetch_flags);
}
/**
* Get all unseen messages from folder
*
* @param Folder $folder
* @param string $criteria
* @param int|null $fetch_options
* @param boolean $fetch_body
* @param boolean $fetch_attachment
*
* @return MessageCollection
* @throws ConnectionFailedException
* @throws Exceptions\InvalidWhereQueryCriteriaException
* @throws GetMessagesFailedException
* @throws MessageSearchValidationException
*
* @deprecated 1.0.5:2.0.0 No longer needed. Use Folder::getMessages('UNSEEN') instead
* @see Folder::getMessages()
*/
public function getUnseenMessages(Folder $folder, $criteria = 'UNSEEN', $fetch_options = null, $fetch_body = true, $fetch_attachment = true, $fetch_flags = false) {
return $folder->getUnseenMessages($criteria, $fetch_options, $fetch_body, $fetch_attachment, $fetch_flags);
}
/**
* Search messages by a given search criteria
*
* @param array $where
* @param Folder $folder
* @param int|null $fetch_options
* @param boolean $fetch_body
* @param string $charset
* @param boolean $fetch_attachment
*
* @return MessageCollection
* @throws ConnectionFailedException
* @throws Exceptions\InvalidWhereQueryCriteriaException
* @throws GetMessagesFailedException
* @throws MessageSearchValidationException
*
* @deprecated 1.0.5:2.0.0 No longer needed. Use Folder::searchMessages() instead
* @see Folder::searchMessages()
*
*/
public function searchMessages(array $where, Folder $folder, $fetch_options = null, $fetch_body = true, $charset = "UTF-8", $fetch_attachment = true, $fetch_flags = false) {
return $folder->searchMessages($where, $fetch_options, $fetch_body, $charset, $fetch_attachment, $fetch_flags);
}
/**
* Get option for imap_open and imap_reopen.
* It supports only isReadOnly feature.
*
* @return int
*/
protected function getOptions() {
return ($this->isReadOnly()) ? OP_READONLY : 0;
}
/**
* Get full address of mailbox.
*
* @return string
*/
protected function getAddress() {
$address = "{".$this->host.":".$this->port."/".($this->protocol ? $this->protocol : 'imap');
if (!$this->validate_cert) {
$address .= '/novalidate-cert';
}
if (in_array($this->encryption,['tls','ssl'])) {
$address .= '/'.$this->encryption;
}
$address .= '}';
return $address;
}
/**
* Retrieve the quota level settings, and usage statics per mailbox
*
* @return array
* @throws ConnectionFailedException
*/
public function getQuota() {
$this->checkConnection();
return imap_get_quota($this->getConnection(), 'user.'.$this->username);
}
/**
* Retrieve the quota settings per user
*
* @param string $quota_root
*
* @return array
* @throws ConnectionFailedException
*/
public function getQuotaRoot($quota_root = 'INBOX') {
$this->checkConnection();
return imap_get_quotaroot($this->getConnection(), $quota_root);
}
/**
* Gets the number of messages in the current mailbox
*
* @return int
* @throws ConnectionFailedException
*/
public function countMessages() {
$this->checkConnection();
return imap_num_msg($this->connection);
}
/**
* Gets the number of recent messages in current mailbox
*
* @return int
* @throws ConnectionFailedException
*/
public function countRecentMessages() {
$this->checkConnection();
return imap_num_recent($this->connection);
}
/**
* Returns all IMAP alert messages that have occurred
*
* @return array
*/
public function getAlerts() {
return imap_alerts();
}
/**
* Returns all of the IMAP errors that have occurred
*
* @return array
*/
public function getErrors() {
$this->errors = array_merge($this->errors, imap_errors() ?: []);
return $this->errors;
}
/**
* Gets the last IMAP error that occurred during this page request
*
* @return string
*/
public function getLastError() {
return imap_last_error();
}
/**
* Delete all messages marked for deletion
*
* @return bool
* @throws ConnectionFailedException
*/
public function expunge() {
$this->checkConnection();
return imap_expunge($this->connection);
}
/**
* Check current mailbox
*
* @return object {
* Date [string(37) "Wed, 8 Mar 2017 22:17:54 +0100 (CET)"] current system time formatted according to » RFC2822
* Driver [string(4) "imap"] protocol used to access this mailbox: POP3, IMAP, NNTP
* Mailbox ["{[email protected]:993/imap/user="[email protected]"}INBOX"] the mailbox name
* Nmsgs [int(1)] number of messages in the mailbox
* Recent [int(0)] number of recent messages in the mailbox
* }
* @throws ConnectionFailedException
*/
public function checkCurrentMailbox() {
$this->checkConnection();
return imap_check($this->connection);
}
}