Login.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\api\controller;
  15. use AlibabaCloud\Client\AlibabaCloud;
  16. use AlibabaCloud\Client\Exception\ClientException;
  17. use AlibabaCloud\Client\Exception\ServerException;
  18. use app\api\controller\Base;
  19. use think\Db;
  20. use Firebase\JWT\JWT;
  21. use EasyWeChat\Factory;
  22. /**
  23. * @title 用户登录
  24. * @controller Login
  25. * @group worker
  26. */
  27. class Login extends Base
  28. {
  29. /**
  30. * @title 微信登录(小程序)
  31. * @desc 微信登录(小程序)
  32. * @author qc
  33. * @url /api/Login/weChatLogin
  34. * @method POST
  35. * @tag 登录 授权
  36. * @param name:code type:int require:1 default:-- desc:code值
  37. * @param name:pid type:int require:0 default:0 desc:推荐人id
  38. * @param name:goods_id type:int require:0 default:0 desc:商品id
  39. * @return name:token type:string default:-- desc:用户登录成功后的token值
  40. */
  41. public function weChatLogin(){
  42. $code = input('code');
  43. $pid = input('pid');
  44. $goods_id = input('goods_id');
  45. if(empty($code)) $this->error('参数错误1');
  46. $res = http_get('https://api.weixin.qq.com/sns/oauth2/access_token?appid='.config('app.official_account')['appid'].'&secret='.config('app.official_account')['secret'].'&code='.$code.'&grant_type=authorization_code');
  47. $res = json_decode($res,true);
  48. $member = Db::name('store_member')->field('id,phone')->where('openid', $res['openid'])->find();
  49. if (empty($member)) {
  50. $user_info = http_get('https://api.weixin.qq.com/sns/userinfo?access_token='.$res['access_token'].'&openid='.$res['openid']);
  51. $user_info = json_decode($user_info,true);
  52. $member_data = array(
  53. 'openid' => $user_info['openid'],
  54. 'headimg' => $user_info['headimgurl'],
  55. 'name' => $user_info['nickname'],
  56. 'pid' => $pid,
  57. 'create_at' => date("Y-m-d H:i:s")
  58. );
  59. Db::table('store_member')->insert($member_data);
  60. $uid = Db::getLastInsID();
  61. // 给推荐人奖励
  62. if ($pid && $goods_id) {
  63. $invite_info = [
  64. 'user_id' => $uid,
  65. 'pid' => $pid,
  66. 'goods_id' => $goods_id,
  67. ];
  68. Db::table('invite_info')->insert($invite_info);
  69. }
  70. } else {
  71. $uid = $member['id'];
  72. }
  73. if (empty($uid)) $this->error('数据有误');
  74. $token = self::create_jwt($uid);
  75. $this->success('登录成功', ['token' => $token]);
  76. }
  77. /**
  78. * @param name:phone type:int require:1 default:-- desc:手机号
  79. * @param name:password type:string require:1 default:-- desc:密码
  80. * @return name:token type:string default:-- desc:用户登录成功后的token值
  81. */
  82. public function passwordLogin()
  83. {
  84. $phone = input('phone');
  85. $password = input('password');
  86. if (empty($password) || empty($phone)) {
  87. $this->error('参数错误');
  88. }
  89. $member_id = Db::name('store_member')->where('phone', $phone)->where('password', md5($password))->value('id');
  90. if (empty($member_id)) {
  91. $this->error('手机号或密码错误');
  92. }
  93. $token = self::create_jwt($member_id);
  94. $this->success('登录成功', $token);
  95. }
  96. //token加密
  97. public function create_jwt($uid)
  98. {
  99. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  100. $time = time(); //签发时间
  101. $expire = $time + config('app.jwt_time'); //过期时间
  102. $token = array(
  103. "uid" => $uid,
  104. "iss" => "https://zain.com",//签发组织
  105. "aud" => "https://zain.com", //签发作者
  106. "iat" => $time,
  107. "nbf" => $time,
  108. "exp" => $expire
  109. );
  110. $jwt = JWT::encode($token, $key);
  111. return $jwt;
  112. }
  113. /**
  114. * @title 手机号授权登录
  115. * @desc 手机号授权登录
  116. * @author qc
  117. * @url /api/Login/programLogin
  118. * @method POST
  119. * @tag 登录 授权
  120. * @param name:code type:int require:1 default:-- desc:code值
  121. * @param name:encrypted type:string require:1 default:-- desc:encrypted
  122. * @param name:iv type:string require:1 default:-- desc:iv
  123. * @param name:pid type:string require:0 default:0 desc:推荐人id
  124. * @param name:goods_id type:int require:0 default:0 desc:商品id
  125. * @return name:token type:string default:-- desc:用户登录成功后的token值
  126. */
  127. public function programLogin()
  128. {
  129. $code = input('post.code');
  130. $encryptedData = input('post.encrypted');
  131. $iv = input('post.iv');
  132. $pid = input('post.pid',0);
  133. $goods_id = input('post.goods_id',0);
  134. if (empty($code)) $this->error('参数错误');
  135. $app = Factory::miniProgram(config('app.mini_program'));
  136. $data = $app->auth->session($code);
  137. //var_dump($data);
  138. if (empty($data['openid'])) $this->error('微信登录失败,未获取到openid');
  139. $member_id = Db::name('store_member')->field('id')->where('openid', $data['openid'])->value('id');
  140. if ($member_id) $this->success('登录成功',['token'=>self::create_jwt($member_id)]);
  141. require_once env('root_path') . 'vendor/zoujingli/wechat-developer/WeMini/crypt/wxBizDataCrypt.php';
  142. $sessionKey = $data['session_key'];
  143. $pc = new \WXBizDataCrypt(config('app.mini_program')['app_id'], $sessionKey);
  144. $errCode = $pc->decryptData($encryptedData, $iv, $info);
  145. if ($errCode != 0) $this->error('微信登录失败2');
  146. $info = json_decode($info, true);
  147. $phone = $info['purePhoneNumber'];
  148. if (empty($phone)) $this->error('微信登录失败3');
  149. $member = Db::name('store_member')->field('id,phone,openid')->where('phone', $phone)->find();
  150. if(!empty($member)) $this->error('该手机号已绑定账号');
  151. $member_data = [
  152. 'phone' => $phone,
  153. 'headimg' =>'',
  154. 'openid' => $data['openid'],
  155. 'pid' => $pid,
  156. 'create_at' => date("Y-m-d H:i:s")
  157. ];
  158. Db::table('store_member')->insert($member_data);
  159. $uid = Db::getLastInsID();
  160. Db::table('store_member')->where('id',$uid)->update(['name'=>'HG'.$uid]);
  161. // 给推荐人奖励
  162. if ($pid && $goods_id) {
  163. $invite_info = [
  164. 'user_id' => $uid,
  165. 'pid' => $pid,
  166. 'goods_id' => $goods_id
  167. ];
  168. Db::table('invite_info')->insert($invite_info);
  169. }
  170. $this->success('登录成功',['token'=>self::create_jwt($uid)]);
  171. }
  172. }