12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace app\badminapi\middleware;
- use app\Request;
- use crmeb\interfaces\MiddlewareInterface;
- use crmeb\repositories\BAdminRepository;
- use Psr\SimpleCache\InvalidArgumentException;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- use think\facade\Config;
- class BadminAuthTokenMiddleware implements MiddlewareInterface
- {
- public function handle(Request $request, \Closure $next)
- {
- $authInfo = null;
- $token = trim(ltrim($request->header(Config::get('cookie.badmin_token_name', 'Badmin-Authori-zation')), 'Bearer'));
- $adminInfo = BAdminRepository::adminParseToken($token);
- Request::macro('isAdminLogin', function () use (&$adminInfo) {
- return !is_null($adminInfo);
- });
- Request::macro('adminId', function () use (&$adminInfo) {
- return $adminInfo['id'];
- });
- Request::macro('adminInfo', function () use (&$adminInfo) {
- return $adminInfo;
- });
- return $next($request);
- }
- }
|