MailProxy.php
7.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
<?php
namespace Service;
use Lib\Mail\MailFun;
use Model\emailSql;
use Model\listsSql;
/**
* @author:dc
* @time 2025/3/11 9:20
* Class MailProxy
* @package Service
*/
class MailProxy {
/** 原域名
* @var
*/
protected $originImapHost = '';
protected $originSmtpHost = '';
/**
* 代理服务器
* @var string
*/
private $proxyImapHost = '';
private $proxySmtpHost = '';
/**
* 代理配置
* @var array
*/
protected $config = [
'smtp.gmail.com:465' => '10087',
'imap.gmail.com:993' => '10086',
'imap-mail.outlook.com:993' => '10088',
'smtp-mail.outlook.com:465' => '10089',
'imap.mail.yahoo.com:993' => '10092',
'smtp.mail.yahoo.com:465' => '10093',
'imaphz.qiye.163.com:993' => '10080',
'smtphz.qiye.163.com:465' => '10081',
'imap.qiye.aliyun.com:993' => '10094',
'smtp.qiye.aliyun.com:465' => '10095',
// 'imap.qq.com:993' => '10096',
// 'smtp.qq.com:465' => '10097',
];
/**
* 代理服务器 地址
* @var string[]
*/
protected $proxyService = [
'43.134.162.250', // 这个是新加坡服务器 代理
'119.28.113.113', // 这个是新加坡服务器 代理02
// '43.154.117.107', // 这个是 shopk的那台服务器
];
/**
* 分配到的ip服务
* @var string
*/
protected $assignIp = '';
/**
* 邮箱
* @var string
*/
protected $email = '';
protected $defaultIp = '';
/**
* MailProxy constructor.
* @param string $email
* @param string $imap
* @param string $smtp
* @param string $default
* @throws \Exception
*/
public function __construct(string $email, string $imap, string $smtp,string $default='')
{
$this->email = str_replace(['"',"'"],'',$email);
if($default){
$this->defaultIp = $default;
}
// 先分配
$this->assignEmail();
$this->originImapHost = $imap;
$this->originSmtpHost = $smtp;
// 不需要分配
if($this->assignIp===false){
// 解析
$this->proxyImapHost = $imap;
// 解析
$this->proxySmtpHost = $smtp;
}else{
// 解析
$this->proxyImapHost = $this->parse($imap,993);
// 解析
$this->proxySmtpHost = $this->parse($smtp,465);
}
}
/**
* 代理地址
* @author:dc
* @time 2025/3/13 17:38
*/
public function getImapProxy(){
return $this->proxyImapHost;
}
/**
* 代理地址
* @return string
* @author:dc
* @time 2025/3/14 10:31
*/
public function getSmtpProxy(){
return $this->proxySmtpHost;
}
/**
* @return mixed
*/
public function getOriginImapHost(): string
{
return $this->originImapHost;
}
/**
* @return string
*/
public function getOriginSmtpHost(): string
{
return $this->originSmtpHost;
}
/**
* 解析地址
* @param string $host
* @param int $port
* @return string
* @author:dc
* @time 2025/3/13 17:18
*/
public function parse(string $host, int $port){
$host = parse_url($host);
// 协议
$scheme = $host['scheme']??'ssl';
// 地址
$serve = strtolower(empty($host['host']) ? $host['path'] : $host['host']);
// 传入的是代理地址 并且是数据库里面已分配的ip
if(in_array($serve,$this->proxyService)){
// 传入的服务器 和 分配的不一致 更新分配的
if($serve != $this->assignIp){
$this->assignIp = $serve;
// 更新 ip
$this->updateIp();
}
}else{
// 端口
$port = (empty($host['port'])?$port:$host['port']);
// 端口不在,说明没有配置
if(empty($this->config[$serve.':'.$port])){
// 返回不代理
$this->assignIp = $serve;
}else{
if(in_array($this->assignIp,$this->proxyService)){
$port = $this->config[$serve.':'.$port]; // 代理服务器端口
}
}
}
// 组装
$proxyHost = $scheme.'://'.$this->assignIp.":".(empty($host['port'])?$port:$host['port']);
return implode(':',MailFun::getHostPort($proxyHost));
}
/**
* 分配邮箱 到 服务器
* @author:dc
* @time 2025/3/11 18:01
*/
private function assignEmail(){
$data = db()->throw()->first('select * from mail_proxy where email = "'.$this->email.'"');
// 存在记录 并且 还在服务器列表
if($data && in_array($data['ip'],$this->proxyService)){
$this->assignIp = $data['ip'];
return ;
}
if(!$data){
// 如果 已经有之前的邮箱了, 就不进行代理了
if(db()->count(emailSql::first($this->email))){
$this->assignIp = false;
return ;
}
}
// 默认指定 ip
if($this->defaultIp){
if($data){
$this->assignIp = $this->defaultIp;
if($data['ip'] == $this->defaultIp){
return ;
}else{
$this->updateIp();
}
}else{
$this->createIp();
}
return ;
}
// 一个月活跃用户
$t = date('Y-m-d H:i:s',strtotime("-30 day"));
foreach ($this->proxyService as $ip){
$num = db()->count("select count(*) from `mail_proxy` where `status` = 1 and `time` > '{$t}' and `ip` = '{$ip}'");
// 每个ip分配1000个
if($num<1000){
$this->assignIp = $ip;
// 如果某个服务器 停止了,进来了就要重新分配
if($data){
$this->updateIp();
}else{
$this->createIp();
}
return ;
}
}
throw new \Exception('没有资源可分配');
}
/**
* 更新ip
* @param $ip
* @author:dc
* @time 2025/3/14 15:55
*/
protected function updateIp(){
db()->throw()->update('mail_proxy',[
'ip' => $this->assignIp,
'time' => date('Y-m-d H:i:s'),
],dbWhere(['email'=>$this->email]),false);
}
/**
* 创建
* @author:dc
* @time 2025/3/14 15:57
*/
protected function createIp(){
db()->throw()->insert('mail_proxy',[
'email' => $this->email,
'ip' => $this->assignIp,
'time' => date('Y-m-d H:i:s'),
'status' => 0
],false);
}
/**
* 标记为正常使用代理
* @author:dc
* @time 2025/3/14 14:39
*/
public function proxySuccess(){
db()->update('mail_proxy',[
'status' => 1,
'time' => date('Y-m-d H:i:s'),
],dbWhere(['email'=>$this->email]),false);
}
}