2026-03-21 02:55:24 +08:00
|
|
|
|
<?php
|
|
|
|
|
|
// +----------------------------------------------------------------------
|
2026-03-29 11:22:52 +08:00
|
|
|
|
// | Author: ScottPan Team
|
2026-03-21 02:55:24 +08:00
|
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
namespace app\http\middleware\api;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use app\Request;
|
|
|
|
|
|
use app\services\community\CommunityUserServices;
|
|
|
|
|
|
use app\services\user\UserAuthServices;
|
|
|
|
|
|
use crmeb\exceptions\AuthException;
|
|
|
|
|
|
use crmeb\interfaces\MiddlewareInterface;
|
|
|
|
|
|
use think\exception\DbException;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Class AuthTokenMiddleware
|
|
|
|
|
|
* @package app\api\middleware
|
|
|
|
|
|
*/
|
|
|
|
|
|
class AuthTokenMiddleware implements MiddlewareInterface
|
|
|
|
|
|
{
|
|
|
|
|
|
public function handle(Request $request, \Closure $next, bool $force = true)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
$authInfo = null;
|
|
|
|
|
|
$token = trim(ltrim($request->header('Authori-zation'), 'Bearer'));
|
|
|
|
|
|
if (!$token) $token = trim(ltrim($request->header('Authorization'), 'Bearer'));//正式版,删除此行,某些服务器无法获取到token调整为 Authori-zation
|
|
|
|
|
|
try {
|
|
|
|
|
|
/** @var UserAuthServices $service */
|
|
|
|
|
|
$service = app()->make(UserAuthServices::class);
|
|
|
|
|
|
$authInfo = $service->parseToken($token);
|
|
|
|
|
|
} catch (AuthException $e) {
|
|
|
|
|
|
if ($force)
|
|
|
|
|
|
return app('json')->make($e->getCode(), $e->getMessage());
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!is_null($authInfo)) {
|
|
|
|
|
|
$request->user = function (string $key = null) use (&$authInfo) {
|
|
|
|
|
|
if ($key) {
|
|
|
|
|
|
return $authInfo['user'][$key] ?? '';
|
|
|
|
|
|
}
|
|
|
|
|
|
return $authInfo['user'];
|
|
|
|
|
|
};
|
|
|
|
|
|
$request->tokenData = $authInfo['tokenData'];
|
|
|
|
|
|
}
|
|
|
|
|
|
$request->isLogin = !is_null($authInfo);
|
|
|
|
|
|
$request->uid = is_null($authInfo) ? 0 : (int)$authInfo['user']->uid;
|
|
|
|
|
|
if ($request->uid) {
|
|
|
|
|
|
/** @var CommunityUserServices $communityUserServices */
|
|
|
|
|
|
$communityUserServices = app()->make(CommunityUserServices::class);
|
|
|
|
|
|
$communityUserServices->hasUser($request->uid);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|