Login.php 4.9 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. * @return name:openid type:string default:-- desc:用户openid
  40. * @return name:headimg type:string default:-- desc:用户头像地址
  41. * @return name:name type:string default:-- desc:用户昵称
  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. if(empty($code) || empty($headimg) || empty($name)){
  49. $this->error('参数错误');
  50. }
  51. $app = Factory::miniProgram(config('app.mini_program'));
  52. $data = $app->auth->session($code);
  53. if(empty($data['openid'])){
  54. $this->error($data['errmsg']);
  55. }
  56. $member = Db::name('store_member')->field('id,phone')->where('openid',$data['openid'])->find();
  57. if(empty($member)){
  58. $member_data = array(
  59. 'openid' => $data['openid'],
  60. 'headimg' => $headimg,
  61. 'name' => $name,
  62. 'create_at'=>date("Y-m-d H:i:s")
  63. );
  64. Db::table('store_member')->insert($member_data);
  65. $uid = Db::getLastInsID();
  66. }else{
  67. $uid = $member['id'];
  68. }
  69. if(empty($uid)) $this->error('数据有误');
  70. $token = self::create_jwt($uid);
  71. $this->success('登录成功',$token);
  72. }
  73. /**
  74. * @title 密码登录
  75. * @desc 密码登录
  76. * @author QGF
  77. * @url /api/Login/passwordLogin
  78. * @method POST
  79. * @tag 密码登录
  80. * @param name:phone type:int require:1 default:-- desc:手机号
  81. * @param name:password type:string require:1 default:-- desc:密码
  82. * @return name:token type:string default:-- desc:用户登录成功后的token值
  83. */
  84. public function passwordLogin(){
  85. $phone = input('phone');
  86. $password = input('password');
  87. if(empty($password) || empty($phone)){
  88. $this->error('参数错误');
  89. }
  90. $member_id = Db::name('store_member')->where('phone',$phone)->where('password',md5($password))->value('id');
  91. if(empty($member_id)){
  92. $this->error('手机号或密码错误');
  93. }
  94. $token = self::create_jwt($member_id);
  95. $this->success('登录成功',$token);
  96. }
  97. //校验短信验证码
  98. public function verify_sms($phone = '',$code = ''){
  99. $store_member_sms = Db::name('store_member_sms')->field('id,code')->where('phone',$phone)->where('used',0)->order('id desc')->find();
  100. if($store_member_sms['code'] == $code){
  101. return $store_member_sms['id'];
  102. }else{
  103. return 0;
  104. }
  105. }
  106. //token加密
  107. public function create_jwt($uid)
  108. {
  109. $key = md5(config('app.jwt')); //jwt的签发密钥,验证token的时候需要用到
  110. $time = time(); //签发时间
  111. $expire = $time + config('app.jwt_time'); //过期时间
  112. $token = array(
  113. "uid" => $uid,
  114. "iss" => "https://zain.com",//签发组织
  115. "aud" => "https://zain.com", //签发作者
  116. "iat" => $time,
  117. "nbf" => $time,
  118. "exp" => $expire
  119. );
  120. $jwt = JWT::encode($token, $key);
  121. return $jwt;
  122. }
  123. public function get_token(){
  124. $uid = input('uid',500);
  125. $token = $this->create_jwt($uid);
  126. $this->success('',$token);
  127. }
  128. }