123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- // +----------------------------------------------------------------------
- // | Niucloud-admin 企业快速开发的saas管理平台
- // +----------------------------------------------------------------------
- // | 官方网址:https://www.niucloud.com
- // +----------------------------------------------------------------------
- // | niucloud团队 版权所有 开源版本可自由商用
- // +----------------------------------------------------------------------
- // | Author: Niucloud Team
- // +----------------------------------------------------------------------
- namespace app\api\middleware;
- use app\Request;
- use Closure;
- /**
- * http跨域请求中间件
- * Class AllowCrossDomain
- * @package app\api\middleware
- */
- class AllowCrossDomain
- {
- public function handle(Request $request, Closure $next)
- {
- $allow_header = [
- system_name('api_token_name'),
- system_name('channel_name'),
- 'lang',
- '*'
- ];
- header("Access-Control-Allow-Headers: Authorization, Sec-Fetch-Mode, DNT, X-Mx-ReqToken, Keep-Alive, User-Agent, If-Match, If-None-Match, If-Unmodified-Since, X-Requested-With, If-Modified-Since, Cache-Control, Content-Type, Accept-Language, Origin, Accept-Encoding,Access-Token,version,".implode(',', $allow_header));
- header('Access-Control-Allow-Methods: GET, POST, PUT, DELETE');
- header('Access-Control-Max-Age: 1728000');
- header('Access-Control-Allow-Credentials:true');
- header('Access-Control-Allow-Origin: *');
- return $next($request);
- }
- }
|