Base.php 1008 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace app\api\controller;
  3. use EasyWeChat\Factory;
  4. use Firebase\JWT\JWT;
  5. use library\Controller;
  6. use think\Db;
  7. class Base extends Controller{
  8. public $uid = '';
  9. /**
  10. * 验证token,获取用户id
  11. * */
  12. public function initialize(){
  13. $token = isset($_SERVER['HTTP_TOKEN']) ? $_SERVER['HTTP_TOKEN'] : '';
  14. if ($token == ''){
  15. $this->error('请先登录','','502');
  16. }else{
  17. $user_info = JWT::decode($token, Config('jwt_key'),['HS256']);
  18. /*if(!$user_info || $user_info->time<time()){
  19. $this->error('登录超时','','502');
  20. }*/
  21. if ($user_info->uid <= 0 ){
  22. $this->error('请先注册','','502');
  23. }
  24. $uid = $user_info->uid;
  25. $user=Db::table('hy_user')->where('id',$uid)->find();
  26. if (empty($user)){
  27. $this->error('用户不存在','','502');
  28. }
  29. $this->uid = $uid;
  30. }
  31. }
  32. }