Auth.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. namespace app\data\controller\api;
  3. use app\data\service\UserService;
  4. use think\admin\Controller;
  5. use think\exception\HttpResponseException;
  6. /**
  7. * 授权认证基类
  8. * Class Auth
  9. * @package app\store\controller\api
  10. */
  11. abstract class Auth extends Controller
  12. {
  13. /**
  14. * 当前接口请求终端类型
  15. * --- 手机浏览器访问 wap
  16. * --- 电脑浏览器访问 web
  17. * --- 微信小程序访问 wxapp
  18. * --- 微信服务号访问 wechat
  19. * --- 苹果应用接口访问 isoapp
  20. * --- 安卓应用接口访问 android
  21. * @var string
  22. */
  23. protected $type;
  24. /**
  25. * 当前用户编号
  26. * @var integer
  27. */
  28. protected $uuid;
  29. /**
  30. * 当前用户数据
  31. * @var array
  32. */
  33. protected $user;
  34. /**
  35. * 控制器初始化
  36. */
  37. protected function initialize()
  38. {
  39. // 接口数据类型
  40. $this->type = input('api') ?: $this->request->header('api-name');
  41. $this->type = $this->type ?: $this->request->header('api-type');
  42. if (empty($this->type) || empty(UserService::TYPES[$this->type])) {
  43. $this->error("接口通道未定义!");
  44. }
  45. // 获取用户数据
  46. $this->user = $this->getUser();
  47. $this->uuid = $this->user['id'] ?? '';
  48. if (empty($this->uuid)) {
  49. $this->error('用户登录失败!', '{-null-}', 401);
  50. }
  51. }
  52. /**
  53. * 获取用户数据
  54. * @return array
  55. */
  56. protected function getUser(): array
  57. {
  58. try {
  59. if (empty($this->uuid)) {
  60. $token = input('token') ?: $this->request->header('api-token');
  61. if (empty($token)) $this->error('登录认证TOKEN不能为空!');
  62. [$state, $info, $this->uuid] = UserService::instance()->check($this->type, $token);
  63. if (empty($state)) $this->error($info, '{-null-}', 401);
  64. }
  65. return UserService::instance()->get($this->type, $this->uuid);
  66. } catch (HttpResponseException $exception) {
  67. throw $exception;
  68. } catch (\Exception $exception) {
  69. $this->error($exception->getMessage());
  70. }
  71. }
  72. }