songxingwei 3 anni fa
parent
commit
ef9e82eeb7
2 ha cambiato i file con 25 aggiunte e 67 eliminazioni
  1. 7 52
      application/api/controller/Login.php
  2. 18 15
      application/common/controller/Api.php

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

@@ -3,7 +3,6 @@
 
 namespace app\api\controller;
 
-use app\common\library\WXBizDataCrypt;
 use app\common\model\Config;
 use app\common\model\User;
 use app\common\controller\Api;
@@ -13,24 +12,24 @@ use think\facade\Validate;
 
 
 /**
- * @title 登录注册
+ * @title 登录
  * @controller Login
  */
 class Login extends Api
 {
 
     /**
-     * @title 微信授权登录
-     * @desc 微信授权登录
-     * @url /api/Login/wechat_login
+     * @title 账号登录
+     * @desc 账号登录
+     * @url /api/Login/login
      * @method POST
      * @tag 基础
      * @header
-     * @param  name:code type:string require:1 desc:code
-     * @param  name:rawData type:json require:1 desc:用户信息
+     * @param  name:account type:string require:1 desc:账号
+     * @param  name:password type:string require:1 desc:密码
      *
      */
-    public function wechat_login(){
+    public function login(){
         $code = input('code');
         if (!$code) $this->error('code为空');
         $rawData = input('rawData');    //用户信息
@@ -43,50 +42,6 @@ class Login extends Api
     }
 
 
-    /**
-     * @title 授权手机号
-     * @desc 授权手机号
-     * @url /api/Login/bind_phone
-     * @method POST
-     * @tag 基础
-     * @header
-     * @param  name:code type:string require:1 desc:code
-     * @param  name:iv type:string require:1 desc:iv
-     * @param  name:encryptedData type:string require:1 desc:encryptedData
-     *
-     */
-    public function bind_phone(){
-        $user_id = $this->check_login();
-        $code = input('code');
-        $appid = Config::get_values('wechat_appid');
-        $secret = Config::get_values('wechat_appsecret');
-        //$session_key = input('session_key');
-        $iv = input('iv');
-        $encryptedData = input('encryptedData');
-
-        $url = "https://api.weixin.qq.com/sns/jscode2session?appid=" . $appid . "&secret=" . $secret . "&js_code=" . $code . "&grant_type=authorization_code";
-        $session_key = Common::curlRequest($url);
-        if (!empty($session_key['session_key'])) {
-            $pc = new WXBizDataCrypt($appid, $session_key['session_key']);
-            $errCode =$pc->decryptData($encryptedData, $iv, $data );
-            if ($errCode!=0){
-                $this->error('授权失败');
-            }
-            $array=json_decode($data, true);
-
-            $result = User::bindPhone($user_id,$array);
-            if ($result['code']){
-                $this->success($result['msg']);
-            }else{
-                $this->error($result['msg']);
-            }
-        }else{
-            return Common::return_error('获取session_key失败!');
-        }
-
-
-    }
-
 
 
 }

+ 18 - 15
application/common/controller/Api.php

@@ -5,6 +5,7 @@ namespace app\common\controller;
 use app\common\library\Common;
 use app\common\model\Config;
 use app\common\model\User;
+use Firebase\JWT\JWT;
 use think\exception\HttpResponseException;
 use think\facade\Request;
 use think\Response;
@@ -101,22 +102,24 @@ class Api
      * @return bool
      */
     protected function check_login(){
-        $user =  app()->session->get('us');
-        if (!$user){
-            $this->error('请先登录','',0);
+        try {
+            $token = app()->request->header('Authorization');
+            if ( ! $token) {
+                $this->error('请先登录', '', 0);
+            }
+            $user = JWT::decode($token, config('jwt.key'), ['HS256']);
+            if ( ! $user) {
+                $this->error('请先登录', '', 0);
+            }
+            $userinfo = User::where('id', $user->id)->find();
+            if (1 != $userinfo['status']) {
+                $this->error('账号被禁用', '', 0);
+            }
+
+            return $user->id;
+        } catch (\UnexpectedValueException $e) {
+            $this->error('请先登录', '', 0);
         }
-        $userinfo = User::where('id',$user['id'])->find();
-        if ($userinfo['is_del']!=1){
-            $this->error('请先登录','',0);
-        }
-        if ($userinfo['status']!=1){
-//            app()->session->clear();
-//            app()->session->destroy();
-            $data['disable_reason'] = $userinfo['disable_reason'];
-            $data['disable_time'] = $userinfo['disable_time'];
-            $this->error('账号被禁用',$data,0,1);
-        }
-        return true;
     }