NotFoundResponse.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Julius Härtl <jus@bitgrid.net>
  6. * @author Lukas Reschke <lukas@statuscode.ch>
  7. * @author Morris Jobke <hey@morrisjobke.de>
  8. * @author Roeland Jago Douma <roeland@famdouma.nl>
  9. * @author Kate Döen <kate.doeen@nextcloud.com>
  10. *
  11. * @license AGPL-3.0
  12. *
  13. * This code is free software: you can redistribute it and/or modify
  14. * it under the terms of the GNU Affero General Public License, version 3,
  15. * as published by the Free Software Foundation.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU Affero General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Affero General Public License, version 3,
  23. * along with this program. If not, see <http://www.gnu.org/licenses/>
  24. *
  25. */
  26. namespace OCP\AppFramework\Http;
  27. use OCP\AppFramework\Http;
  28. /**
  29. * A generic 404 response showing an 404 error page as well to the end-user
  30. * @since 8.1.0
  31. * @template S of int
  32. * @template H of array<string, mixed>
  33. * @template-extends TemplateResponse<int, array<string, mixed>>
  34. */
  35. class NotFoundResponse extends TemplateResponse {
  36. /**
  37. * @param S $status
  38. * @param H $headers
  39. * @since 8.1.0
  40. */
  41. public function __construct(int $status = Http::STATUS_NOT_FOUND, array $headers = []) {
  42. parent::__construct('core', '404', [], 'guest', $status, $headers);
  43. $this->setContentSecurityPolicy(new ContentSecurityPolicy());
  44. }
  45. }