mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-17 00:37:52 +00:00
a25be983b8
- Renamed Uri class to Url. - Renamed setUri and getUri to setUrl and getUrl. - Added custom Exceptions and ensured that router only throws HttpExceptions. - Added isAjax method to Request class. - Added better phpDocs. - Other minor optimisations.
129 lines
2.9 KiB
PHP
129 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace Pecee\Http\Security;
|
|
|
|
use Pecee\Http\Security\Exceptions\SecurityException;
|
|
|
|
class CookieTokenProvider implements ITokenProvider
|
|
{
|
|
const CSRF_KEY = 'CSRF-TOKEN';
|
|
|
|
protected $token;
|
|
protected $cookieTimeoutMinutes = 120;
|
|
|
|
/**
|
|
* CookieTokenProvider constructor.
|
|
* @throws SecurityException
|
|
*/
|
|
public function __construct()
|
|
{
|
|
$this->token = $this->getToken();
|
|
|
|
if ($this->token === null) {
|
|
$this->token = $this->generateToken();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Generate random identifier for CSRF token
|
|
*
|
|
* @return string
|
|
* @throws SecurityException
|
|
*/
|
|
public function generateToken()
|
|
{
|
|
if (function_exists('random_bytes') === true) {
|
|
try {
|
|
return bin2hex(random_bytes(32));
|
|
} catch(\Exception $e) {
|
|
throw new SecurityException($e->getMessage(), $e->getCode(), $e->getPrevious());
|
|
}
|
|
}
|
|
|
|
$isSourceStrong = false;
|
|
|
|
$random = openssl_random_pseudo_bytes(32, $isSourceStrong);
|
|
if ($isSourceStrong === false || $random === false) {
|
|
throw new SecurityException('IV generation failed');
|
|
}
|
|
|
|
return $random;
|
|
}
|
|
|
|
/**
|
|
* Validate valid CSRF token
|
|
*
|
|
* @param string $token
|
|
* @return bool
|
|
*/
|
|
public function validate($token)
|
|
{
|
|
if ($token !== null && $this->getToken() !== null) {
|
|
return hash_equals($token, $this->getToken());
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Set csrf token cookie
|
|
* Overwrite this method to save the token to another storage like session etc.
|
|
*
|
|
* @param string $token
|
|
*/
|
|
public function setToken($token)
|
|
{
|
|
$this->token = $token;
|
|
setcookie(static::CSRF_KEY, $token, time() + 60 * $this->cookieTimeoutMinutes, '/');
|
|
}
|
|
|
|
/**
|
|
* Get csrf token
|
|
* @param string|null $defaultValue
|
|
* @return string|null
|
|
*/
|
|
public function getToken($defaultValue = null)
|
|
{
|
|
$this->token = ($this->hasToken() === true) ? $_COOKIE[static::CSRF_KEY] : null;
|
|
|
|
return ($this->token !== null) ? $this->token : $defaultValue;
|
|
}
|
|
|
|
/**
|
|
* Refresh existing token
|
|
*/
|
|
public function refresh()
|
|
{
|
|
if ($this->token !== null) {
|
|
$this->setToken($this->token);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns whether the csrf token has been defined
|
|
* @return bool
|
|
*/
|
|
public function hasToken()
|
|
{
|
|
return isset($_COOKIE[static::CSRF_KEY]);
|
|
}
|
|
|
|
/**
|
|
* Get timeout for cookie in minutes
|
|
* @return int
|
|
*/
|
|
public function getCookieTimeoutMinutes()
|
|
{
|
|
return $this->cookieTimeoutMinutes;
|
|
}
|
|
|
|
/**
|
|
* Set cookie timeout in minutes
|
|
* @param $minutes
|
|
*/
|
|
public function setCookieTimeoutMinutes($minutes)
|
|
{
|
|
$this->cookieTimeoutMinutes = $minutes;
|
|
}
|
|
|
|
} |