Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
55
pro_v3.5.1/app/http/middleware/AllowOriginMiddleware.php
Normal file
55
pro_v3.5.1/app/http/middleware/AllowOriginMiddleware.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016~2026 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user