matthew revised this gist . Go to revision
No changes
Matthew Weier O'Phinney revised this gist . Go to revision
2 files changed, 29 insertions
RemoveDevPrefixMiddleware.php(file created)
| @@ -0,0 +1,25 @@ | |||
| 1 | + | <?php | |
| 2 | + | ||
| 3 | + | use Interop\Http\ServerMiddleware\DelegateInterface; | |
| 4 | + | use Interop\Http\ServerMiddleware\MiddlewareInterface; | |
| 5 | + | use Psr\Http\Message\ServerRequestInterface; | |
| 6 | + | ||
| 7 | + | class RemoveDevPrefixMiddleware implements MiddlewareInterface | |
| 8 | + | { | |
| 9 | + | private $prefix; | |
| 10 | + | ||
| 11 | + | public function __construct(string $prefix = '/extra_directory') | |
| 12 | + | { | |
| 13 | + | $this->prefix = $prefix; | |
| 14 | + | } | |
| 15 | + | ||
| 16 | + | public function process(ServerRequestInterface $request, DelegateInterface $delegate) | |
| 17 | + | { | |
| 18 | + | $uri = $request->getUri(); | |
| 19 | + | $path = $uri->getPath(); | |
| 20 | + | $path = preg_replace('#^' . $this->prefix . '#', '', $path); | |
| 21 | + | ||
| 22 | + | $uri = $uri->withPath($path); | |
| 23 | + | return $delegate->process($request->withUri($uri)); | |
| 24 | + | } | |
| 25 | + | } | |
pipeline.php(file created)
| @@ -0,0 +1,4 @@ | |||
| 1 | + | <?php | |
| 2 | + | ||
| 3 | + | // Do this before piping the routing middleware | |
| 4 | + | $app->pipe('/extra_path', new RemoveDevPrefixMiddleware('/extra_path')); | |