测试分支-部署-优化跨域报错

This commit is contained in:
2026-03-21 11:56:21 +08:00
parent 85da91e3f3
commit c4c17180ee
2 changed files with 45 additions and 55 deletions

View File

@@ -21,6 +21,46 @@ class AllowCrossDomain implements MiddlewareInterface
'Access-Control-Allow-Headers' => '*', 'Access-Control-Allow-Headers' => '*',
]; ];
/**
* 根据 Origin 与配置写入 Access-Control-Allow-Origin。
* 注意:* 与 Access-Control-Allow-Credentials:true 不能同时出现,故通配时去掉 Credentials。
*/
private static function applyCorsOrigin(Request $request, array $header): array
{
$origin = $request->header('origin');
if (is_array($origin)) {
$origin = $origin[0] ?? '';
}
$origin = is_string($origin) ? trim($origin) : '';
$corsDomain = array_map('trim', explode(',', config('buildadmin.cors_request_domain', '')));
$corsDomain[] = $request->host(true);
$wildcard = in_array('*', $corsDomain);
if ($origin !== '') {
$info = parse_url($origin);
$host = '';
if (is_array($info)) {
$host = $info['host'] ?? '';
}
$allowed = $wildcard
|| in_array($origin, $corsDomain)
|| in_array($host, $corsDomain)
|| ($host === 'localhost' || $host === '127.0.0.1');
if ($allowed) {
$header['Access-Control-Allow-Origin'] = $origin;
}
return $header;
}
if ($wildcard) {
$header['Access-Control-Allow-Origin'] = '*';
unset($header['Access-Control-Allow-Credentials']);
}
return $header;
}
/** /**
* 返回 CORS 预检OPTIONS响应供路由直接调用Webman 未匹配路由时不走中间件) * 返回 CORS 预检OPTIONS响应供路由直接调用Webman 未匹配路由时不走中间件)
*/ */
@@ -32,24 +72,7 @@ class AllowCrossDomain implements MiddlewareInterface
'Access-Control-Allow-Methods' => 'GET, POST, PUT, DELETE, PATCH, OPTIONS', 'Access-Control-Allow-Methods' => 'GET, POST, PUT, DELETE, PATCH, OPTIONS',
'Access-Control-Allow-Headers' => 'Content-Type, Authorization, batoken, ba-user-token, think-lang', 'Access-Control-Allow-Headers' => 'Content-Type, Authorization, batoken, ba-user-token, think-lang',
]; ];
$origin = $request->header('origin'); $header = self::applyCorsOrigin($request, $header);
if (is_array($origin)) {
$origin = $origin[0] ?? '';
}
$origin = is_string($origin) ? trim($origin) : '';
if ($origin !== '') {
$info = parse_url($origin);
$host = $info['host'] ?? '';
$corsDomain = array_map('trim', explode(',', config('buildadmin.cors_request_domain', '')));
$corsDomain[] = $request->host(true);
$allowed = in_array('*', $corsDomain)
|| in_array($origin, $corsDomain)
|| in_array($host, $corsDomain)
|| ($host === 'localhost' || $host === '127.0.0.1');
if ($allowed) {
$header['Access-Control-Allow-Origin'] = $origin;
}
}
return response('', 204, $header); return response('', 204, $header);
} }
@@ -60,29 +83,7 @@ class AllowCrossDomain implements MiddlewareInterface
return $handler($request); return $handler($request);
} }
$header = $this->header; $header = self::applyCorsOrigin($request, $this->header);
$origin = $request->header('origin');
if (is_array($origin)) {
$origin = $origin[0] ?? '';
}
$origin = is_string($origin) ? trim($origin) : '';
if ($origin !== '') {
$info = parse_url($origin);
$host = $info['host'] ?? '';
$corsDomain = array_map('trim', explode(',', config('buildadmin.cors_request_domain', '')));
$corsDomain[] = $request->host(true);
$allowed = in_array('*', $corsDomain)
|| in_array($origin, $corsDomain)
|| in_array($host, $corsDomain)
|| ($host === 'localhost' || $host === '127.0.0.1');
if ($allowed) {
$header['Access-Control-Allow-Origin'] = $origin;
}
}
if ($request->method() === 'OPTIONS') { if ($request->method() === 'OPTIONS') {
return response('', 204, $header); return response('', 204, $header);

View File

@@ -3,12 +3,12 @@
namespace app\process; namespace app\process;
use Webman\App; use Webman\App;
use Webman\Http\Response;
class Http extends App class Http extends App
{ {
/** /**
* 在父类处理前拦截 OPTIONS 预检,直接返回 CORS 头(避免预检未命中路由时无 CORS * 在父类处理前拦截 OPTIONS 预检,直接返回 CORS 头(避免预检未命中路由时无 CORS
* 与 AllowCrossDomain::optionsResponse 一致,避免 * + Allow-Credentials 组合被浏览器拒绝
*/ */
public function onMessage($connection, $request): void public function onMessage($connection, $request): void
{ {
@@ -18,19 +18,8 @@ class Http extends App
$path = is_string($path) ? trim($path, '/') : ''; $path = is_string($path) ? trim($path, '/') : '';
$isApiOrAdmin = $path !== '' && (str_starts_with($path, 'api') || str_starts_with($path, 'admin')); $isApiOrAdmin = $path !== '' && (str_starts_with($path, 'api') || str_starts_with($path, 'admin'));
if ($isApiOrAdmin) { if ($isApiOrAdmin) {
$origin = $request->header('origin'); $response = \app\common\middleware\AllowCrossDomain::optionsResponse($request);
$origin = is_array($origin) ? ($origin[0] ?? '') : (is_string($origin) ? trim($origin) : ''); $connection->send($response);
if ($origin === '') {
$origin = '*';
}
$headers = [
'Access-Control-Allow-Origin' => $origin,
'Access-Control-Allow-Credentials' => 'true',
'Access-Control-Max-Age' => '1800',
'Access-Control-Allow-Methods' => 'GET, POST, PUT, DELETE, PATCH, OPTIONS',
'Access-Control-Allow-Headers' => 'Content-Type, Authorization, batoken, ba-user-token, think-lang',
];
$connection->send(new Response(204, $headers, ''));
return; return;
} }
} }