mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
856fca8289
- Configurable via 'ALLOWED_IFRAME_SOURCES' .env option. - Also updated how CSP rules are set, with a single header being used instead of many. - Also applied CSP rules to HTML export outputs. - Updated tests to cover. For #3314
41 lines
899 B
PHP
41 lines
899 B
PHP
<?php
|
|
|
|
namespace BookStack\Http\Middleware;
|
|
|
|
use BookStack\Util\CspService;
|
|
use Closure;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ApplyCspRules
|
|
{
|
|
protected CspService $cspService;
|
|
|
|
public function __construct(CspService $cspService)
|
|
{
|
|
$this->cspService = $cspService;
|
|
}
|
|
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param Request $request
|
|
* @param Closure $next
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
view()->share('cspNonce', $this->cspService->getNonce());
|
|
if ($this->cspService->allowedIFrameHostsConfigured()) {
|
|
config()->set('session.same_site', 'none');
|
|
}
|
|
|
|
$response = $next($request);
|
|
|
|
$cspHeader = $this->cspService->getCspHeader();
|
|
$response->headers->set('Content-Security-Policy', $cspHeader, false);
|
|
|
|
return $response;
|
|
}
|
|
}
|