Home.php
6.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
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
<?php
namespace Controller;
use Lib\Mail\Mail;
use Lib\Mail\MailFun;
use Lib\Verify;
use Model\emailSql;
use Model\folderSql;
use Model\listsSql;
/**
* @author:dc
* @time 2023/2/13 11:28
* Class Home
* @package Controller
*/
class Home extends Base {
/**
* 邮件列表
* @author:dc
* @time 2023/2/17 14:12
*/
public function lists(){
// 分页 页数
$page = app()->request('page',1,'intval');
$page = $page ? $page : 1;
$limit = app()->request('limit',20,'intval');
$limit = $limit ? $limit : 1;
// 指定id
$ids = app()->request('mail_id');
$ids = is_array($ids) ? $ids : [$ids];
foreach ($ids as $i=>$d){
if(!is_numeric($d)){
unset($ids[$i]);
}
}
// 邮件文件夹的id
$folder_id = (int) app()->request('folder_id');
// 附件
$attachment = app()->request('attachment');
// 已读/未读
$seen = app()->request('seen',-1,'intval');
$where = ['email_id'=>$this->getEmails('id')];
//目录
if($folder_id) $where['folder_id'] = $folder_id;
if($ids) $where['id'] = $ids;
if($attachment) $where['is_file'] = 1; //附件
// 已读/未读
if(in_array($seen,[0,1])){
$where['seen'] = $seen;
}
$lists = db()->all(
listsSql::lists(
dbWhere($where),
$page,
$limit
)
);
// 总数
$total = db()->count(
listsSql::listCount(dbWhere($where))
);
app()->_json(listsPage($lists,$total,$page,$limit));
}
/**
* 发送邮件
* @author:dc
* @time 2023/2/18 17:32
*/
public function send_mail(){
$email = $this->getEmail();
$formData = Verify::checks([
'nickname|'.__('nickname') => ['required','max'=>50],
'subject|'.__('subject') => ['required','max'=>150],
'body|'.__('body_email') => ['required'],
'to|'.__('to_email') => ['required','array|string','email'],
'priority|'.__('priority_email') => ['in'=>[1,3,5]],
'files|'.__('files_email') => [
'file'=>[
'ext' => [],
'size' => 500,
'mine' => []
]
],
'receipt|'.__('receipt_email') => []
],[
]);
$ret = MailFun::sendEmail(
$email['smtp'],
$email['email'],
base64_decode($email['password']),
$formData['nickname']??'',
$formData['to'],
$formData['subject'],
$formData['body'],
$formData['files']??'',
$formData['receipt']??'',
$formData['priority']??3,
);
if($ret[0]===true) {
app()->_json(['messageId'=>$ret[1]]);
}else {
app()->e($ret[1]);
}
}
/**
* 收到前端的同步请求操作
* @author:dc
* @time 2023/3/10 10:38
*/
public function sync(){
$emails = web_request_emails();
if(empty($emails)){
app()->e('sync_request_param_error');
}else{
// 查询id
if(count($emails)===1){
$emails = $emails[0];
}
$datas = db()->all(emailSql::getValues(['email'=>$emails],'`id`,`email`,`pwd_error`'));
foreach ($datas as $k=>$v){
if(!$v['pwd_error']){
redis()->rPush('sync_email_lists', $v['id']);
}
$datas[$k]['have_new'] = redis()->getDel('have_new_mail_'.$v['id']);
}
// 返回成功的参数值
app()->_json($datas);
}
}
/**
* 标记为已读
* @throws \Lib\Err
* @author:dc
* @time 2023/3/17 16:15
*/
public function seen_2_unseen(){
$emails = $this->getEmails();
$mail_ids = app()->request('mail_ids');
foreach ($mail_ids as $k=>$id){
if(!is_numeric($id)){
unset($mail_ids[$k]);
}
}
// 已读或未读
$seen = (int) app()->request('seen');
$seen = $seen ? 1 : 0;
$data = db()->all(listsSql::first(dbWhere(['id'=>$mail_ids,'email_id'=>array_column($emails,'id')])));
if($data){
// 查询邮箱
$emails = array_column($emails,null,'id');
$uids = [];
foreach ($data as $datum){
if(empty($uids[$datum['email_id']])){
$uids[$datum['email_id']][$datum['folder_id']] = [];
}
$uids[$datum['email_id']][$datum['folder_id']][] = [
'uid' => $datum['uid'],
'id' => $datum['id'],
];
}
foreach ($uids as $eid=>$arr){
foreach ($arr as $fid=>$uid){
// 查询目录
$folder = db()->first(folderSql::first($fid));
if($folder){
// 开始远程
$mailInstance = new Mail($emails[$eid]['email'],base64_decode($emails[$eid]['password']),$emails[$eid]['imap']);
if($mailInstance->login()){
$mailInstance->seen(array_column($uid,'uid'),$folder['origin_folder'],$seen);
$mailInstance = null;
// 更新数据
db()->update(listsSql::$table,[
'seen' => $seen
],dbWhere([
'id' => array_column($uid,'id')
]));
}
}
$folder = null;
}
}
}
app()->_json([
'mail_id' => $mail_ids
]);
}
}