milfs/rest/vendor/tuupola/slim-jwt-auth/src/JwtAuthentication/RequestPathRule.php

72 lines
1.8 KiB
PHP

<?php
/*
* This file is part of PSR-7 JSON Web Token Authentication middleware
*
* Copyright (c) 2015-2018 Mika Tuupola
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Project home:
* https://github.com/tuupola/slim-jwt-auth
*
*/
namespace Slim\Middleware\JwtAuthentication;
use Psr\Http\Message\RequestInterface;
/**
* Rule to decide by request path whether the request should be authenticated or not.
*/
class RequestPathRule implements RuleInterface
{
/**
* Stores all the options passed to the rule
*/
protected $options = [
"path" => ["/"],
"passthrough" => []
];
/**
* Create a new rule instance
*
* @param string[] $options
* @return void
*/
public function __construct($options = [])
{
$this->options = array_merge($this->options, $options);
}
/**
* @param \Psr\Http\Message\RequestInterface $request
* @return boolean
*/
public function __invoke(RequestInterface $request)
{
$uri = "/" . $request->getUri()->getPath();
$uri = preg_replace("#/+#", "/", $uri);
/* If request path is matches passthrough should not authenticate. */
foreach ((array)$this->options["passthrough"] as $passthrough) {
$passthrough = rtrim($passthrough, "/");
if (!!preg_match("@^{$passthrough}(/.*)?$@", $uri)) {
return false;
}
}
/* Otherwise check if path matches and we should authenticate. */
foreach ((array)$this->options["path"] as $path) {
$path = rtrim($path, "/");
if (!!preg_match("@^{$path}(/.*)?$@", $uri)) {
return true;
}
}
return false;
}
}