From cd91718107f1760396befa75abcfadb348276946 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Fri, 14 Oct 2022 07:42:25 +0200 Subject: [PATCH] Use proper error pages instead of always redirecting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- core/Controller/ErrorController.php | 44 +++++++++++++++++++++++++++++ core/routes.php | 2 ++ core/templates/404.php | 4 +-- lib/base.php | 32 +++++++++++++++------ 4 files changed, 71 insertions(+), 11 deletions(-) create mode 100644 core/Controller/ErrorController.php diff --git a/core/Controller/ErrorController.php b/core/Controller/ErrorController.php new file mode 100644 index 0000000000000..b0e1d9dad867c --- /dev/null +++ b/core/Controller/ErrorController.php @@ -0,0 +1,44 @@ + + * + * @author Julius Härtl + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + +namespace OC\Core\Controller; + +use OCP\AppFramework\Http\TemplateResponse; + +class ErrorController extends \OCP\AppFramework\Controller { + /** + * @PublicPage + * @NoCSRFRequired + */ + public function error404(): TemplateResponse { + return new TemplateResponse( + 'core', + '404', + [], + 'error' + ); + } +} diff --git a/core/routes.php b/core/routes.php index 820db44bf90a4..6ead401d96458 100644 --- a/core/routes.php +++ b/core/routes.php @@ -95,6 +95,8 @@ ['name' => 'WebAuthn#startAuthentication', 'url' => 'login/webauthn/start', 'verb' => 'POST'], ['name' => 'WebAuthn#finishAuthentication', 'url' => 'login/webauthn/finish', 'verb' => 'POST'], + ['name' => 'Error#error404', 'url' => 'error/404'], + // Well known requests https://tools.ietf.org/html/rfc5785 ['name' => 'WellKnown#handle', 'url' => '.well-known/{service}'], ], diff --git a/core/templates/404.php b/core/templates/404.php index 64595c9a092a3..fcfc7cc1ef8bb 100644 --- a/core/templates/404.php +++ b/core/templates/404.php @@ -17,8 +17,8 @@