2010-03-10 15:03:40 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 22:15:27 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Sergio Bertolín <sbertolin@solidgear.es>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2017-10-13 22:30:29 +03:00
|
|
|
require_once __DIR__ . '/lib/versioncheck.php';
|
2015-02-05 13:41:00 +03:00
|
|
|
|
2013-06-10 15:45:19 +04:00
|
|
|
try {
|
2016-10-06 13:13:02 +03:00
|
|
|
|
|
|
|
require_once __DIR__ . '/lib/base.php';
|
2011-04-16 17:47:27 +04:00
|
|
|
|
2013-06-10 15:45:19 +04:00
|
|
|
OC::handleRequest();
|
|
|
|
|
2014-07-24 19:18:10 +04:00
|
|
|
} catch(\OC\ServiceUnavailableException $ex) {
|
2020-03-26 11:30:18 +03:00
|
|
|
\OC::$server->getLogger()->logException($ex, ['app' => 'index']);
|
2014-07-24 19:18:10 +04:00
|
|
|
|
|
|
|
//show the user a detailed error page
|
2018-06-26 13:15:09 +03:00
|
|
|
OC_Template::printExceptionErrorPage($ex, 503);
|
2014-09-11 16:14:02 +04:00
|
|
|
} catch (\OC\HintException $ex) {
|
2017-09-26 12:21:39 +03:00
|
|
|
try {
|
2018-06-26 13:15:09 +03:00
|
|
|
OC_Template::printErrorPage($ex->getMessage(), $ex->getHint(), 503);
|
2017-09-26 12:21:39 +03:00
|
|
|
} catch (Exception $ex2) {
|
2018-06-29 12:22:05 +03:00
|
|
|
try {
|
2020-03-26 11:30:18 +03:00
|
|
|
\OC::$server->getLogger()->logException($ex, ['app' => 'index']);
|
|
|
|
\OC::$server->getLogger()->logException($ex2, ['app' => 'index']);
|
2018-06-29 12:22:05 +03:00
|
|
|
} catch (Throwable $e) {
|
|
|
|
// no way to log it properly - but to avoid a white page of death we try harder and ignore this one here
|
|
|
|
}
|
2017-09-26 12:21:39 +03:00
|
|
|
|
|
|
|
//show the user a detailed error page
|
2018-06-26 11:32:50 +03:00
|
|
|
OC_Template::printExceptionErrorPage($ex, 500);
|
2017-09-26 12:21:39 +03:00
|
|
|
}
|
2016-10-04 15:51:54 +03:00
|
|
|
} catch (\OC\User\LoginException $ex) {
|
2018-06-26 13:15:09 +03:00
|
|
|
OC_Template::printErrorPage($ex->getMessage(), $ex->getMessage(), 403);
|
2013-06-10 15:45:19 +04:00
|
|
|
} catch (Exception $ex) {
|
2020-03-26 11:30:18 +03:00
|
|
|
\OC::$server->getLogger()->logException($ex, ['app' => 'index']);
|
2013-10-22 21:16:34 +04:00
|
|
|
|
2013-06-10 15:45:19 +04:00
|
|
|
//show the user a detailed error page
|
2018-06-26 11:32:50 +03:00
|
|
|
OC_Template::printExceptionErrorPage($ex, 500);
|
2016-04-20 19:01:47 +03:00
|
|
|
} catch (Error $ex) {
|
2017-11-06 11:36:19 +03:00
|
|
|
try {
|
2020-03-26 11:30:18 +03:00
|
|
|
\OC::$server->getLogger()->logException($ex, ['app' => 'index']);
|
2017-11-06 11:36:19 +03:00
|
|
|
} catch (Error $e) {
|
2018-06-26 11:32:50 +03:00
|
|
|
http_response_code(500);
|
2017-11-06 11:36:19 +03:00
|
|
|
header('Content-Type: text/plain; charset=utf-8');
|
|
|
|
print("Internal Server Error\n\n");
|
|
|
|
print("The server encountered an internal error and was unable to complete your request.\n");
|
|
|
|
print("Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.\n");
|
|
|
|
print("More details can be found in the webserver log.\n");
|
|
|
|
|
2018-11-02 00:27:54 +03:00
|
|
|
throw $ex;
|
2017-11-06 11:36:19 +03:00
|
|
|
}
|
2018-06-26 13:15:09 +03:00
|
|
|
OC_Template::printExceptionErrorPage($ex, 500);
|
2013-06-25 18:45:42 +04:00
|
|
|
}
|