silverstripe-environmentcheck/src/Checks/SessionCheck.php

72 lines
1.7 KiB
PHP
Raw Normal View History

2019-02-14 23:56:32 +01:00
<?php
namespace SilverStripe\EnvironmentCheck\Checks;
use Psr\Http\Message\ResponseInterface;
use SilverStripe\EnvironmentCheck\Traits\Fetcher;
use SilverStripe\EnvironmentCheck\EnvironmentCheck;
/**
* Check that a given URL does not generate a session.
*
* @author Adrian Humphreys
* @package environmentcheck
*/
class SessionCheck implements EnvironmentCheck
{
use Fetcher;
/**
* Set up check with URL
*
* @param string $url The route, excluding the domain
* @inheritdoc
*/
public function __construct($url = '')
{
$this->setURL($url);
2019-02-14 23:56:32 +01:00
}
/**
* Check that the response for URL does not create a session
*
* @return array
*/
public function check()
2019-02-14 23:56:32 +01:00
{
$response = $this->client->get($this->getURL());
2019-02-14 23:56:32 +01:00
$cookie = $this->getCookie($response);
$fullURL = $this->getURL();
2019-02-14 23:56:32 +01:00
if ($cookie) {
return [
EnvironmentCheck::ERROR,
"Sessions are being set for {$fullURL} : Set-Cookie => " . $cookie,
];
}
return [
EnvironmentCheck::OK,
"Sessions are not being created for {$fullURL} 👍",
];
}
/**
* Get PHPSESSID or SECSESSID cookie set from the response if it exists.
*
* @param ResponseInterface $response
* @return string|null Cookie contents or null if it doesn't exist
*/
public function getCookie(ResponseInterface $response)
2019-02-14 23:56:32 +01:00
{
$result = null;
$cookies = $response->getHeader('Set-Cookie');
foreach ($cookies as $cookie) {
2022-04-13 00:29:17 +02:00
if (strpos($cookie ?? '', 'SESSID') !== false) {
2019-02-14 23:56:32 +01:00
$result = $cookie;
}
}
return $result;
}
}