|
@@ -23,14 +23,6 @@ class User extends Api
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * 会员中心
|
|
|
- */
|
|
|
- public function index()
|
|
|
- {
|
|
|
- $this->success('', ['welcome' => $this->auth->nickname]);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
* 会员登录
|
|
|
*
|
|
|
* @param string $account 账号
|
|
@@ -150,6 +142,118 @@ class User extends Api
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 重置密码
|
|
|
+ *
|
|
|
+ * @param string $mobile 手机号
|
|
|
+ * @param string $newpassword 新密码
|
|
|
+ * @param string $captcha 验证码
|
|
|
+ */
|
|
|
+ public function resetpwd()
|
|
|
+ {
|
|
|
+ $mobile = $this->request->request("mobile");
|
|
|
+ $newpassword = $this->request->request("newpassword");
|
|
|
+ $captcha = $this->request->request("captcha");
|
|
|
+ if (!$newpassword || !$captcha) {
|
|
|
+ $this->error(__('Invalid parameters'));
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!Validate::regex($mobile, "^1\d{10}$")) {
|
|
|
+ $this->error(__('Mobile is incorrect'));
|
|
|
+ }
|
|
|
+ $user = \app\common\model\User::getByMobile($mobile);
|
|
|
+ if (!$user) {
|
|
|
+ $this->error(__('User not found'));
|
|
|
+ }
|
|
|
+// $ret = session($mobile);
|
|
|
+ $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find();
|
|
|
+ if (!$ret) {
|
|
|
+ $this->error(__('Captcha is incorrect'));
|
|
|
+ }
|
|
|
+ if ($ret) {
|
|
|
+ if ($ret['number'] != $captcha) {
|
|
|
+ $this->error('验证码不正确');
|
|
|
+ }
|
|
|
+ if(time()-$ret['create_time'] > 300) {
|
|
|
+ $this->error('验证码超时');
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ //模拟一次登录
|
|
|
+ $this->auth->direct($user->id);
|
|
|
+ $rets = $this->auth->changepwd($newpassword, '', true);
|
|
|
+ if ($rets) {
|
|
|
+ $this->success(__('Reset password successful'));
|
|
|
+ } else {
|
|
|
+ $this->error($this->auth->getError());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 发送验证码
|
|
|
+ *
|
|
|
+ * @param string $mobile 手机号
|
|
|
+ * @param string $type 1注册2忘记3修改密码
|
|
|
+ */
|
|
|
+ public function sendPhone()
|
|
|
+ {
|
|
|
+
|
|
|
+ $mobile = $this->request->param('mobile');
|
|
|
+
|
|
|
+ $type = $this->request->param('type');
|
|
|
+ if (!isset($type) || empty($type)) return $this->error('参数错误');
|
|
|
+
|
|
|
+ if ($type == 1) {
|
|
|
+ $issetphone = Db::name('user')->where('mobile', $mobile)->find();
|
|
|
+
|
|
|
+ if (isset($issetphone)) return $this->error('此账号已存在');
|
|
|
+ }
|
|
|
+ if ($type == 3) {
|
|
|
+ $user = $this->auth->getUser();
|
|
|
+
|
|
|
+ $isuseourphone = Db::name('user')->where('id', $user['id'])->where('mobile', $mobile)->find();
|
|
|
+
|
|
|
+ if (!$isuseourphone) return $this->error('请使用本账号手机号修改密码');
|
|
|
+ }
|
|
|
+ $number = rand(1000, 9999);
|
|
|
+
|
|
|
+ $res = send_sms($mobile, 1, ['code' => $number]);
|
|
|
+ if (isset($res['Message']) && $res['Message'] == "OK") {
|
|
|
+ $data = [
|
|
|
+ 'mobile' =>$mobile,
|
|
|
+ 'number' =>$number,
|
|
|
+ 'create_time' =>time(),
|
|
|
+ ];
|
|
|
+ Db::name('captcha')->insert($data);
|
|
|
+ return $this->success('发送成功', $number);
|
|
|
+ } else {
|
|
|
+ return $this->error('发送失败');
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户信息
|
|
|
+ */
|
|
|
+
|
|
|
+ public function userInfo()
|
|
|
+ {
|
|
|
+ $user = $this->auth->getUser();
|
|
|
+
|
|
|
+ dump($user);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
* 退出登录
|
|
|
*/
|
|
|
public function logout()
|
|
@@ -261,98 +365,4 @@ class User extends Api
|
|
|
return $openid;
|
|
|
|
|
|
}
|
|
|
- /**
|
|
|
- * 重置密码
|
|
|
- *
|
|
|
- * @param string $mobile 手机号
|
|
|
- * @param string $newpassword 新密码
|
|
|
- * @param string $captcha 验证码
|
|
|
- */
|
|
|
- public function resetpwd()
|
|
|
- {
|
|
|
-// $type = $this->request->request("type");
|
|
|
- $type = "mobile";
|
|
|
- $mobile = $this->request->request("mobile");
|
|
|
- $email = $this->request->request("email");
|
|
|
- $newpassword = $this->request->request("newpassword");
|
|
|
- $captcha = $this->request->request("captcha");
|
|
|
- if (!$newpassword || !$captcha) {
|
|
|
- $this->error(__('Invalid parameters'));
|
|
|
- }
|
|
|
-
|
|
|
- if (!Validate::regex($mobile, "^1\d{10}$")) {
|
|
|
- $this->error(__('Mobile is incorrect'));
|
|
|
- }
|
|
|
- $user = \app\common\model\User::getByMobile($mobile);
|
|
|
- if (!$user) {
|
|
|
- $this->error(__('User not found'));
|
|
|
- }
|
|
|
-// $ret = session($mobile);
|
|
|
- $ret = Db::name('captcha')->where('mobile',$mobile)->order('create_time desc')->find();
|
|
|
- if (!$ret) {
|
|
|
- $this->error(__('Captcha is incorrect'));
|
|
|
- }
|
|
|
- if ($ret) {
|
|
|
- if ($ret['number'] != $captcha) {
|
|
|
- $this->error('验证码不正确');
|
|
|
- }
|
|
|
- if(time()-$ret['create_time'] > 300) {
|
|
|
- $this->error('验证码超时');
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- //模拟一次登录
|
|
|
- $this->auth->direct($user->id);
|
|
|
- $rets = $this->auth->changepwd($newpassword, '', true);
|
|
|
- if ($rets) {
|
|
|
- $this->success(__('Reset password successful'));
|
|
|
- } else {
|
|
|
- $this->error($this->auth->getError());
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 发送验证码
|
|
|
- *
|
|
|
- * @param string $mobile 手机号
|
|
|
- * @param string $type 1注册2忘记3修改密码
|
|
|
- */
|
|
|
- public function sendPhone()
|
|
|
- {
|
|
|
-
|
|
|
- $mobile = $this->request->param('mobile');
|
|
|
-
|
|
|
- $type = $this->request->param('type');
|
|
|
- if (!isset($type) || empty($type)) return $this->error('参数错误');
|
|
|
-
|
|
|
- if ($type == 1) {
|
|
|
- $issetphone = Db::name('user')->where('mobile', $mobile)->find();
|
|
|
-
|
|
|
- if (isset($issetphone)) return $this->error('此账号已存在');
|
|
|
- }
|
|
|
- if ($type == 3) {
|
|
|
- $user = $this->auth->getUser();
|
|
|
-
|
|
|
- $isuseourphone = Db::name('user')->where('id', $user['id'])->where('mobile', $mobile)->find();
|
|
|
-
|
|
|
- if (!$isuseourphone) return $this->error('请使用本账号手机号修改密码');
|
|
|
- }
|
|
|
- $number = rand(1000, 9999);
|
|
|
-
|
|
|
- $res = send_sms($mobile, 1, ['code' => $number]);
|
|
|
- if (isset($res['Message']) && $res['Message'] == "OK") {
|
|
|
- $data = [
|
|
|
- 'mobile' =>$mobile,
|
|
|
- 'number' =>$number,
|
|
|
- 'create_time' =>time(),
|
|
|
- ];
|
|
|
- Db::name('captcha')->insert($data);
|
|
|
- return $this->success('发送成功', $number);
|
|
|
- } else {
|
|
|
- return $this->error('发送失败');
|
|
|
- }
|
|
|
-// $send->index($mobile,$number);
|
|
|
-// return $this->success('',$number);
|
|
|
-
|
|
|
- }
|
|
|
}
|