Back.php
8 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
<?php
use Action\AbstractAction;
use LibModels\Wap\Passport\BackData;
use LibModels\Wap\Passport\RegData;
use Plugin\Helpers;
/**
* 频道选择
*/
class BackController extends AbstractAction
{
public function emailAction()
{
$this->setTitle('找回密码-通过邮箱');
$data = array(
'backUrl' => '/signin.html',
'headerText' => '找回密码',
'isPassportPage' => true,
'backEmail' => true
);
// 生成HTML (emailback.html)
$this->_view->html('emailback');
$this->_view->display('email', $data);
}
/**
* 发送邮箱验证码
*/
public function sendemailAction()
{
$result = array('code' => 400, 'message' => '邮箱格式不正确,请重新输入', 'data' => '');
do
{
/* 判断是不是AJAX请求 */
if (!$this->isAjax())
{
break;
}
$email = $this->post('email', '');
// 判断邮箱是否有效
if(!Helpers::verifyEmail($email))
{
break;
}
// 发送邮箱验证码
$result = BackData::sendCodeToEmail($email);
if($result['code'] === 200)
{
$result['data'] = '/passport/back/success?email='.$email;
}
}
while (false);
$this->echoJson($result);
}
/**
* 重新发送邮箱验证码
*/
public function resendemailAction()
{
$result = array('code' => 400, 'message' => '重发邮件失败');
do
{
if(!$this->isAjax())
{
break;
}
$email = $this->get('email', '');
// 发送邮箱验证码
$return = BackData::sendCodeToEmail($email);
if(!empty($return))
{
$result = $return;
}
}
while(false);
$this->echoJson($result);
}
public function successAction()
{
$email = $this->get('email', '');
// 判断是否允许访问, 不允许则跳转到错误页面
if (!Helpers::verifyEmail($email)) {
$this->error();
}
// 获取到邮箱域名
list($name, $domain) = explode('@', $email);
$domain_name = 'http://' . (($domain == 'gmail.com') ? 'mail.google.com' : 'mail.' . $domain);
$data = array(
'backUrl' => '/emailback.html',
'headerText' => '找回密码',
'isPassportPage' => true,
'backEmailSuccess' => true,
'goEmail' => $domain_name,
'resendUrl' => '/passport/back/resendemail?email='.$email
);
$this->setTitle('找回密码-通过邮箱');
$this->_view->display('email-success', $data);
}
/**
* 根据邮箱修改密码
*
* @return array 根据邮箱修改密码的结果
*/
public function passwordByEmailAction()
{
if($this->isAjax())
{
$pwd = $this->post('password', '');
$code = $this->post('code', '');
$data = BackData::modifyPasswordByEmail($pwd, $code);
$result = array('code'=>200, 'data' => '/signin.html');
print_r($data);
if(strpos($data, 'history.back') !== false)
{
$result['code'] = 400;
$result['message'] = '修改失败';
}
$this->echoJson($result);// 前端不需要判断结果
}
}
public function mobileAction()
{
$this->setTitle('找回密码-通过手机号');
$data = array(
'backUrl' => '/signin.html',
'headerText' => '找回密码',
'isPassportPage' => true,
'backMobile' => true,
'countrys' => RegData::getAreasData(),
'areaCode' => '+86'
);
// 生成HTML (phoneback.html)
// $this->_view->html('phoneback');
$this->_view->display('mobile', $data);
}
/**
* 发送手机验证码
*/
public function sendcodeAction()
{
$result = array('code' => 400, 'message' => '密码只能使用数字、字母和半角标点符号,请重新输入', 'data' => '');
do
{
/* 判断是不是AJAX请求 */
if (!$this->isAjax())
{
break;
}
$phoneNum = $this->post('phoneNum', '');
$areaCode = $this->post('areaCode', 86);
if(!Helpers::verifyMobile($phoneNum))
{
break;
}
// 发送手机验证码
$result = BackData::sendCodeToMobile($phoneNum, $areaCode);
if(empty($result))
{
break;
}
if($result['code'] === 200)
{
$result['data'] = '/passport/back/mobilecode?phoneNum='.$phoneNum.'&areaCode='.$areaCode;
}
}
while (false);
$this->echoJson($result);
}
/**
* 校验验证码页面
*/
public function mobilecodeAction()
{
$phoneNum = $this->get('phoneNum', '');
$areaCode = $this->get('areaCode', 86);
$areaCode = '+'.$areaCode;
$data = array(
'backUrl' => '/phoneback.html',
'headerText' => '找回密码',
'isPassportPage' => true,
'backCode' => true,
'areaCode' => $areaCode,
'phoneNum' => $phoneNum
);
$this->setTitle('找回密码-通过手机号');
$this->_view->display('mobile-code', $data);
}
/**
* 校验手机验证码
*
* @return array 校验手机验证码的结果(token)
*/
public function verifycodeAction()
{
if($this->isAjax())
{
$phoneNum = $this->post('phoneNum', '');
$code = $this->post('code', '');
$areaCode = $this->post('areaCode', 86);
// 校验手机验证码
$result = BackData::validateMobileCode($phoneNum, $code, $areaCode);
if($result['code'] === 200)
{
$result['data'] = '/passport/back/backcode?phoneNum='.$phoneNum.'&token='.$result['data']['token'].'&areaCode='.$areaCode;
}
$this->echoJson($result);
}
}
public function backcodeAction()
{
$phoneNum = $this->get('phoneNum', '');
// 手机验证令牌
$token = $this->get('token', '');
$areaCode = $this->get('areaCode', 86);
// 邮箱验证码
$code = $this->get('code', '');
// 判断是否允许访问, 不允许则跳转到错误页面
if ((!$token || !Helpers::verifyMobile($phoneNum)) && !$code) {
$this->error();
}
$data = array(
'backUrl' => '/signin.html',
'headerText' => '找回密码',
'isPassportPage' => true,
'backNewPwd' => true,
'phoneNum' => $phoneNum,
'token' => $token,
'areaCode' => $areaCode,
'code' => $code
);
$this->setTitle('找回密码-输入新密码');
$this->_view->display('new-password', $data);
}
/**
* 根据手机验证码修改密码
*
* @return array 根据手机验证码修改密码的结果
*/
public function passwordByMobileAction()
{
if($this->isAjax())
{
$phoneNum = $this->post('phoneNum', '');
$token = $this->post('token', '');
$newpwd = $this->post('password', '');
$areaCode = $this->post('areaCode', 86);
// 根据手机验证码修改密码
$result = BackData::modifyPasswordByMobile($phoneNum, $token, $newpwd, $areaCode);
if($result['code'] === 200)
{
$result['data'] = '/';
}
$this->echoJson($result);
}
}
}