Auth.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. namespace app\data\controller\api;
  3. use app\data\service\UserAdminService;
  4. use app\data\service\UserTokenService;
  5. use think\admin\Controller;
  6. use think\exception\HttpResponseException;
  7. /**
  8. * 接口授权认证基类
  9. * Class Auth
  10. * @package app\data\controller\api
  11. */
  12. abstract class Auth extends Controller
  13. {
  14. /**
  15. * 当前接口请求终端类型
  16. * >>>>>>>>>>>>>>>>>>>>>>
  17. * >>> api-name 接口类型
  18. * >>> api-token 接口认证
  19. * >>>>>>>>>>>>>>>>>>>>>>
  20. * --- 手机浏览器访问 wap
  21. * --- 电脑浏览器访问 web
  22. * --- 微信小程序访问 wxapp
  23. * --- 微信服务号访问 wechat
  24. * --- 苹果应用接口访问 isoapp
  25. * --- 安卓应用接口访问 android
  26. * @var string
  27. */
  28. protected $type;
  29. /**
  30. * 当前用户编号
  31. * @var integer
  32. */
  33. protected $uuid;
  34. /**
  35. * 当前用户数据
  36. * @var array
  37. */
  38. protected $user;
  39. protected $noNeedLogin=[];
  40. /**
  41. * 控制器初始化
  42. */
  43. protected function initialize()
  44. {
  45. // 检查接口类型
  46. $this->type = $this->request->header('api-name');
  47. if (empty($this->type)||!isset(UserAdminService::TYPES[$this->type])) {
  48. $this->error("接口类型未定义!header中增加api-name,值为手机浏览器访问wap电脑浏览器访问web微信小程序访问wxapp微信服务号访问wechat苹果应用接口访问iosapp安卓应用接口访问android");
  49. }
  50. // 读取用户数据
  51. $this->user = $this->getUser();
  52. $this->uuid = $this->user['id'] ?? '';
  53. }
  54. /**
  55. * 获取用户数据
  56. * @return array
  57. */
  58. protected function getUser()
  59. {
  60. try {
  61. if (empty($this->uuid)) {
  62. $token = $this->request->header('api-token','');
  63. // if (empty($token)){
  64. // $this->error('请重新登录,登录认证无效', '{-null-}', 401);
  65. // }
  66. if($this->needLogin()) {
  67. if (empty($token)) $this->error('登录认证不能为空!',null);
  68. }
  69. [$state, $info, $this->uuid] = UserTokenService::check($this->type, $token);
  70. // print_r(UserTokenService::check($this->type, $token));
  71. // exit();
  72. if($this->needLogin()) {
  73. if (empty($state)) $this->error($info, null, 401);
  74. }
  75. }
  76. if($this->uuid) {
  77. $user = UserAdminService::get($this->uuid, $this->type);
  78. if (!$user['status']) $this->error('账户已被冻结!',null,401);
  79. if($user['shipyard'])$user['shipyard']['login_url']='https://ship.shipcc.cn/shipyard.php';
  80. if($user['merchants'])$user['merchants']['login_url']='https://ship.shipcc.cn/ship.php';
  81. return $user;
  82. }
  83. return [];
  84. } catch (HttpResponseException $exception) {
  85. throw $exception;
  86. } catch (\Exception $exception) {
  87. trace_file($exception);
  88. $this->error($exception->getMessage());
  89. }
  90. }
  91. /**
  92. * 显示用户禁用提示
  93. */
  94. protected function checkUserStatus()
  95. {
  96. if (empty($this->user['status'])) {
  97. $this->error('账户已被冻结!',null,401);
  98. }
  99. }
  100. /**
  101. * @return bool
  102. */
  103. protected function needLogin(): bool
  104. {
  105. if($this->noNeedLogin=='*'||$this->noNeedLogin==['*']){
  106. return false;
  107. }
  108. return !in_array($this->app->request->action(),$this->noNeedLogin,true);
  109. }
  110. }