Login.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. * @return name:token type:string default:-- desc:用户登录成功后的token值
  41. */
  42. public function weChatLogin(){
  43. $code = input('code');
  44. $headimg = input('headimg');
  45. $name = input('name');
  46. $pid = input('pid',0);
  47. if(empty($code) || empty($headimg) || empty($name)){
  48. $this->error('参数错误');
  49. }
  50. $app = Factory::miniProgram(config('app.mini_program'));
  51. $data = $app->auth->session($code);
  52. if(empty($data['openid'])){
  53. $this->error($data['errmsg']);
  54. }
  55. $member = Db::name('store_member')->field('id,phone')->where('openid',$data['openid'])->find();
  56. if(empty($member)){
  57. $member_data = array(
  58. 'openid' => $data['openid'],
  59. 'headimg' => $headimg,
  60. 'name' => $name,
  61. 'pid' =>$pid,
  62. 'create_at'=>date("Y-m-d H:i:s")
  63. );
  64. Db::table('store_member')->insert($member_data);
  65. $uid = Db::getLastInsID();
  66. // 给推荐人奖励
  67. if($pid){
  68. $invite_max = intval(sysconf('invite_max'));
  69. $invite_crystal= intval(sysconf('invite_crystal'));
  70. $invite_num = Db::table('store_member')->where('pid',$pid)->count();
  71. if($invite_num <= $invite_max && $invite_crystal > 0) {
  72. // 更新会员余额
  73. Db::table('store_member')->where('id',$pid)->setInc('crystal',$invite_crystal);
  74. crystal_log($pid,$invite_crystal,'推荐注册奖励',1,$uid);
  75. }
  76. }
  77. }else{
  78. $uid = $member['id'];
  79. }
  80. if(empty($uid)) $this->error('数据有误');
  81. $token = self::create_jwt($uid);
  82. $this->success('登录成功',['token'=>$token]);
  83. }
  84. /**
  85. * @param name:phone type:int require:1 default:-- desc:手机号
  86. * @param name:password type:string require:1 default:-- desc:密码
  87. * @return name:token type:string default:-- desc:用户登录成功后的token值
  88. */
  89. public function passwordLogin(){
  90. $phone = input('phone');
  91. $password = input('password');
  92. if(empty($password) || empty($phone)){
  93. $this->error('参数错误');
  94. }
  95. $member_id = Db::name('store_member')->where('phone',$phone)->where('password',md5($password))->value('id');
  96. if(empty($member_id)){
  97. $this->error('手机号或密码错误');
  98. }
  99. $token = self::create_jwt($member_id);
  100. $this->success('登录成功',$token);
  101. }
  102. //token加密
  103. public function create_jwt($uid)
  104. {
  105. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  106. $time = time(); //签发时间
  107. $expire = $time + config('app.jwt_time'); //过期时间
  108. $token = array(
  109. "uid" => $uid,
  110. "iss" => "https://zain.com",//签发组织
  111. "aud" => "https://zain.com", //签发作者
  112. "iat" => $time,
  113. "nbf" => $time,
  114. "exp" => $expire
  115. );
  116. $jwt = JWT::encode($token, $key);
  117. return $jwt;
  118. }
  119. }