forked from Webklex/laravel-imap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Client.php
495 lines (428 loc) · 11.5 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
<?php
/*
* File: Client.php
* Category: Helper
* Author: M. Goldenbaum
* Created: 19.01.17 22:21
* Updated: -
*
* Description:
* -
*/
namespace Webklex\IMAP;
use Illuminate\Support\Facades\Config;
use Webklex\IMAP\Exceptions\ConnectionFailedException;
use Webklex\IMAP\Exceptions\GetMessagesFailedException;
/**
* Class Client
*
* @package Webklex\IMAP
*/
class Client {
/**
* @var bool|resource
*/
public $connection = false;
/**
* Server hostname.
*
* @var string
*/
public $host;
/**
* Server port.
*
* @var int
*/
public $port;
/**
* 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;
/**
* 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($defaultConfig as $key => $default){
$this->$key = isset($config[$key]) ? $config[$key] : $default;
}
return $this;
}
/**
* Get the current imap resource
*
* @return resource
*/
public function getConnection(){
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.
*/
public function checkConnection() {
if (!$this->isConnected()) {
$this->connect();
}
}
/**
* Connect to server.
*
* @param int $attempts
*
* @return $this
* @throws ConnectionFailedException
*/
public function connect($attempts = 3) {
if ($this->isConnected()) {
$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->connected = ! imap_close($this->connection, CL_EXPUNGE);
}
return $this;
}
/**
* Get a folder instance by a folder name
* -------------------------------------------------------
* PLEASE NOTE: This is a completely 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 bool $hierarchical
* @param null $parent_folder
*
* @return array
*/
public function getFolders($hierarchical = true, $parent_folder = null) {
$this->checkConnection();
$folders = [];
if ($hierarchical) {
$pattern = $parent_folder.'%';
} else {
$pattern = $parent_folder.'*';
}
$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[] = $folder;
}
return $folders;
}
/**
* Open folder.
*
* @param Folder $folder
*/
public function openFolder(Folder $folder) {
$this->checkConnection();
if ($this->activeFolder != $folder) {
$this->activeFolder = $folder;
imap_reopen($this->connection, $folder->path, $this->getOptions(), 3);
}
}
/**
* Create a new Folder
*
* @param $name
*
* @return bool
*/
public function createFolder($name){
return imap_createmailbox($this->connection, imap_utf7_encode($name));
}
/**
* Get messages from folder.
*
* @param Folder $folder
* @param string $criteria
* @param integer $fetch_options
*
* @return array
* @throws GetMessagesFailedException
*/
public function getMessages(Folder $folder, $criteria = 'ALL', $fetch_options = null) {
$this->checkConnection();
try {
$this->openFolder($folder);
$messages = [];
$availableMessages = imap_search($this->connection, $criteria, SE_UID);
if ($availableMessages !== false) {
$msglist = 1;
foreach ($availableMessages as $msgno) {
$message = new Message($msgno, $msglist, $this, $fetch_options);
$messages[$message->message_id] = $message;
$msglist++;
}
}
return $messages;
} catch (\Exception $e) {
$message = $e->getMessage();
throw new GetMessagesFailedException($message);
}
}
/**
* Get all unseen messages from folder
*
* @param Folder $folder
* @param string $criteria
* @param integer $fetch_options
*
* @return array
* @throws GetMessagesFailedException
*/
public function getUnseenMessages(Folder $folder, $criteria = 'UNSEEN', $fetch_options = null) {
$this->checkConnection();
try {
$this->openFolder($folder);
$messages = [];
$availableMessages = imap_search($this->connection, $criteria, SE_UID);
if ($availableMessages !== false) {
$msglist = 1;
foreach ($availableMessages as $msgno) {
$message = new Message($msgno, $msglist, $this, $fetch_options);
$messages[$message->message_id] = $message;
$msglist++;
}
}
return $messages;
} catch (\Exception $e) {
$message = $e->getMessage();
throw new GetMessagesFailedException($message);
}
}
/**
* 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."/imap";
if (!$this->validate_cert) {
$address .= '/novalidate-cert';
}
if ($this->encryption == 'ssl') {
$address .= '/ssl';
}
$address .= '}';
return $address;
}
/**
* Retrieve the quota level settings, and usage statics per mailbox
*
* @return array
*/
public function getQuota(){
return imap_get_quota($this->connection, 'user.'.$this->username);
}
/**
* Retrieve the quota settings per user
*
* @param string $quota_root
*
* @return array
*/
public function getQuotaRoot($quota_root = 'INBOX'){
return imap_get_quotaroot($this->connection, $quota_root);
}
/**
* Gets the number of messages in the current mailbox
*
* @return int
*/
public function countMessages(){
return imap_num_msg($this->connection);
}
/**
* Gets the number of recent messages in current mailbox
*
* @return int
*/
public function countRecentMessages(){
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(){
return imap_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
*/
public function expunge(){
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
* }
*/
public function checkCurrentMailbox(){
return imap_check($this->connection);
}
}