mirror of
https://github.com/flucont/btcloud.git
synced 2025-01-23 13:18:13 -05:00
25 lines
432 B
PHP
25 lines
432 B
PHP
|
<?php
|
||
|
declare (strict_types=1);
|
||
|
|
||
|
namespace app\middleware;
|
||
|
|
||
|
use think\facade\View;
|
||
|
|
||
|
class RefererCheck
|
||
|
{
|
||
|
/**
|
||
|
* 处理请求
|
||
|
*
|
||
|
* @param \think\Request $request
|
||
|
* @param \Closure $next
|
||
|
* @return Response
|
||
|
*/
|
||
|
public function handle($request, \Closure $next)
|
||
|
{
|
||
|
if(!checkRefererHost()){
|
||
|
return response('Access Denied', 403);
|
||
|
}
|
||
|
return $next($request);
|
||
|
}
|
||
|
}
|