Completed
Push — master ( 68685b...801d67 )
by Phil
01:27 queued 11s
created

Dispatcher::setFoundMiddleware()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 19

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 9
CRAP Score 3

Importance

Changes 0
Metric Value
dl 0
loc 19
ccs 9
cts 9
cp 1
rs 9.6333
c 0
b 0
f 0
cc 3
nc 4
nop 1
crap 3
1
<?php declare(strict_types=1);
2
3
namespace League\Route;
4
5
use FastRoute\Dispatcher as FastRoute;
6
use FastRoute\Dispatcher\GroupCountBased as GroupCountBasedDispatcher;
7
use League\Route\Http\Exception\{MethodNotAllowedException, NotFoundException};
8
use League\Route\Middleware\{MiddlewareAwareInterface, MiddlewareAwareTrait};
9
use League\Route\Strategy\{StrategyAwareInterface, StrategyAwareTrait};
10
use Psr\Http\Message\{ResponseInterface, ServerRequestInterface};
11
use Psr\Http\Server\RequestHandlerInterface;
12
13
class Dispatcher extends GroupCountBasedDispatcher implements
14
    MiddlewareAwareInterface,
15
    RequestHandlerInterface,
16
    StrategyAwareInterface
17
{
18
    use MiddlewareAwareTrait;
19
    use StrategyAwareTrait;
20
21
    /**
22
     * Dispatch the current route
23
     *
24
     * @param \Psr\Http\Message\ServerRequestInterface $request
25
     *
26
     * @return \Psr\Http\Message\ResponseInterface
27
     */
28 32
    public function dispatchRequest(ServerRequestInterface $request) : ResponseInterface
29
    {
30 32
        $httpMethod = $request->getMethod();
31 32
        $uri = $request->getUri()->getPath();
32 32
        $match = $this->dispatch($httpMethod, $uri);
33
34 32
        switch ($match[0]) {
35 32
            case FastRoute::NOT_FOUND:
36 12
                $this->setNotFoundDecoratorMiddleware();
37 12
                break;
38 20
            case FastRoute::METHOD_NOT_ALLOWED:
39 4
                $allowed = (array) $match[1];
40 4
                $this->setMethodNotAllowedDecoratorMiddleware($allowed);
41 4
                break;
42 16
            case FastRoute::FOUND:
43 16
                $route = $this->ensureHandlerIsRoute($match[1], $httpMethod, $uri)->setVars($match[2]);
44 16
                $this->setFoundMiddleware($route);
45 16
                break;
46
        }
47
48 32
        return $this->handle($request);
49
    }
50
51
    /**
52
     * Ensure handler is a Route, honoring the contract of dispatchRequest.
53
     *
54
     * @param Route|mixed $matchingHandler
55
     * @param string $httpMethod
56
     * @param string $uri
57
     *
58
     * @return Route
59
     *
60
     */
61 16
    private function ensureHandlerIsRoute($matchingHandler, $httpMethod, $uri) : Route
62
    {
63 16
        if (is_a($matchingHandler, Route::class)) {
64 14
            return $matchingHandler;
65
        }
66 2
        return new Route($httpMethod, $uri, $matchingHandler);
67
    }
68
69
    /**
70
     * {@inheritdoc}
71
     */
72 32
    public function handle(ServerRequestInterface $request) : ResponseInterface
73
    {
74 32
        $middleware = $this->shiftMiddleware();
75
76 32
        return $middleware->process($request, $this);
77
    }
78
79
    /**
80
     * Set up middleware for a found route
81
     *
82
     * @param \League\Route\Route $route
83
     *
84
     * @return void
85
     */
86 16
    protected function setFoundMiddleware(Route $route) : void
87
    {
88 16
        if (is_null($route->getStrategy())) {
89 2
            $route->setStrategy($this->getStrategy());
90
        }
91
92
        // wrap entire dispatch process in exception handler
93 16
        $this->prependMiddleware($route->getStrategy()->getExceptionHandler());
94
95
        // add group and route specific middleware
96 16
        if ($group = $route->getParentGroup()) {
97 4
            $this->middlewares($group->getMiddlewareStack());
98
        }
99
100 16
        $this->middlewares($route->getMiddlewareStack());
101
102
        // add actual route to end of stack
103 16
        $this->middleware($route);
104 16
    }
105
106
    /**
107
     * Set up middleware for a not found route
108
     *
109
     * @return void
110
     */
111 12
    protected function setNotFoundDecoratorMiddleware() : void
112
    {
113 12
        $middleware = $this->getStrategy()->getNotFoundDecorator(new NotFoundException);
114 12
        $this->prependMiddleware($middleware);
115 12
    }
116
117
    /**
118
     * Set up middleware for a not allowed route
119
     *
120
     * @param array $allowed
121
     *
122
     * @return void
123
     */
124 4
    protected function setMethodNotAllowedDecoratorMiddleware(array $allowed) : void
125
    {
126 4
        $middleware = $this->getStrategy()->getMethodNotAllowedDecorator(
127 4
            new MethodNotAllowedException($allowed)
128
        );
129
130 4
        $this->prependMiddleware($middleware);
131 4
    }
132
}
133