2012-05-07 13:39:17 +00:00
|
|
|
<?php
|
2015-03-26 10:44:34 +00:00
|
|
|
/**
|
2016-07-21 15:07:57 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 17:56:05 +00:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2016-05-26 17:56:05 +00:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2016-07-21 15:07:57 +00:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 16:13:36 +00:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-06-25 09:43:55 +00:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2016-07-21 15:07:57 +00:00
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2013-06-10 11:45:19 +00:00
|
|
|
try {
|
2012-07-13 20:44:35 +00:00
|
|
|
|
2016-10-06 10:13:02 +00:00
|
|
|
require_once __DIR__ . '/lib/base.php';
|
2014-06-30 12:48:03 +00:00
|
|
|
if (\OCP\Util::needUpgrade()) {
|
|
|
|
// since the behavior of apps or remotes are unpredictable during
|
|
|
|
// an upgrade, return a 503 directly
|
|
|
|
OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
|
|
|
|
OC_Template::printErrorPage('Service unavailable');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2016-07-07 10:14:45 +00:00
|
|
|
OC::checkMaintenanceMode();
|
2016-06-22 11:12:36 +00:00
|
|
|
OC::checkSingleUserMode(true);
|
2016-07-07 10:14:45 +00:00
|
|
|
$request = \OC::$server->getRequest();
|
2015-02-10 12:02:48 +00:00
|
|
|
$pathInfo = $request->getPathInfo();
|
2015-02-23 13:07:42 +00:00
|
|
|
|
|
|
|
if (!$pathInfo && $request->getParam('service', '') === '') {
|
2013-06-10 11:45:19 +00:00
|
|
|
header('HTTP/1.0 404 Not Found');
|
|
|
|
exit;
|
2015-02-23 13:07:42 +00:00
|
|
|
} elseif ($request->getParam('service', '')) {
|
|
|
|
$service = $request->getParam('service', '');
|
2014-03-06 15:01:13 +00:00
|
|
|
} else {
|
|
|
|
$pathInfo = trim($pathInfo, '/');
|
|
|
|
list($service) = explode('/', $pathInfo);
|
2013-06-10 11:45:19 +00:00
|
|
|
}
|
2016-04-20 16:01:47 +00:00
|
|
|
$file = OCP\Config::getAppValue('core', 'public_' . strip_tags($service));
|
2014-03-06 15:01:13 +00:00
|
|
|
if (is_null($file)) {
|
2013-06-10 11:45:19 +00:00
|
|
|
header('HTTP/1.0 404 Not Found');
|
|
|
|
exit;
|
|
|
|
}
|
2012-05-13 22:28:22 +00:00
|
|
|
|
2014-03-06 15:01:13 +00:00
|
|
|
$parts = explode('/', $file, 2);
|
|
|
|
$app = $parts[0];
|
2013-06-10 11:45:19 +00:00
|
|
|
|
2014-05-10 12:00:22 +00:00
|
|
|
// Load all required applications
|
|
|
|
\OC::$REQUESTEDAPP = $app;
|
2014-05-28 19:43:48 +00:00
|
|
|
OC_App::loadApps(array('authentication'));
|
|
|
|
OC_App::loadApps(array('filesystem', 'logging'));
|
2014-05-10 12:00:22 +00:00
|
|
|
|
2014-09-04 13:23:55 +00:00
|
|
|
if (!\OC::$server->getAppManager()->isInstalled($app)) {
|
|
|
|
throw new Exception('App not installed: ' . $app);
|
|
|
|
}
|
2013-06-10 11:45:19 +00:00
|
|
|
OC_App::loadApp($app);
|
2013-11-22 13:00:08 +00:00
|
|
|
OC_User::setIncognitoMode(true);
|
2013-06-10 11:45:19 +00:00
|
|
|
|
2014-03-06 15:01:13 +00:00
|
|
|
$baseuri = OC::$WEBROOT . '/public.php/' . $service . '/';
|
|
|
|
|
|
|
|
require_once OC_App::getAppPath($app) . '/' . $parts[1];
|
2013-06-10 11:45:19 +00:00
|
|
|
|
2016-04-20 16:01:47 +00:00
|
|
|
} catch (Exception $ex) {
|
|
|
|
if ($ex instanceof \OC\ServiceUnavailableException) {
|
|
|
|
OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
|
|
|
|
} else {
|
|
|
|
OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR);
|
|
|
|
}
|
2014-07-24 15:18:10 +00:00
|
|
|
//show the user a detailed error page
|
2016-04-20 16:01:47 +00:00
|
|
|
\OC::$server->getLogger()->logException($ex, ['app' => 'public']);
|
2014-07-24 15:18:10 +00:00
|
|
|
OC_Template::printExceptionErrorPage($ex);
|
2016-04-20 16:01:47 +00:00
|
|
|
} catch (Error $ex) {
|
2013-06-10 11:45:19 +00:00
|
|
|
//show the user a detailed error page
|
|
|
|
OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR);
|
2016-04-20 16:01:47 +00:00
|
|
|
\OC::$server->getLogger()->logException($ex, ['app' => 'public']);
|
2013-06-10 11:45:19 +00:00
|
|
|
OC_Template::printExceptionErrorPage($ex);
|
2013-08-18 09:02:08 +00:00
|
|
|
}
|