56 lines
1.8 KiB
PHP
56 lines
1.8 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\http\middleware;
|
||
|
||
|
||
use app\Request;
|
||
use crmeb\interfaces\MiddlewareInterface;
|
||
use think\facade\Config;
|
||
use think\Response;
|
||
|
||
/**
|
||
* 跨域中间件
|
||
* Class AllowOriginMiddleware
|
||
* @package app\http\middleware
|
||
*/
|
||
class AllowOriginMiddleware implements MiddlewareInterface
|
||
{
|
||
|
||
/**
|
||
* 允许跨域的域名
|
||
* @var string
|
||
*/
|
||
protected $cookieDomain;
|
||
|
||
/**
|
||
* @param Request $request
|
||
* @param \Closure $next
|
||
* @return Response
|
||
*/
|
||
public function handle(Request $request, \Closure $next)
|
||
{
|
||
$this->cookieDomain = Config::get('cookie.domain', '');
|
||
$header = Config::get('cookie.header');
|
||
$origin = $request->header('origin');
|
||
|
||
if ($origin && ('' == $this->cookieDomain || strpos($origin, $this->cookieDomain)))
|
||
$header['Access-Control-Allow-Origin'] = $origin;
|
||
if ($request->method(true) == 'OPTIONS') {
|
||
$response = Response::create('ok')->code(200)->header($header);
|
||
} else {
|
||
$response = $next($request)->header($header);
|
||
}
|
||
// $request->filter(['strip_tags', 'addslashes', 'trim']);
|
||
return $response;
|
||
}
|
||
}
|