瀏覽代碼

微信登录

chenhao 4 年之前
父節點
當前提交
4a47306625
共有 4 個文件被更改,包括 85 次插入28 次删除
  1. 81 26
      application/api/controller/User.php
  2. 4 2
      application/common/library/Auth.php
  3. 二進制
      vendor.tar.gz
  4. 二進制
      vendor/easywechat-composer.tar.gz

+ 81 - 26
application/api/controller/User.php

@@ -5,6 +5,7 @@ namespace app\api\controller;
 use app\common\controller\Api;
 use app\common\library\Ems;
 use app\common\library\Sms;
+use EasyWeChat\Factory;
 use fast\Random;
 use think\Db;
 use think\Validate;
@@ -108,8 +109,10 @@ class User extends Api
         $password = $this->request->request('password');
         $mobile = $this->request->request('mobile');
         $group_id = $this->request->request('group_id');
-        $username = $mobile;
-
+        $username = $this->request->request('nickname');
+        $avatar = $this->request->request('avatar');
+        $openid = $this->request->request('openid');
+        if (!isset($username) || empty($username)) $username = $mobile;
         $code = $this->request->request('code');
         if (!$username || !$password) {
             $this->error(__('Invalid parameters'));
@@ -133,7 +136,7 @@ class User extends Api
         if (!$group_id) {
             $group_id = 0;
         }
-        $ret = $this->auth->register($username, $password, '', $mobile, [], $group_id);
+        $ret = $this->auth->register($username, $password, '', $mobile, [], $group_id,$openid,$avatar);
         if ($ret) {
             $data = ['userinfo' => $this->auth->getUserinfo()];
             $this->success(__('Sign up successful'), $data);
@@ -147,30 +150,82 @@ class User extends Api
      */
     public function wechatLogin()
     {
+
+        $config = [
+            'app_id' => 'wxe02aa578255f9184',
+            'secret' => '5e184a450e2cb5331826ead2fd95157e',
+            // 下面为可选项
+            // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
+            'response_type' => 'array',
+
+        ];
+
+        $app=Factory::miniProgram($config);
+        $data = input('get.');
+        $res=$app->auth->session($data['js_code']);
+        if (!isset($res['openid'])) return $this->error('请求失败');
+
+        $userInfo = Db::name('user')->where('openid',$res['openid'])->find();
+
+        if (!$userInfo) {
+            return json(['code' => 101,'msg'=>'请先绑定手机号','data'=>$data]);
+        } else {
+            $user = \app\common\model\User::getByMobile($userInfo['mobile']);
+            if ($user) {
+                if ($user->status != '1') {
+                    $this->error(__('Account is locked'));
+                }
+                //如果已经有账号则直接登录
+                $ret = $this->auth->direct($user->id);
+                if ($ret) {
+                    Sms::flush($userInfo['mobile'], 'mobilelogin');
+                    $data = ['userinfo' => $this->auth->getUserinfo()];
+                    $this->success(__('Logged in successful'), $data);
+                } else {
+                    $this->error($this->auth->getError());
+                }
+            }
+        }
+    }
+    /**
+     * 绑定微信
+     * @param string $username 微信昵称
+     * @param string $avatar 微信头像
+     */
+    public function bin()
+    {
+        $user = $this->auth->getUser();
+
+        if (!empty($user['openid'])) return $this->error('您已经绑定过微信了');
+        $config = [
+            'app_id' => 'wxe02aa578255f9184',
+            'secret' => '5e184a450e2cb5331826ead2fd95157e',
+            // 下面为可选项
+            // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
+            'response_type' => 'array',
+
+        ];
+
+        $app=Factory::miniProgram($config);
         $data = input('get.');
-        $appid = "wxe02aa578255f9184 ";
-        $secret = "5e184a450e2cb5331826ead2fd95157e";
-        $js_code = $data['js_code'];
-        $headerArray = array(
-            "Content-type:application/json",
-            "Accept:application/json"
-        );
-        $url = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js_code=$js_code&grant_type=authorization_code";
-
-        $ch = curl_init();                             //初始化
-//        curl_setopt($ch,CURLOPT_HTTPHEADER,$headerArray);
-        curl_setopt($ch, CURLOPT_URL, $url);           //设置访问的URL
-        curl_setopt($ch, CURLOPT_HEADER, false);       //设置不需要头信息
-        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);//只获取页面内容,但不输出
-        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
-        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
-        curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
-        $str = curl_exec($ch);                         //执行访问,返回结果
-        curl_close($ch);                               //关闭curl,释放资源
-        dump($str);die;
-        $openid = json_decode($str, true);
-        $data["user_openid"] = $openid["openid"];
+        $res=$app->auth->session($data['js_code']);
+        if (!isset($res['openid'])) return $this->error('请求失败');
 
+        $data = input('get.');
+
+        $ins = [
+            'openid' => $res['openid'],
+            'username' => $data['username'],
+            'avatar' => $data['avatar'],
+        ];
+
+        $upd= Db::name('user')->where('id',$user['id'])->update($ins);
+
+        if ($upd) {
+            return $this->success('绑定成功');
+        } else {
+            return $this->error('绑定失败');
+        }
     }
     /**
      * 重置密码
@@ -480,7 +535,7 @@ class User extends Api
         } else {
             return $this->error('提价失败');
         }
-     }
+    }
 
 
     /**

+ 4 - 2
application/common/library/Auth.php

@@ -123,7 +123,7 @@ class Auth
      * @param array  $extend   扩展参数
      * @return boolean
      */
-    public function register($username, $password, $email = '', $mobile = '', $extend = [],$group_id)
+    public function register($username, $password, $email = '', $mobile = '', $extend = [],$group_id,$openid='',$avatar='')
     {
         // 检测用户名、昵称、邮箱、手机号是否存在
 //        if (User::getByUsername($username)) {
@@ -155,6 +155,7 @@ class Auth
             'score'    => 0,
             'avatar'   => '',
         ];
+        if (!$avatar) $avatar = config('site.httpurl').'/assets/img/qrcode.png';
         $params = array_merge($data, [
             'nickname'  => preg_match("/^1[3-9]{1}\d{9}$/",$username) ? substr_replace($username,'****',3,4) : $username,
             'salt'      => Random::alnum(),
@@ -164,7 +165,8 @@ class Auth
             'loginip'   => $ip,
             'prevtime'  => $time,
             'status'    => '1',
-            'avatar'    => '/assets/img/qrcode.png',
+            'avatar'    => $avatar,
+            'openid'    => $openid,
         ]);
 
         if ($group_id!=0) {

二進制
vendor.tar.gz


二進制
vendor/easywechat-composer.tar.gz