You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
878 B
28 lines
878 B
<?php
|
|
declare (strict_types=1);
|
|
|
|
namespace app\middleware;
|
|
|
|
use think\facade\Config;
|
|
use think\Response;
|
|
|
|
class AdminResponse
|
|
{
|
|
|
|
public function handle($request, \Closure $next): Response
|
|
{
|
|
$response = $next($request);
|
|
$origin = $request->header('origin', '');
|
|
$whitelist = Config::get('apiadmin.CORS_ORIGIN_WHITELIST', []);
|
|
if ($origin && in_array($origin, $whitelist, true)) {
|
|
$response->header(['Access-Control-Allow-Origin' => $origin]);
|
|
}
|
|
$response->header([
|
|
'Vary' => 'Origin',
|
|
'Access-Control-Allow-Methods' => 'POST,GET,OPTIONS',
|
|
'Access-Control-Allow-Headers' => 'Api-Auth,token,Authorization,Content-Type,X-Requested-With',
|
|
'Access-Control-Allow-Credentials' => 'true',
|
|
]);
|
|
return $response;
|
|
}
|
|
}
|
|
|