-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMiddlewareQueue.php
337 lines (304 loc) · 9.43 KB
/
MiddlewareQueue.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
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 3.3.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Http;
use Cake\Core\App;
use Cake\Core\ContainerInterface;
use Cake\Http\Middleware\ClosureDecoratorMiddleware;
use Cake\Http\Middleware\DoublePassDecoratorMiddleware;
use Closure;
use Countable;
use LogicException;
use OutOfBoundsException;
use Psr\Http\Server\MiddlewareInterface;
use ReflectionFunction;
use RuntimeException;
use SeekableIterator;
/**
* Provides methods for creating and manipulating a "queue" of middlewares.
* This queue is used to process a request and generate response via \Cake\Http\Runner.
*
* @template-implements \SeekableIterator<int, \Psr\Http\Server\MiddlewareInterface>
*/
class MiddlewareQueue implements Countable, SeekableIterator
{
/**
* Internal position for iterator.
*
* @var int
*/
protected $position = 0;
/**
* The queue of middlewares.
*
* @var array<int, mixed>
*/
protected $queue = [];
/**
* @var \Cake\Core\ContainerInterface|null
*/
protected $container;
/**
* Constructor
*
* @param array $middleware The list of middleware to append.
* @param \Cake\Core\ContainerInterface $container Container instance.
*/
public function __construct(array $middleware = [], ?ContainerInterface $container = null)
{
$this->container = $container;
$this->queue = $middleware;
}
/**
* Resolve middleware name to a PSR 15 compliant middleware instance.
*
* @param \Psr\Http\Server\MiddlewareInterface|\Closure|string $middleware The middleware to resolve.
* @return \Psr\Http\Server\MiddlewareInterface
* @throws \RuntimeException If Middleware not found.
*/
protected function resolve($middleware): MiddlewareInterface
{
if (is_string($middleware)) {
if ($this->container && $this->container->has($middleware)) {
$middleware = $this->container->get($middleware);
} else {
$className = App::className($middleware, 'Middleware', 'Middleware');
if ($className === null) {
throw new RuntimeException(
sprintf(
'Middleware "%s" was not found.',
$middleware
)
);
}
$middleware = new $className();
}
}
if ($middleware instanceof MiddlewareInterface) {
return $middleware;
}
if (!$middleware instanceof Closure) {
return new DoublePassDecoratorMiddleware($middleware);
}
$info = new ReflectionFunction($middleware);
if ($info->getNumberOfParameters() > 2) {
return new DoublePassDecoratorMiddleware($middleware);
}
return new ClosureDecoratorMiddleware($middleware);
}
/**
* Append a middleware to the end of the queue.
*
* @param \Psr\Http\Server\MiddlewareInterface|\Closure|array|string $middleware The middleware(s) to append.
* @return $this
*/
public function add($middleware)
{
if (is_array($middleware)) {
$this->queue = array_merge($this->queue, $middleware);
return $this;
}
$this->queue[] = $middleware;
return $this;
}
/**
* Alias for MiddlewareQueue::add().
*
* @param \Psr\Http\Server\MiddlewareInterface|\Closure|array|string $middleware The middleware(s) to append.
* @return $this
* @see MiddlewareQueue::add()
*/
public function push($middleware)
{
return $this->add($middleware);
}
/**
* Prepend a middleware to the start of the queue.
*
* @param \Psr\Http\Server\MiddlewareInterface|\Closure|array|string $middleware The middleware(s) to prepend.
* @return $this
*/
public function prepend($middleware)
{
if (is_array($middleware)) {
$this->queue = array_merge($middleware, $this->queue);
return $this;
}
array_unshift($this->queue, $middleware);
return $this;
}
/**
* Insert a middleware at a specific index.
*
* If the index already exists, the new middleware will be inserted,
* and the existing element will be shifted one index greater.
*
* @param int $index The index to insert at.
* @param \Psr\Http\Server\MiddlewareInterface|\Closure|string $middleware The middleware to insert.
* @return $this
*/
public function insertAt(int $index, $middleware)
{
array_splice($this->queue, $index, 0, [$middleware]);
return $this;
}
/**
* Insert a middleware before the first matching class.
*
* Finds the index of the first middleware that matches the provided class,
* and inserts the supplied middleware before it.
*
* @param string $class The classname to insert the middleware before.
* @param \Psr\Http\Server\MiddlewareInterface|\Closure|string $middleware The middleware to insert.
* @return $this
* @throws \LogicException If middleware to insert before is not found.
*/
public function insertBefore(string $class, $middleware)
{
$found = false;
$i = 0;
foreach ($this->queue as $i => $object) {
/** @psalm-suppress ArgumentTypeCoercion */
if (
(
is_string($object)
&& $object === $class
)
|| is_a($object, $class)
) {
$found = true;
break;
}
}
if ($found) {
return $this->insertAt($i, $middleware);
}
throw new LogicException(sprintf("No middleware matching '%s' could be found.", $class));
}
/**
* Insert a middleware object after the first matching class.
*
* Finds the index of the first middleware that matches the provided class,
* and inserts the supplied middleware after it. If the class is not found,
* this method will behave like add().
*
* @param string $class The classname to insert the middleware before.
* @param \Psr\Http\Server\MiddlewareInterface|\Closure|string $middleware The middleware to insert.
* @return $this
*/
public function insertAfter(string $class, $middleware)
{
$found = false;
$i = 0;
foreach ($this->queue as $i => $object) {
/** @psalm-suppress ArgumentTypeCoercion */
if (
(
is_string($object)
&& $object === $class
)
|| is_a($object, $class)
) {
$found = true;
break;
}
}
if ($found) {
return $this->insertAt($i + 1, $middleware);
}
return $this->add($middleware);
}
/**
* Get the number of connected middleware layers.
*
* Implement the Countable interface.
*
* @return int
*/
public function count(): int
{
return count($this->queue);
}
/**
* Seeks to a given position in the queue.
*
* @param int $position The position to seek to.
* @return void
* @see \SeekableIterator::seek()
*/
public function seek($position): void
{
if (!isset($this->queue[$position])) {
throw new OutOfBoundsException("Invalid seek position ($position)");
}
$this->position = $position;
}
/**
* Rewinds back to the first element of the queue.
*
* @return void
* @see \Iterator::rewind()
*/
public function rewind(): void
{
$this->position = 0;
}
/**
* Returns the current middleware.
*
* @return \Psr\Http\Server\MiddlewareInterface
* @see \Iterator::current()
*/
public function current(): MiddlewareInterface
{
if (!isset($this->queue[$this->position])) {
throw new OutOfBoundsException("Invalid current position ($this->position)");
}
if ($this->queue[$this->position] instanceof MiddlewareInterface) {
return $this->queue[$this->position];
}
return $this->queue[$this->position] = $this->resolve($this->queue[$this->position]);
}
/**
* Return the key of the middleware.
*
* @return int
* @see \Iterator::key()
*/
public function key(): int
{
return $this->position;
}
/**
* Moves the current position to the next middleware.
*
* @return void
* @see \Iterator::next()
*/
public function next(): void
{
++$this->position;
}
/**
* Checks if current position is valid.
*
* @return bool
* @see \Iterator::valid()
*/
public function valid(): bool
{
return isset($this->queue[$this->position]);
}
}