18315626215 5 年之前
父節點
當前提交
04490729ea

+ 9 - 7
application/api/controller/Login.php

@@ -55,8 +55,8 @@ class Login extends Api
                 return $this->result('手机号不存在', [], 100);
             }
         }
-        if (isset($data['openid'])) {
-            $validataopenid = UsersModel::where('user_openid', $data['openid'])->find();  //判断QQ或者微信登录的openid是否正确
+        if (isset($data['user_openid'])) {
+            $validataopenid = UsersModel::where('user_openid', $data['user_openid'])->find();  //判断QQ或者微信登录的openid是否正确
             if ($validataopenid) {
                 return $this->result('登陆成功,欢迎回来', $validataopenid, 200);
             } else {
@@ -75,16 +75,18 @@ class Login extends Api
             return $this->result('手机号已存在', [], 100);
         }
     }
+
     /**
      * 服务协议
      */
-    public function agreement () {
-        $data = Db::name('agreement')->where('type',0)->find();
+    public function agreement()
+    {
+        $data = Db::name('agreement')->where('type', 0)->find();
         if ($data) {
-            return $this->result('',$data,200);
+            return $this->result('', $data, 200);
         } else {
-            return $this->result('网络错误',[],100);
+            return $this->result('网络错误', [], 100);
         }
     }
-
+    //短信发送
 }

+ 219 - 0
application/api/controller/Register.php

@@ -0,0 +1,219 @@
+<?php
+
+namespace app\api\controller;
+
+use app\api\model\UsersModel;
+use app\common\controller\Api;
+use think\Cache;
+
+/**
+ * 注册接口
+ */
+class Register extends Api
+{
+    protected $noNeedRight = '*';
+    protected $noNeedLogin = '*';
+
+    /**
+     * 手机号注册
+     *
+     * @param string $user_tel 账号
+     * @param string $code 验证码
+     * @param string $user_tjtel 推荐人手机号
+     * @param string $user_pwd 密码
+     * @param string $type 注册方式0手机号1QQ或微信
+     * @param string $user_avatar 头像
+     * @param string $user_openID QQ或微信开放id
+     * @param string $user_nickname QQ或微信开放姓名
+     */
+    public function register()
+    {
+        $params = $this->request->post();
+        if (isset($params['user_tel'])) {  //验证手机号是否合法
+            $check = '/^(1(([35789][0-9])|(47)))\d{8}$/';
+            if (preg_match($check, $params['user_tel'])) {
+                if (isset($params['user_tjtel'])) {  //验证推荐人手机号
+                    $issetTjTel = UsersModel::where('user_tel', $params['user_tjtel'])->find();
+                    if (!$issetTjTel) {
+                        return $this->result('未找到推荐人手机号', '', 100);
+                    }
+                } else {
+                    return $this->result('请填写推荐人手机号', [], 100);
+                }
+                if (isset($params['user_tel'])) {  //验证用户手机号
+                    $issetTjTel = UsersModel::where('user_tel', $params['user_tel'])->find();
+                    if ($issetTjTel) {
+                        return $this->result('此手机号已被注册', '', 100);
+                    }
+                } else {
+                    return $this->result('请填写手机号', [], 100);
+                }
+                if (!isset($params['code']) || !Cache::get($params['code'])) {  //验证验证码是否错误
+                    return $this->result('验证码错误', '', 100);
+                }
+                $userModel = new UsersModel(); //实例化usermodel
+                if ($params['type'] == 0) {  //使用手机号注册
+                    $rules = [
+                        'code'     => 'require|number',
+                        'user_pwd' => 'require|max:18|min:6'
+                    ];
+                    $msg = [
+                        'code.require'     => "验证码不能为空",
+                        'code.number'      => "验证码必须为数字",
+                        'user_pwd.require' => '密码不能为空',
+                        'user_pwd.max'     => '密码长度过长',
+                        'user_pwd.min'     => '密码最少六位',
+                    ];
+                    $validata = $this->validate($params, $rules, $msg);
+                    if (is_string($validata)) {
+                        return $this->result($validata, [], 100);
+                    }
+                    $data = array(
+                        'user_nickname' => '优-' . rand(10000, 99999),
+                        'user_tel'      => $params['user_tel'],
+                        'user_pwd'      => sha1(md5($params['user_pwd'])),
+                        'user_avatar'   => config('site.httpurl') . '/uploads/logo.img',
+                        'create_time'   => date('Y-m-d H:i:s', time()),
+                        'user_tjtel'    => $params['user_tjtel'],
+                    );
+                    $addUser = $userModel->allowField(true)->save($data);
+                    if ($addUser) {
+                        Cache::rm($params['code']);//删除验证码缓存
+                        return $this->result('注册成功', [], 200);
+                    } else {
+                        return $this->result('注册失败', [], 100);
+                    }
+                }
+                if ($params['type'] == 1) {
+                    $rules = [
+                        'user_nickname' => 'require',
+                        'user_avatar'   => 'require',
+                        'user_openid'   => 'require',
+                    ];
+                    $msg = [
+                        'user_nickname.require' => '昵称未获取',
+                        'user_avatar.require'   => '头像未获取',
+                        'user_openid.require'   => '开放id未获取',
+                    ];
+                    $validata = $this->validate($params, $rules, $msg);
+                    if (is_string($validata)) {
+                        return $this->result($validata, [], 100);
+                    }
+                    $data = array(
+                        'user_nickname' => $params['user_nickname'],
+                        'user_tel'      => $params['user_tel'],
+                        'user_pwd'      => '无',
+                        'user_avatar'   => $params['user_avatar'],
+                        'create_time'   => date('Y-m-d H:i:s', time()),
+                        'user_tjtel'    => $params['user_tjtel'],
+                        'user_openid'   => $params['user_openid'],
+                    );
+                    $addUser = $userModel->allowField(true)->save($data);
+                    if ($addUser) {
+                        Cache::rm($params['code']);//删除验证码缓存
+                        return $this->result('注册成功', [], 200);
+                    } else {
+                        return $this->result('注册失败', [], 100);
+                    }
+                }
+            } else {
+                return $this->result('手机号不合法', '', 100);
+            }
+        } else {
+            return $this->result('手机号不存在', '', 100);
+        }
+
+    }
+
+    /**
+     * 手机号短信发送
+     *
+     * @param string $user_tel 账号
+     */
+    public function registerTel()
+    {
+        $sendUrl = config('site.sendurl'); //短信接口的URL
+        $params = $this->request->post();
+        $check = '/^(1(([35789][0-9])|(47)))\d{8}$/';
+        if (isset($params['user_tel'])) {
+            if (preg_match($check, $params['user_tel'])) {
+                $issettel = UsersModel::where('user_tel', $params['user_tel'])->find(); //判断手机号是否存在
+                if ($issettel) {
+                    return $this->result('该手机号已存在', [], 100);
+                }
+                $code = $this->setCode();
+                $tpl_value = '#code#=' . $code . '&#company#=优享街';
+                $smsConf = array(
+                    'key'       => config('site.key'),  //您申请的APPKEY
+                    'mobile'    => $params['user_tel'], //接受短信的用户手机号码
+                    'tpl_id'    => '203667',            //您申请的短信模板ID,根据实际情况修改
+                    'tpl_value' => $tpl_value           //您设置的模板变量,根据实际情况修改
+                );
+                $content = $this->juhecurl($sendUrl, $smsConf, 1); //请求发送短信
+                if ($content) {
+                    $result = json_decode($content, true);
+                    $error_code = $result['error_code'];
+                    if ($error_code == 0) {
+                        return $this->result('发送成功', $code, '200');
+                    } else {
+                        return $this->result('请求失败', [], '100');
+                    }
+                }
+            } else {
+                return $this->result('手机号不合法', [], 100);
+            }
+        } else {
+            return $this->result('手机号不能为空', [], 100);
+        }
+    }
+    //发送短信
+
+    /**
+     * 请求接口返回内容
+     * @param string $url [请求的URL地址]
+     * @param string $params [请求的参数]
+     * @param int $ipost [是否采用POST形式]
+     * @return  string
+     */
+    function juhecurl($url, $params = false, $ispost = 0)
+    {
+        $httpInfo = array();
+        $ch = curl_init();
+        curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
+        curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.172 Safari/537.22');
+        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
+        curl_setopt($ch, CURLOPT_TIMEOUT, 30);
+        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+        if ($ispost) {
+            curl_setopt($ch, CURLOPT_POST, true);
+            curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
+            curl_setopt($ch, CURLOPT_URL, $url);
+        } else {
+            if ($params) {
+                curl_setopt($ch, CURLOPT_URL, $url . '?' . $params);
+            } else {
+                curl_setopt($ch, CURLOPT_URL, $url);
+            }
+        }
+        $response = curl_exec($ch);
+        if ($response === FALSE) {
+            //echo "cURL Error: " . curl_error($ch);
+            return false;
+        }
+        $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
+        $httpInfo = array_merge($httpInfo, curl_getinfo($ch));
+        curl_close($ch);
+        return $response;
+    }
+
+    //生成唯一六位随机数
+    public function setCode()
+    {
+        $code = rand('1000', '9999');
+        if (Cache::get($code)) {
+            $code = self::setCode();
+        }
+        Cache::set($code, $code, 600);
+        return $code;
+    }
+}

+ 28 - 280
application/api/controller/User.php

@@ -2,10 +2,12 @@
 
 namespace app\api\controller;
 
+use app\api\model\UsersModel;
 use app\common\controller\Api;
 use app\common\library\Ems;
 use app\common\library\Sms;
 use fast\Random;
+use think\Db;
 use think\Validate;
 
 /**
@@ -13,7 +15,7 @@ use think\Validate;
  */
 class User extends Api
 {
-    protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third'];
+    protected $noNeedLogin = ['*'];
     protected $noNeedRight = '*';
 
     public function _initialize()
@@ -21,300 +23,46 @@ class User extends Api
         parent::_initialize();
     }
 
-    /**
-     * 会员中心
-     */
-    public function index()
-    {
-        $this->success('', ['welcome' => $this->auth->nickname]);
-    }
 
-    /**
-     * 会员登录
-     *
-     * @param string $account  账号
-     * @param string $password 密码
-     */
-    public function login()
-    {
-        $account = $this->request->request('account');
-        $password = $this->request->request('password');
-        if (!$account || !$password) {
-            $this->error(__('Invalid parameters'));
-        }
-        $ret = $this->auth->login($account, $password);
-        if ($ret) {
-            $data = ['userinfo' => $this->auth->getUserinfo()];
-            $this->success(__('Logged in successful'), $data);
-        } else {
-            $this->error($this->auth->getError());
-        }
-    }
 
     /**
-     * 手机验证码登录
+     * 用户显示
      *
-     * @param string $mobile  手机号
-     * @param string $captcha 验证码
+     * @param string $user_id  用户id
      */
-    public function mobilelogin()
+    public function userInfo()
     {
-        $mobile = $this->request->request('mobile');
-        $captcha = $this->request->request('captcha');
-        if (!$mobile || !$captcha) {
-            $this->error(__('Invalid parameters'));
-        }
-        if (!Validate::regex($mobile, "^1\d{10}$")) {
-            $this->error(__('Mobile is incorrect'));
-        }
-        if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
-            $this->error(__('Captcha is incorrect'));
-        }
-        $user = \app\common\model\User::getByMobile($mobile);
-        if ($user) {
-            if ($user->status != 'normal') {
-                $this->error(__('Account is locked'));
-            }
-            //如果已经有账号则直接登录
-            $ret = $this->auth->direct($user->id);
+        $user_id = $this->request->post('user_id');
+        if (!isset($user_id)) {
+            return $this->result('网络错误',[],100);
+        }
+        $data = UsersModel::where('user_id',$user_id)->find();
+        $data['daifahuo'] = 1;
+        $data['daishouhuo'] = 1;
+        if ($data) {
+            return $this->result('',$data,200);
         } else {
-            $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []);
-        }
-        if ($ret) {
-            Sms::flush($mobile, 'mobilelogin');
-            $data = ['userinfo' => $this->auth->getUserinfo()];
-            $this->success(__('Logged in successful'), $data);
-        } else {
-            $this->error($this->auth->getError());
-        }
-    }
-
-    /**
-     * 注册会员
-     *
-     * @param string $username 用户名
-     * @param string $password 密码
-     * @param string $email    邮箱
-     * @param string $mobile   手机号
-     * @param string $code   验证码
-     */
-    public function register()
-    {
-        $username = $this->request->request('username');
-        $password = $this->request->request('password');
-        $email = $this->request->request('email');
-        $mobile = $this->request->request('mobile');
-        $code = $this->request->request('code');
-        if (!$username || !$password) {
-            $this->error(__('Invalid parameters'));
-        }
-        if ($email && !Validate::is($email, "email")) {
-            $this->error(__('Email is incorrect'));
-        }
-        if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
-            $this->error(__('Mobile is incorrect'));
-        }
-        $ret = Sms::check($mobile, $code, 'register');
-        if (!$ret) {
-            $this->error(__('Captcha is incorrect'));
-        }
-        $ret = $this->auth->register($username, $password, $email, $mobile, []);
-        if ($ret) {
-            $data = ['userinfo' => $this->auth->getUserinfo()];
-            $this->success(__('Sign up successful'), $data);
-        } else {
-            $this->error($this->auth->getError());
-        }
-    }
-
-    /**
-     * 注销登录
-     */
-    public function logout()
-    {
-        $this->auth->logout();
-        $this->success(__('Logout successful'));
-    }
-
-    /**
-     * 修改会员个人信息
-     *
-     * @param string $avatar   头像地址
-     * @param string $username 用户名
-     * @param string $nickname 昵称
-     * @param string $bio      个人简介
-     */
-    public function profile()
-    {
-        $user = $this->auth->getUser();
-        $username = $this->request->request('username');
-        $nickname = $this->request->request('nickname');
-        $bio = $this->request->request('bio');
-        $avatar = $this->request->request('avatar', '', 'trim,strip_tags,htmlspecialchars');
-        if ($username) {
-            $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
-            if ($exists) {
-                $this->error(__('Username already exists'));
-            }
-            $user->username = $username;
+            return $this->result('未获取用户信息',[],100);
         }
-        $user->nickname = $nickname;
-        $user->bio = $bio;
-        $user->avatar = $avatar;
-        $user->save();
-        $this->success();
     }
-
     /**
-     * 修改邮箱
+     * 修改昵称
      *
-     * @param string $email   邮箱
-     * @param string $captcha 验证码
+     * @param string $user_id  用户id
+     * @param string $user_nickname  用户昵称
      */
-    public function changeemail()
-    {
-        $user = $this->auth->getUser();
-        $email = $this->request->post('email');
-        $captcha = $this->request->request('captcha');
-        if (!$email || !$captcha) {
-            $this->error(__('Invalid parameters'));
-        }
-        if (!Validate::is($email, "email")) {
-            $this->error(__('Email is incorrect'));
-        }
-        if (\app\common\model\User::where('email', $email)->where('id', '<>', $user->id)->find()) {
-            $this->error(__('Email already exists'));
-        }
-        $result = Ems::check($email, $captcha, 'changeemail');
-        if (!$result) {
-            $this->error(__('Captcha is incorrect'));
-        }
-        $verification = $user->verification;
-        $verification->email = 1;
-        $user->verification = $verification;
-        $user->email = $email;
-        $user->save();
-
-        Ems::flush($email, 'changeemail');
-        $this->success();
-    }
-
-    /**
-     * 修改手机号
-     *
-     * @param string $email   手机号
-     * @param string $captcha 验证码
-     */
-    public function changemobile()
-    {
-        $user = $this->auth->getUser();
-        $mobile = $this->request->request('mobile');
-        $captcha = $this->request->request('captcha');
-        if (!$mobile || !$captcha) {
-            $this->error(__('Invalid parameters'));
-        }
-        if (!Validate::regex($mobile, "^1\d{10}$")) {
-            $this->error(__('Mobile is incorrect'));
-        }
-        if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
-            $this->error(__('Mobile already exists'));
+    public function updNickName () {
+        $params = $this->request->post();
+        if (!isset($params['user_id']) || !isset($params['user_nickname'])) {
+            return $this->result('网络错误',[],100);
         }
-        $result = Sms::check($mobile, $captcha, 'changemobile');
-        if (!$result) {
-            $this->error(__('Captcha is incorrect'));
+        $selNickName = UsersModel::where($params)->find();
+        if ($selNickName) {
+            return $this->result('请输入新昵称',[],100);
         }
-        $verification = $user->verification;
-        $verification->mobile = 1;
-        $user->verification = $verification;
-        $user->mobile = $mobile;
-        $user->save();
+        $updNickName = UsersModel::where('user_id',$params['user_id'])->allowField(true)->save($params);
+        if ($updNickName) {
 
-        Sms::flush($mobile, 'changemobile');
-        $this->success();
-    }
-
-    /**
-     * 第三方登录
-     *
-     * @param string $platform 平台名称
-     * @param string $code     Code码
-     */
-    public function third()
-    {
-        $url = url('user/index');
-        $platform = $this->request->request("platform");
-        $code = $this->request->request("code");
-        $config = get_addon_config('third');
-        if (!$config || !isset($config[$platform])) {
-            $this->error(__('Invalid parameters'));
-        }
-        $app = new \addons\third\library\Application($config);
-        //通过code换access_token和绑定会员
-        $result = $app->{$platform}->getUserInfo(['code' => $code]);
-        if ($result) {
-            $loginret = \addons\third\library\Service::connect($platform, $result);
-            if ($loginret) {
-                $data = [
-                    'userinfo'  => $this->auth->getUserinfo(),
-                    'thirdinfo' => $result
-                ];
-                $this->success(__('Logged in successful'), $data);
-            }
-        }
-        $this->error(__('Operation failed'), $url);
-    }
-
-    /**
-     * 重置密码
-     *
-     * @param string $mobile      手机号
-     * @param string $newpassword 新密码
-     * @param string $captcha     验证码
-     */
-    public function resetpwd()
-    {
-        $type = $this->request->request("type");
-        $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 ($type == 'mobile') {
-            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 = Sms::check($mobile, $captcha, 'resetpwd');
-            if (!$ret) {
-                $this->error(__('Captcha is incorrect'));
-            }
-            Sms::flush($mobile, 'resetpwd');
-        } else {
-            if (!Validate::is($email, "email")) {
-                $this->error(__('Email is incorrect'));
-            }
-            $user = \app\common\model\User::getByEmail($email);
-            if (!$user) {
-                $this->error(__('User not found'));
-            }
-            $ret = Ems::check($email, $captcha, 'resetpwd');
-            if (!$ret) {
-                $this->error(__('Captcha is incorrect'));
-            }
-            Ems::flush($email, 'resetpwd');
-        }
-        //模拟一次登录
-        $this->auth->direct($user->id);
-        $ret = $this->auth->changepwd($newpassword, '', true);
-        if ($ret) {
-            $this->success(__('Reset password successful'));
-        } else {
-            $this->error($this->auth->getError());
         }
     }
 }

+ 10 - 1
application/extra/site.php

@@ -35,5 +35,14 @@ return array (
   'mail_smtp_pass' => 'password',
   'mail_verify_type' => '2',
   'mail_from' => '10000@qq.com',
-  'httpurl' => 'http://yxj.chenhao98.top',
+  'httpurl' => 'http://yxj.chenhao98.top', //域名
+   array (
+       'key'   => 'cfc171bb197e2b4ae4d53a1eee1ab4c6', //您申请的APPKEY
+       'mobile'    => '1891351****', //接受短信的用户手机号码
+       'tpl_id'    => '111', //您申请的短信模板ID,根据实际情况修改
+       'tpl_value' =>'#code#=1234&#company#=聚合数据' //您设置的模板变量,根据实际情况修改
+   ),
+    'key'   => 'cfc171bb197e2b4ae4d53a1eee1ab4c6', //您申请的APPKEY
+    'sendurl' => 'http://v.juhe.cn/sms/send', //短信接口的URL
+    'tpl_id'    => '111', //您申请的短信模板ID,根据实际情况修改
 );