aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/front
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-09-12 21:41:58 +0200
committerGitHub <noreply@github.com>2020-09-12 21:41:58 +0200
commit0d930454a2892715e691f9c7713e26a3bb4ee96c (patch)
tree770197f23a6ec512f54bd22578ec971f53408dc3 /application/front
parent4af591ff3c5db4dea5b6c437527f6f9b12917570 (diff)
parentd52ab0b1e99aa0c494f389092dce1e926296032d (diff)
downloadShaarli-0d930454a2892715e691f9c7713e26a3bb4ee96c.tar.gz
Shaarli-0d930454a2892715e691f9c7713e26a3bb4ee96c.tar.zst
Shaarli-0d930454a2892715e691f9c7713e26a3bb4ee96c.zip
Merge pull request #1553 from ArthurHoaro/fix/404-page
Properly handle 404 errors
Diffstat (limited to 'application/front')
-rw-r--r--application/front/controller/visitor/ErrorNotFoundController.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/application/front/controller/visitor/ErrorNotFoundController.php b/application/front/controller/visitor/ErrorNotFoundController.php
new file mode 100644
index 00000000..758dd83b
--- /dev/null
+++ b/application/front/controller/visitor/ErrorNotFoundController.php
@@ -0,0 +1,29 @@
1<?php
2
3declare(strict_types=1);
4
5namespace Shaarli\Front\Controller\Visitor;
6
7use Slim\Http\Request;
8use Slim\Http\Response;
9
10/**
11 * Controller used to render the 404 error page.
12 */
13class ErrorNotFoundController extends ShaarliVisitorController
14{
15 public function __invoke(Request $request, Response $response): Response
16 {
17 // Request from the API
18 if (false !== strpos($request->getRequestTarget(), '/api/v1')) {
19 return $response->withStatus(404);
20 }
21
22 // This is required because the middleware is ignored if the route is not found.
23 $this->container->basePath = rtrim($request->getUri()->getBasePath(), '/');
24
25 $this->assignView('error_message', t('Requested page could not be found.'));
26
27 return $response->withStatus(404)->write($this->render('404'));
28 }
29}