mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-22 04:30:32 +09:00
59 lines
1.4 KiB
PHP
59 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
|
|
use Symfony\Component\HttpFoundation\Cookie;
|
|
|
|
class VerifyCsrfToken extends Middleware
|
|
{
|
|
/**
|
|
* The URIs that should be excluded from CSRF verification.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $except = [
|
|
//
|
|
'order',
|
|
'appload',
|
|
'test_config',
|
|
//'get_stats'
|
|
];
|
|
|
|
/**
|
|
* Add the CSRF token to the response cookies.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Symfony\Component\HttpFoundation\Response $response
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
*/
|
|
protected function addCookieToResponse($request, $response)
|
|
{
|
|
$config = config('session');
|
|
|
|
if ($response instanceof Responsable) {
|
|
$response = $response->toResponse($request);
|
|
}
|
|
|
|
$response->headers->setCookie(
|
|
new Cookie(
|
|
'HEIMDALL-XSRF-TOKEN', $request->session()->token(), $this->availableAt(60 * $config['lifetime']),
|
|
$config['path'], $config['domain'], $config['secure'], false, false, $config['same_site'] ?? null
|
|
)
|
|
);
|
|
|
|
return $response;
|
|
}
|
|
|
|
/**
|
|
* Determine if the cookie contents should be serialized.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public static function serialized()
|
|
{
|
|
return EncryptCookies::serialized('HEIMDALL-XSRF-TOKEN');
|
|
}
|
|
|
|
}
|