ImapConfig.php
2.0 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
<?php
namespace Lib\Imap;
class ImapConfig {
protected string $host = '';
protected string $password = '';
protected string $email = '';
protected bool $debug = false;
/**
* 构造
* ImapConfig constructor.
* @param array $option
*/
public function __construct(array $option = [])
{
if(!empty($option['email'])) $this->setEmail($option['email']);
if(!empty($option['password'])) $this->setPassword($option['password']);
if(!empty($option['host'])) $this->setHost($option['host']);
if(!empty($option['debug'])) $this->debug($option['debug']);
}
/**
* @param string $email
*/
public function setEmail(string $email): static
{
$this->email = $email;
return $this;
}
/**
* @param string $host
*/
public function setHost(string $host): static
{
$this->host = $host;
// 是否带协议
if(!str_contains($this->host, '//')){
$this->host = 'ssl://'.$this->host;
}
// 是否带端口
if(substr_count($this->host,':')==1){
$this->host = $this->host.':993';
}
return $this;
}
/**
* @param string $password
*/
public function setPassword(string $password): static
{
$this->password = $password;
return $this;
}
/**
* @return string
*/
public function getEmail(): string
{
return $this->email;
}
/**
* @return string
*/
public function getHost(): string
{
return $this->host;
}
/**
* @return string
*/
public function getPassword(): string
{
return $this->password;
}
/**
* @param bool $debug
*/
public function debug(bool $debug = true): static
{
$this->debug = $debug;
return $this;
}
/**
* @return bool
*/
public function isDebug(): bool
{
return $this->debug;
}
}