diff --git a/core/Controller/ErrorController.php b/core/Controller/ErrorController.php new file mode 100644 index 0000000000000..550b320a98940 --- /dev/null +++ b/core/Controller/ErrorController.php @@ -0,0 +1,62 @@ + + * + * @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; +use OCP\AppFramework\Http\TemplateResponse; + +class ErrorController extends \OCP\AppFramework\Controller { + /** + * @PublicPage + * @NoCSRFRequired + */ + public function error403(): TemplateResponse { + $response = new TemplateResponse( + 'core', + '403', + [], + 'error' + ); + $response->setStatus(Http::STATUS_FORBIDDEN); + return $response; + } + + /** + * @PublicPage + * @NoCSRFRequired + */ + public function error404(): TemplateResponse { + $response = new TemplateResponse( + 'core', + '404', + [], + 'error' + ); + $response->setStatus(Http::STATUS_NOT_FOUND); + return $response; + } +} diff --git a/core/routes.php b/core/routes.php index 02e27c9cfaf04..a3fdfafd7bf08 100644 --- a/core/routes.php +++ b/core/routes.php @@ -97,6 +97,9 @@ ['name' => 'WebAuthn#startAuthentication', 'url' => 'login/webauthn/start', 'verb' => 'POST'], ['name' => 'WebAuthn#finishAuthentication', 'url' => 'login/webauthn/finish', 'verb' => 'POST'], + ['name' => 'Error#error404', 'url' => 'error/404'], + ['name' => 'Error#error403', 'url' => 'error/403'], + // 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 @@