Back.php
7.01 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
<?php
use Action\AbstractAction;
use LibModels\Wap\Passport\BackData;
use Hood\Core\Security\AuthCode;
/**
* 频道选择
*/
class BackController extends AbstractAction
{
public function emailAction()
{
$data = array(
'backUrl' => '/passport/login/index',
'headerText' => '找回密码',
'isPassportPage' => true,
'backEmail' => true
);
$this->_view->assign('title', 'YOHO!有货');
$this->_view->display('email', $data);
}
/**
* 发送邮箱验证码
*/
public function sendemailAction()
{
if($this->isAjax())
{
$email = $this->post('email', '');
// 发送邮箱验证码
$result = BackData::sendCodeToEmail($email);
if($result['code'] === 200)
{
$result['data'] = '/passport/back/success?email='.$email;
}
$this->echoJson($result);
}
}
/**
* 重新发送邮箱验证码
*/
public function resendemailAction()
{
if($this->isAjax())
{
$email = $this->get('email', '');
// 发送邮箱验证码
$result = BackData::sendCodeToEmail($email);
$this->echoJson($result);
}
}
public function successAction()
{
$email = $this->get('email', '');
// 获取到邮箱域名
list($name, $domain) = explode('@', $email);
$domain_name = 'http://' . (($domain == 'gmail.com') ? 'mail.google.com' : 'mail.' . $domain);
$data = array(
'backUrl' => '/passport/back/email',
'headerText' => '找回密码',
'isPassportPage' => true,
'backEmailSuccess' => true,
'goEmail' => $domain_name,
'resendUrl' => '/passport/back/resendemail?email='.$email
);
$this->_view->assign('title', 'YOHO!有货');
$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);
if(strpos($data, 'history.back') !== false)
{
$result['code'] = 400;
$result['message'] = '修改失败';
}
$this->echoJson($result);// 前端不需要判断结果
}
}
public function mobileAction()
{
// 获取地区信息
$areas = array();
$areaDatas = $data = BackData::getAreasData();
if($areaDatas['code'] == 200)
{
$areas = $areaDatas['data'];
}
// 处理地区信息
foreach ($areas as &$val) {
$val['areaCode'] = '+'.$val['area'];
if($val['area'] === '86')
{
$val['selected'] = true;
}
unset($val['area']);
}
/*// 排序
uasort($areas, function($a, $b) {
if($a['id'] === $b['id'])
{
return 0;
}
return ($a['id'] < $b['id'] ? -1 : 1);
});*/
$data = array(
'backUrl' => '/passport/login/index',
'headerText' => '找回密码',
'isPassportPage' => true,
'backMobile' => true,
'countrys' => $areas,
'areaCode' => '+86'
);
$this->_view->assign('title', 'YOHO!有货');
$this->_view->display('mobile', $data);
}
/**
* 发送手机验证码
*/
public function sendcodeAction()
{
if($this->isAjax())
{
$phoneNum = $this->post('phoneNum', '');
$areaCode = $this->post('areaCode', 86);
// 发送手机验证码
$result = BackData::sendCodeToMobile($phoneNum, $areaCode);
if($result['code'] === 200)
{
$result['data'] = '/passport/back/mobilecode?phoneNum='.$phoneNum.'&areaCode='.$areaCode;
}
$this->echoJson($result);
}
}
/**
* 校验验证码页面
*/
public function mobilecodeAction()
{
$phoneNum = $this->get('phoneNum', '');
$areaCode = $this->get('areaCode', 86);
$areaCode = '+'.$areaCode;
$data = array(
'backUrl' => '/passport/back/mobile',
'headerText' => '找回密码',
'isPassportPage' => true,
'backCode' => true,
'areaCode' => $areaCode,
'phoneNum' => $phoneNum
);
$this->_view->assign('title', 'YOHO!有货');
$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/password?phoneNum='.$phoneNum.'&token='.$result['data']['token'].'&areaCode='.$areaCode;
}
$this->echoJson($result);
}
}
public function passwordAction()
{
$phoneNum = $this->get('phoneNum', '');
// 手机验证令牌
$token = $this->get('token', '');
$areaCode = $this->get('areaCode', 86);
// 邮箱验证码
$code = $this->get('code', '');
$data = array(
'backUrl' => '/passport/login/index',
'headerText' => '找回密码',
'isPassportPage' => true,
'backNewPwd' => true,
'phoneNum' => $phoneNum,
'token' => $token,
'areaCode' => $areaCode,
'code' => $code
);
$this->_view->assign('title', 'YOHO!有货');
$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);
}
}
}