index.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author Jörn Friedrich Dreyer <jfd@butonic.de>
  8. * @author Lukas Reschke <lukas@statuscode.ch>
  9. * @author Morris Jobke <hey@morrisjobke.de>
  10. * @author Robin Appelman <robin@icewind.nl>
  11. * @author Roeland Jago Douma <roeland@famdouma.nl>
  12. * @author Sergio Bertolín <sbertolin@solidgear.es>
  13. * @author Thomas Müller <thomas.mueller@tmit.eu>
  14. * @author Vincent Petry <vincent@nextcloud.com>
  15. *
  16. * @license AGPL-3.0
  17. *
  18. * This code is free software: you can redistribute it and/or modify
  19. * it under the terms of the GNU Affero General Public License, version 3,
  20. * as published by the Free Software Foundation.
  21. *
  22. * This program is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU Affero General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU Affero General Public License, version 3,
  28. * along with this program. If not, see <http://www.gnu.org/licenses/>
  29. *
  30. */
  31. require_once __DIR__ . '/lib/versioncheck.php';
  32. use Psr\Log\LoggerInterface;
  33. try {
  34. require_once __DIR__ . '/lib/base.php';
  35. OC::handleRequest();
  36. } catch (\OC\ServiceUnavailableException $ex) {
  37. \OC::$server->get(LoggerInterface::class)->error($ex->getMessage(), [
  38. 'app' => 'index',
  39. 'exception' => $ex,
  40. ]);
  41. //show the user a detailed error page
  42. OC_Template::printExceptionErrorPage($ex, 503);
  43. } catch (\OCP\HintException $ex) {
  44. try {
  45. OC_Template::printErrorPage($ex->getMessage(), $ex->getHint(), 503);
  46. } catch (Exception $ex2) {
  47. try {
  48. \OC::$server->get(LoggerInterface::class)->error($ex->getMessage(), [
  49. 'app' => 'index',
  50. 'exception' => $ex,
  51. ]);
  52. \OC::$server->get(LoggerInterface::class)->error($ex2->getMessage(), [
  53. 'app' => 'index',
  54. 'exception' => $ex2,
  55. ]);
  56. } catch (Throwable $e) {
  57. // no way to log it properly - but to avoid a white page of death we try harder and ignore this one here
  58. }
  59. //show the user a detailed error page
  60. OC_Template::printExceptionErrorPage($ex, 500);
  61. }
  62. } catch (\OC\User\LoginException $ex) {
  63. $request = \OC::$server->getRequest();
  64. /**
  65. * Routes with the @CORS annotation and other API endpoints should
  66. * not return a webpage, so we only print the error page when html is accepted,
  67. * otherwise we reply with a JSON array like the SecurityMiddleware would do.
  68. */
  69. if (stripos($request->getHeader('Accept'), 'html') === false) {
  70. http_response_code(401);
  71. header('Content-Type: application/json; charset=utf-8');
  72. echo json_encode(['message' => $ex->getMessage()]);
  73. exit();
  74. }
  75. OC_Template::printErrorPage($ex->getMessage(), $ex->getMessage(), 401);
  76. } catch (Exception $ex) {
  77. \OC::$server->get(LoggerInterface::class)->error($ex->getMessage(), [
  78. 'app' => 'index',
  79. 'exception' => $ex,
  80. ]);
  81. //show the user a detailed error page
  82. OC_Template::printExceptionErrorPage($ex, 500);
  83. } catch (Error $ex) {
  84. try {
  85. \OC::$server->get(LoggerInterface::class)->error($ex->getMessage(), [
  86. 'app' => 'index',
  87. 'exception' => $ex,
  88. ]);
  89. } catch (Error $e) {
  90. http_response_code(500);
  91. header('Content-Type: text/plain; charset=utf-8');
  92. print("Internal Server Error\n\n");
  93. print("The server encountered an internal error and was unable to complete your request.\n");
  94. print("Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.\n");
  95. print("More details can be found in the webserver log.\n");
  96. throw $ex;
  97. }
  98. OC_Template::printExceptionErrorPage($ex, 500);
  99. }