-
-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathUriSigner.php
More file actions
206 lines (172 loc) · 7.02 KB
/
UriSigner.php
File metadata and controls
206 lines (172 loc) · 7.02 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<?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;
use Psr\Clock\ClockInterface;
use Symfony\Component\HttpFoundation\Exception\ExpiredSignedUriException;
use Symfony\Component\HttpFoundation\Exception\LogicException;
use Symfony\Component\HttpFoundation\Exception\SignedUriException;
use Symfony\Component\HttpFoundation\Exception\UnsignedUriException;
use Symfony\Component\HttpFoundation\Exception\UnverifiedSignedUriException;
/**
* @author Fabien Potencier <fabien@symfony.com>
*/
class UriSigner
{
private const STATUS_VALID = 1;
private const STATUS_INVALID = 2;
private const STATUS_MISSING = 3;
private const STATUS_EXPIRED = 4;
/**
* @param string $hashParameter Query string parameter to use
* @param string $expirationParameter Query string parameter to use for expiration
*/
public function __construct(
#[\SensitiveParameter] private string $secret,
private string $hashParameter = '_hash',
private string $expirationParameter = '_expiration',
private ?ClockInterface $clock = null,
) {
if (!$secret) {
throw new \InvalidArgumentException('A non-empty secret is required.');
}
}
/**
* Signs a URI.
*
* The given URI is signed by adding the query string parameter
* which value depends on the URI and the secret.
*
* @param \DateTimeInterface|\DateInterval|int|null $expiration The expiration for the given URI.
* If $expiration is a \DateTimeInterface, it's expected to be the exact date + time.
* If $expiration is a \DateInterval, the interval is added to "now" to get the date + time.
* If $expiration is an int, it's expected to be a timestamp in seconds of the exact date + time.
* If $expiration is null, no expiration.
*
* The expiration is added as a query string parameter.
*/
public function sign(string $uri, \DateTimeInterface|\DateInterval|int|null $expiration = null): string
{
$url = parse_url($uri);
$params = [];
if (isset($url['query'])) {
parse_str($url['query'], $params);
}
if (isset($params[$this->hashParameter])) {
throw new LogicException(\sprintf('URI query parameter conflict: parameter name "%s" is reserved.', $this->hashParameter));
}
if (isset($params[$this->expirationParameter])) {
throw new LogicException(\sprintf('URI query parameter conflict: parameter name "%s" is reserved.', $this->expirationParameter));
}
if (null !== $expiration) {
$params[$this->expirationParameter] = $this->getExpirationTime($expiration);
}
$uri = $this->buildUrl($url, $params);
$params[$this->hashParameter] = $this->computeHash($uri);
return $this->buildUrl($url, $params);
}
/**
* Checks that a URI contains the correct hash.
* Also checks if the URI has not expired (If you used expiration during signing).
*/
public function check(string $uri): bool
{
return self::STATUS_VALID === $this->doVerify($uri);
}
public function checkRequest(Request $request): bool
{
return self::STATUS_VALID === $this->doVerify(self::normalize($request));
}
/**
* Verify a Request or string URI.
*
* @throws UnsignedUriException If the URI is not signed
* @throws UnverifiedSignedUriException If the signature is invalid
* @throws ExpiredSignedUriException If the URI has expired
* @throws SignedUriException
*/
public function verify(Request|string $uri): void
{
$uri = self::normalize($uri);
$status = $this->doVerify($uri);
match ($status) {
self::STATUS_VALID => null,
self::STATUS_INVALID => throw new UnverifiedSignedUriException(),
self::STATUS_EXPIRED => throw new ExpiredSignedUriException(),
default => throw new UnsignedUriException(),
};
}
private function computeHash(string $uri): string
{
return strtr(rtrim(base64_encode(hash_hmac('sha256', $uri, $this->secret, true)), '='), ['/' => '_', '+' => '-']);
}
private function buildUrl(array $url, array $params = []): string
{
ksort($params, \SORT_STRING);
$url['query'] = http_build_query($params, '', '&');
$scheme = isset($url['scheme']) ? $url['scheme'].'://' : '';
$host = $url['host'] ?? '';
$port = isset($url['port']) ? ':'.$url['port'] : '';
$user = $url['user'] ?? '';
$pass = isset($url['pass']) ? ':'.$url['pass'] : '';
$pass = ($user || $pass) ? "$pass@" : '';
$path = $url['path'] ?? '';
$query = $url['query'] ? '?'.$url['query'] : '';
$fragment = isset($url['fragment']) ? '#'.$url['fragment'] : '';
return $scheme.$user.$pass.$host.$port.$path.$query.$fragment;
}
private function getExpirationTime(\DateTimeInterface|\DateInterval|int $expiration): string
{
if ($expiration instanceof \DateTimeInterface) {
return $expiration->format('U');
}
if ($expiration instanceof \DateInterval) {
return $this->now()->add($expiration)->format('U');
}
return (string) $expiration;
}
private function now(): \DateTimeImmutable
{
return $this->clock?->now() ?? \DateTimeImmutable::createFromFormat('U', time());
}
/**
* @return self::STATUS_*
*/
private function doVerify(string $uri): int
{
$url = parse_url($uri);
$params = [];
if (isset($url['query'])) {
parse_str($url['query'], $params);
}
if (empty($params[$this->hashParameter])) {
return self::STATUS_MISSING;
}
$hash = $params[$this->hashParameter];
unset($params[$this->hashParameter]);
if (!hash_equals($this->computeHash($this->buildUrl($url, $params)), strtr(rtrim($hash, '='), ['/' => '_', '+' => '-']))) {
return self::STATUS_INVALID;
}
if (!$expiration = $params[$this->expirationParameter] ?? false) {
return self::STATUS_VALID;
}
if ($this->now()->getTimestamp() < $expiration) {
return self::STATUS_VALID;
}
return self::STATUS_EXPIRED;
}
private static function normalize(Request|string $uri): string
{
if ($uri instanceof Request) {
$qs = ($qs = $uri->server->get('QUERY_STRING')) ? '?'.$qs : '';
$uri = $uri->getSchemeAndHttpHost().$uri->getBaseUrl().$uri->getPathInfo().$qs;
}
return $uri;
}
}