Login.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. require_once env('root_path').'/vendor/program/wxBizDataCrypt.php';
  60. $sessionKey = $data['session_key'];
  61. $pc = new \WXBizDataCrypt(config('app.mini_program')['app_id'], $sessionKey);
  62. $errCode = $pc->decryptData($encryptedData, $iv, $info);
  63. if($errCode != 0) $this->error('微信登录失败');
  64. $info = json_decode($info,true);
  65. $phone = $info['purePhoneNumber'];
  66. $member = Db::name('store_member')->field('id,phone')->where('openid',$data['openid'])->find();
  67. if(empty($member)){
  68. $member_data = array(
  69. 'openid' => $data['openid'],
  70. 'headimg' => $headimg,
  71. 'name' => $name,
  72. 'pid' =>$pid,
  73. 'phone' => $phone,
  74. 'create_at'=>date("Y-m-d H:i:s")
  75. );
  76. Db::table('store_member')->insert($member_data);
  77. $uid = Db::getLastInsID();
  78. // 给推荐人奖励
  79. if($pid){
  80. update_user_integral($pid,10,1,'邀请好友注册',$uid);// 更新积分
  81. update_user_growth($pid,10,1,'邀请好友注册',['register_id'=>$uid]);// 更新成长值&&等级
  82. }
  83. }else{
  84. $uid = $member['id'];
  85. }
  86. if(empty($uid)) $this->error('数据有误');
  87. $token = self::create_jwt($uid);
  88. $this->success('登录成功',$token);
  89. }
  90. /**
  91. * @param name:phone type:int require:1 default:-- desc:手机号
  92. * @param name:password type:string require:1 default:-- desc:密码
  93. * @return name:token type:string default:-- desc:用户登录成功后的token值
  94. */
  95. public function passwordLogin(){
  96. $phone = input('phone');
  97. $password = input('password');
  98. if(empty($password) || empty($phone)){
  99. $this->error('参数错误');
  100. }
  101. $member_id = Db::name('store_member')->where('phone',$phone)->where('password',md5($password))->value('id');
  102. if(empty($member_id)){
  103. $this->error('手机号或密码错误');
  104. }
  105. $token = self::create_jwt($member_id);
  106. $this->success('登录成功',$token);
  107. }
  108. //token加密
  109. public function create_jwt($uid)
  110. {
  111. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  112. $time = time(); //签发时间
  113. $expire = $time + config('app.jwt_time'); //过期时间
  114. $token = array(
  115. "uid" => $uid,
  116. "iss" => "https://zain.com",//签发组织
  117. "aud" => "https://zain.com", //签发作者
  118. "iat" => $time,
  119. "nbf" => $time,
  120. "exp" => $expire
  121. );
  122. $jwt = JWT::encode($token, $key);
  123. return $jwt;
  124. }
  125. }