|
@@ -52,15 +52,15 @@ class RegController extends AbstractAction |
|
@@ -52,15 +52,15 @@ class RegController extends AbstractAction |
52
|
/**
|
52
|
/**
|
53
|
* 验证码
|
53
|
* 验证码
|
54
|
*
|
54
|
*
|
55
|
- * @param string area 地区编号
|
|
|
56
|
- * @param string mobile 手机号
|
55
|
+ * @param string areaCode 地区编号
|
|
|
56
|
+ * @param string phoneNum 手机号
|
57
|
* @param string token 访问TOKEN凭证
|
57
|
* @param string token 访问TOKEN凭证
|
58
|
*/
|
58
|
*/
|
59
|
public function codeAction()
|
59
|
public function codeAction()
|
60
|
{
|
60
|
{
|
61
|
$token = $this->get('token');
|
61
|
$token = $this->get('token');
|
62
|
- $mobile = $this->get('mobile');
|
|
|
63
|
- $area = $this->get('area', '86');
|
62
|
+ $mobile = $this->get('phoneNum');
|
|
|
63
|
+ $area = $this->get('areaCode', '86');
|
64
|
|
64
|
|
65
|
// 判断是否允许访问, 不允许则跳转到错误页面
|
65
|
// 判断是否允许访问, 不允许则跳转到错误页面
|
66
|
if (!is_string($token) || !is_numeric($mobile) || !Helpers::verifyToken($mobile, $token)) {
|
66
|
if (!is_string($token) || !is_numeric($mobile) || !Helpers::verifyToken($mobile, $token)) {
|
|
@@ -84,15 +84,15 @@ class RegController extends AbstractAction |
|
@@ -84,15 +84,15 @@ class RegController extends AbstractAction |
84
|
/**
|
84
|
/**
|
85
|
* 填写密码页面
|
85
|
* 填写密码页面
|
86
|
*
|
86
|
*
|
87
|
- * @param string area 地区编号
|
|
|
88
|
- * @param string mobile 手机号
|
87
|
+ * @param string areaCode 地区编号
|
|
|
88
|
+ * @param string phoneNum 手机号
|
89
|
* @param string token 访问TOKEN凭证
|
89
|
* @param string token 访问TOKEN凭证
|
90
|
*/
|
90
|
*/
|
91
|
public function passwordAction()
|
91
|
public function passwordAction()
|
92
|
{
|
92
|
{
|
93
|
$token = $this->get('token');
|
93
|
$token = $this->get('token');
|
94
|
- $mobile = $this->get('mobile');
|
|
|
95
|
- $area = $this->get('area', '86');
|
94
|
+ $mobile = $this->get('phoneNum');
|
|
|
95
|
+ $area = $this->get('areaCode', '86');
|
96
|
|
96
|
|
97
|
// 判断是否允许访问, 不允许则跳转到错误页面
|
97
|
// 判断是否允许访问, 不允许则跳转到错误页面
|
98
|
if (!is_string($token) || !is_numeric($mobile) || !is_numeric($area)
|
98
|
if (!is_string($token) || !is_numeric($mobile) || !is_numeric($area)
|
|
@@ -117,8 +117,8 @@ class RegController extends AbstractAction |
|
@@ -117,8 +117,8 @@ class RegController extends AbstractAction |
117
|
/**
|
117
|
/**
|
118
|
* 验证注册的手机号
|
118
|
* 验证注册的手机号
|
119
|
*
|
119
|
*
|
120
|
- * @param string area 地区编号,注意不需要+号
|
|
|
121
|
- * @param string mobile 手机号
|
120
|
+ * @param string areaCode 地区编号,注意不需要+号
|
|
|
121
|
+ * @param string phoneNum 手机号
|
122
|
* @return json
|
122
|
* @return json
|
123
|
*/
|
123
|
*/
|
124
|
public function verifymobileAction()
|
124
|
public function verifymobileAction()
|
|
@@ -131,8 +131,8 @@ class RegController extends AbstractAction |
|
@@ -131,8 +131,8 @@ class RegController extends AbstractAction |
131
|
break;
|
131
|
break;
|
132
|
}
|
132
|
}
|
133
|
|
133
|
|
134
|
- $mobile = $this->post('mobile');
|
|
|
135
|
- $area = $this->post('area', '86');
|
134
|
+ $mobile = $this->post('phoneNum');
|
|
|
135
|
+ $area = $this->post('areaCode', '86');
|
136
|
/* 判断参数是否合法 */
|
136
|
/* 判断参数是否合法 */
|
137
|
if (!is_numeric($mobile) || !is_numeric($area)) {
|
137
|
if (!is_numeric($mobile) || !is_numeric($area)) {
|
138
|
break;
|
138
|
break;
|
|
@@ -147,7 +147,7 @@ class RegController extends AbstractAction |
|
@@ -147,7 +147,7 @@ class RegController extends AbstractAction |
147
|
/* 返回跳转到验证页面的链接*/
|
147
|
/* 返回跳转到验证页面的链接*/
|
148
|
if ($data['code'] == 200) {
|
148
|
if ($data['code'] == 200) {
|
149
|
$token = Helpers::makeToken($mobile);
|
149
|
$token = Helpers::makeToken($mobile);
|
150
|
- $data['data'] = '/passport/reg/code?token='.$token.'&mobile='.$mobile.'&area='.$area;
|
150
|
+ $data['data'] = '/passport/reg/code?token='.$token.'&phoneNum='.$mobile.'&areaCode='.$area;
|
151
|
}
|
151
|
}
|
152
|
|
152
|
|
153
|
} while (false);
|
153
|
} while (false);
|
|
@@ -158,8 +158,8 @@ class RegController extends AbstractAction |
|
@@ -158,8 +158,8 @@ class RegController extends AbstractAction |
158
|
/**
|
158
|
/**
|
159
|
* 验证注册的识别码
|
159
|
* 验证注册的识别码
|
160
|
*
|
160
|
*
|
161
|
- * @param string area 地区编号,注意不需要+号
|
|
|
162
|
- * @param string mobile 手机号
|
161
|
+ * @param string areaCode 地区编号,注意不需要+号
|
|
|
162
|
+ * @param string phoneNum 手机号
|
163
|
* @param string token 访问TOKEN凭证
|
163
|
* @param string token 访问TOKEN凭证
|
164
|
* @param int code 验证码, 手机上收到的
|
164
|
* @param int code 验证码, 手机上收到的
|
165
|
* @return json
|
165
|
* @return json
|
|
@@ -174,8 +174,8 @@ class RegController extends AbstractAction |
|
@@ -174,8 +174,8 @@ class RegController extends AbstractAction |
174
|
break;
|
174
|
break;
|
175
|
}
|
175
|
}
|
176
|
|
176
|
|
177
|
- $mobile = $this->post('mobile');
|
|
|
178
|
- $area = $this->post('area');
|
177
|
+ $mobile = $this->post('phoneNum');
|
|
|
178
|
+ $area = $this->post('areaCode');
|
179
|
$code = $this->post('code');
|
179
|
$code = $this->post('code');
|
180
|
/* 判断参数是否合法 */
|
180
|
/* 判断参数是否合法 */
|
181
|
if (!is_numeric($mobile) || !is_numeric($area) || !isset($code)) {
|
181
|
if (!is_numeric($mobile) || !is_numeric($area) || !isset($code)) {
|
|
@@ -191,7 +191,7 @@ class RegController extends AbstractAction |
|
@@ -191,7 +191,7 @@ class RegController extends AbstractAction |
191
|
/* 返回跳转到设置密码的链接*/
|
191
|
/* 返回跳转到设置密码的链接*/
|
192
|
if ($data['code'] == 200) {
|
192
|
if ($data['code'] == 200) {
|
193
|
$token = Helpers::makeToken($mobile);
|
193
|
$token = Helpers::makeToken($mobile);
|
194
|
- $data['data'] = '/passport/reg/password?token='.$token.'&mobile='.$mobile.'&area='.$area;
|
194
|
+ $data['data'] = '/passport/reg/password?token='.$token.'&phoneNum='.$mobile.'&areaCode='.$area;
|
195
|
}
|
195
|
}
|
196
|
|
196
|
|
197
|
} while (false);
|
197
|
} while (false);
|
|
@@ -202,8 +202,8 @@ class RegController extends AbstractAction |
|
@@ -202,8 +202,8 @@ class RegController extends AbstractAction |
202
|
/**
|
202
|
/**
|
203
|
* 发送验证码
|
203
|
* 发送验证码
|
204
|
*
|
204
|
*
|
205
|
- * @param string area 地区编号,注意不需要+号
|
|
|
206
|
- * @param string mobile 手机号
|
205
|
+ * @param string areaCode 地区编号,注意不需要+号
|
|
|
206
|
+ * @param string phoneNum 手机号
|
207
|
* @return json
|
207
|
* @return json
|
208
|
*/
|
208
|
*/
|
209
|
public function sendcodeAction()
|
209
|
public function sendcodeAction()
|
|
@@ -216,8 +216,8 @@ class RegController extends AbstractAction |
|
@@ -216,8 +216,8 @@ class RegController extends AbstractAction |
216
|
break;
|
216
|
break;
|
217
|
}
|
217
|
}
|
218
|
|
218
|
|
219
|
- $mobile = $this->post('mobile');
|
|
|
220
|
- $area = $this->post('area', '86');
|
219
|
+ $mobile = $this->post('phoneNum');
|
|
|
220
|
+ $area = $this->post('areaCode', '86');
|
221
|
/* 判断参数是否合法 */
|
221
|
/* 判断参数是否合法 */
|
222
|
if (!is_numeric($mobile) || !is_numeric($area)) {
|
222
|
if (!is_numeric($mobile) || !is_numeric($area)) {
|
223
|
break;
|
223
|
break;
|
|
@@ -237,8 +237,8 @@ class RegController extends AbstractAction |
|
@@ -237,8 +237,8 @@ class RegController extends AbstractAction |
237
|
/**
|
237
|
/**
|
238
|
* 设置密码
|
238
|
* 设置密码
|
239
|
*
|
239
|
*
|
240
|
- * @param string area 地区编号,注意不需要+号
|
|
|
241
|
- * @param string mobile 手机号
|
240
|
+ * @param string areaCode 地区编号,注意不需要+号
|
|
|
241
|
+ * @param string phoneNum 手机号
|
242
|
* @param string token 访问TOKEN凭证
|
242
|
* @param string token 访问TOKEN凭证
|
243
|
* @param string password 用户设置的密码
|
243
|
* @param string password 用户设置的密码
|
244
|
* @return json
|
244
|
* @return json
|
|
@@ -254,8 +254,8 @@ class RegController extends AbstractAction |
|
@@ -254,8 +254,8 @@ class RegController extends AbstractAction |
254
|
}
|
254
|
}
|
255
|
|
255
|
|
256
|
$token = $this->post('token');
|
256
|
$token = $this->post('token');
|
257
|
- $mobile = $this->post('mobile');
|
|
|
258
|
- $area = $this->post('area');
|
257
|
+ $mobile = $this->post('phoneNum');
|
|
|
258
|
+ $area = $this->post('areaCode');
|
259
|
$password = $this->post('password');
|
259
|
$password = $this->post('password');
|
260
|
/* 判断参数是否合法 */
|
260
|
/* 判断参数是否合法 */
|
261
|
if (!is_string($token) || !is_numeric($mobile) || !is_numeric($area) || !isset($password)) {
|
261
|
if (!is_string($token) || !is_numeric($mobile) || !is_numeric($area) || !isset($password)) {
|
|
@@ -275,7 +275,7 @@ class RegController extends AbstractAction |
|
@@ -275,7 +275,7 @@ class RegController extends AbstractAction |
275
|
|
275
|
|
276
|
/* 返回跳转到来源页面 */
|
276
|
/* 返回跳转到来源页面 */
|
277
|
if ($data['code'] == 200) {
|
277
|
if ($data['code'] == 200) {
|
278
|
- $data['data'] = '/passport/reg/password?token='.$token.'&mobile='.$mobile.'&area='.$area;
|
278
|
+ $data['data'] = '/passport/reg/password?token='.$token.'&phoneNum='.$mobile.'&areaCode='.$area;
|
279
|
}
|
279
|
}
|
280
|
|
280
|
|
281
|
} while (false);
|
281
|
} while (false);
|