-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathQueryParameterRequestMatcher.php
46 lines (39 loc) · 1.35 KB
/
QueryParameterRequestMatcher.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\HttpFoundation\RequestMatcher;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestMatcherInterface;
/**
* Checks the presence of HTTP query parameters of a Request.
*
* @author Alexandre Daubois <alex.daubois@gmail.com>
*/
class QueryParameterRequestMatcher implements RequestMatcherInterface
{
/**
* @var string[]
*/
private array $parameters;
/**
* @param string[]|string $parameters A parameter or a list of parameters
* Strings can contain a comma-delimited list of query parameters
*/
public function __construct(array|string $parameters)
{
$this->parameters = array_reduce(array_map(strtolower(...), (array) $parameters), static fn (array $parameters, string $parameter) => array_merge($parameters, preg_split('/\s*,\s*/', $parameter)), []);
}
public function matches(Request $request): bool
{
if (!$this->parameters) {
return true;
}
return 0 === \count(array_diff_assoc($this->parameters, $request->query->keys()));
}
}