Login.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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:headimg type:string require:1 default:-- desc:头像地址
  38. * @param name:name type:string require:1 default:-- desc:昵称
  39. * @param name:pid type:int require:0 default:0 desc:推荐人id
  40. * @param name:encrypted type:int require:0 default:0 desc:encrypted
  41. * @param name:iv type:int require:0 default:0 desc:iv
  42. * @return name:token type:string default:-- desc:用户登录成功后的token值
  43. */
  44. public function weChatLogin(){
  45. $code = input('code');
  46. $headimg = input('headimg');
  47. $name = input('name');
  48. $pid = input('pid',0);
  49. $iv = input('iv');
  50. $encryptedData = input('encrypted');
  51. if(empty($code) || empty($headimg) || empty($name)){
  52. $this->error('参数错误');
  53. }
  54. $app = Factory::miniProgram(config('app.mini_program'));
  55. $data = $app->auth->session($code);
  56. if(empty($data['openid'])){
  57. $this->error($data['errmsg']);
  58. }
  59. $phone = '';
  60. if($iv && $encryptedData) {
  61. require_once env('root_path').'/vendor/program/wxBizDataCrypt.php';
  62. $sessionKey = $data['session_key'];
  63. $pc = new \WXBizDataCrypt(config('app.mini_program')['app_id'], $sessionKey);
  64. $errCode = $pc->decryptData($encryptedData, $iv, $info);
  65. if($errCode != 0) $this->error('微信登录失败');
  66. $info = json_decode($info,true);
  67. $phone = $info['purePhoneNumber'];
  68. }
  69. $member = Db::name('store_member')->field('id,phone')->where('openid',$data['openid'])->find();
  70. if(empty($member)){
  71. //判断手机号是否已注册
  72. if($phone){
  73. $member_id = Db::name('store_member')->where('phone','=',$phone)->value('id');
  74. if($member_id) $phone = '';
  75. }
  76. $member_data = array(
  77. 'openid' => $data['openid'],
  78. 'headimg' => $headimg,
  79. 'name' => $name,
  80. 'pid' =>$pid,
  81. 'phone' => $phone,
  82. 'integral' => 0,
  83. 'growth' => 0,
  84. 'create_at'=>date("Y-m-d H:i:s")
  85. );
  86. Db::table('store_member')->insert($member_data);
  87. $uid = Db::getLastInsID();
  88. // 给推荐人奖励
  89. if($pid){
  90. $check_integral = Db::table('integral_info')
  91. ->where('user_id','=',$pid)
  92. ->where('create_at','> time',date('Y-m-d 00:00:00'))
  93. ->where('type','=',1)
  94. ->sum('integral');
  95. if($check_integral < 100) {
  96. update_user_integral($pid,10,1,'恭喜亲通过邀请好友注册获得10积分',$uid);// 更新积分
  97. update_user_growth($pid,10,1,'恭喜亲通过邀请好友注册获得10成长值',['register_id'=>$uid]);// 更新成长值&&等级
  98. }
  99. }
  100. }else{
  101. $uid = $member['id'];
  102. }
  103. if(empty($uid)) $this->error('数据有误');
  104. $token = self::create_jwt($uid);
  105. $this->success('登录成功',$token);
  106. }
  107. /**
  108. * @param name:phone type:int require:1 default:-- desc:手机号
  109. * @param name:password type:string require:1 default:-- desc:密码
  110. * @return name:token type:string default:-- desc:用户登录成功后的token值
  111. */
  112. public function passwordLogin(){
  113. $phone = input('phone');
  114. $password = input('password');
  115. if(empty($password) || empty($phone)){
  116. $this->error('参数错误');
  117. }
  118. $member_id = Db::name('store_member')->where('phone',$phone)->where('password',md5($password))->value('id');
  119. if(empty($member_id)){
  120. $this->error('手机号或密码错误');
  121. }
  122. $token = self::create_jwt($member_id);
  123. $this->success('登录成功',$token);
  124. }
  125. //token加密
  126. public function create_jwt($uid)
  127. {
  128. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  129. $time = time(); //签发时间
  130. $expire = $time + config('app.jwt_time'); //过期时间
  131. $token = array(
  132. "uid" => $uid,
  133. "iss" => "https://zain.com",//签发组织
  134. "aud" => "https://zain.com", //签发作者
  135. "iat" => $time,
  136. "nbf" => $time,
  137. "exp" => $expire
  138. );
  139. $jwt = JWT::encode($token, $key);
  140. return $jwt;
  141. }
  142. }