2012-05-07 17:39:17 +04:00
|
|
|
<?php
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-06-10 15:45:19 +04:00
|
|
|
try {
|
2012-07-14 00:44:35 +04:00
|
|
|
|
2013-06-10 15:45:19 +04:00
|
|
|
require_once 'lib/base.php';
|
2014-06-30 16:48:03 +04: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;
|
|
|
|
}
|
|
|
|
|
2013-06-10 15:45:19 +04:00
|
|
|
OC::checkMaintenanceMode();
|
2013-11-25 18:08:24 +04:00
|
|
|
OC::checkSingleUserMode();
|
2015-02-10 15:02:48 +03:00
|
|
|
$request = \OC::$server->getRequest();
|
|
|
|
$pathInfo = $request->getPathInfo();
|
2015-02-23 16:07:42 +03:00
|
|
|
|
|
|
|
if (!$pathInfo && $request->getParam('service', '') === '') {
|
2013-06-10 15:45:19 +04:00
|
|
|
header('HTTP/1.0 404 Not Found');
|
|
|
|
exit;
|
2015-02-23 16:07:42 +03:00
|
|
|
} elseif ($request->getParam('service', '')) {
|
|
|
|
$service = $request->getParam('service', '');
|
2014-03-06 19:01:13 +04:00
|
|
|
} else {
|
|
|
|
$pathInfo = trim($pathInfo, '/');
|
|
|
|
list($service) = explode('/', $pathInfo);
|
2013-06-10 15:45:19 +04:00
|
|
|
}
|
2014-03-06 19:01:13 +04:00
|
|
|
$file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($service));
|
|
|
|
if (is_null($file)) {
|
2013-06-10 15:45:19 +04:00
|
|
|
header('HTTP/1.0 404 Not Found');
|
|
|
|
exit;
|
|
|
|
}
|
2012-05-14 02:28:22 +04:00
|
|
|
|
2014-03-06 19:01:13 +04:00
|
|
|
$parts = explode('/', $file, 2);
|
|
|
|
$app = $parts[0];
|
2013-06-10 15:45:19 +04:00
|
|
|
|
2014-05-10 16:00:22 +04:00
|
|
|
// Load all required applications
|
|
|
|
\OC::$REQUESTEDAPP = $app;
|
2014-05-28 23:43:48 +04:00
|
|
|
OC_App::loadApps(array('authentication'));
|
|
|
|
OC_App::loadApps(array('filesystem', 'logging'));
|
2014-05-10 16:00:22 +04:00
|
|
|
|
2014-09-04 17:23:55 +04:00
|
|
|
if (!\OC::$server->getAppManager()->isInstalled($app)) {
|
|
|
|
throw new Exception('App not installed: ' . $app);
|
|
|
|
}
|
2013-06-10 15:45:19 +04:00
|
|
|
OC_App::loadApp($app);
|
2013-11-22 17:00:08 +04:00
|
|
|
OC_User::setIncognitoMode(true);
|
2013-06-10 15:45:19 +04:00
|
|
|
|
2014-03-06 19:01:13 +04:00
|
|
|
$baseuri = OC::$WEBROOT . '/public.php/' . $service . '/';
|
|
|
|
|
|
|
|
require_once OC_App::getAppPath($app) . '/' . $parts[1];
|
2013-06-10 15:45:19 +04:00
|
|
|
|
2014-07-24 19:18:10 +04:00
|
|
|
} catch (\OC\ServiceUnavailableException $ex) {
|
|
|
|
//show the user a detailed error page
|
|
|
|
OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
|
|
|
|
\OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL);
|
|
|
|
OC_Template::printExceptionErrorPage($ex);
|
2013-06-10 15:45:19 +04:00
|
|
|
} catch (Exception $ex) {
|
|
|
|
//show the user a detailed error page
|
|
|
|
OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR);
|
|
|
|
\OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL);
|
|
|
|
OC_Template::printExceptionErrorPage($ex);
|
2013-08-18 13:02:08 +04:00
|
|
|
}
|