2012-05-05 20:54:14 +00:00
|
|
|
<?php
|
2015-02-26 10:37:37 +00:00
|
|
|
|
2013-06-10 11:45:19 +00:00
|
|
|
try {
|
|
|
|
require_once 'lib/base.php';
|
2014-06-25 16:17:17 +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;
|
|
|
|
}
|
|
|
|
|
2015-02-10 12:02:48 +00:00
|
|
|
$request = \OC::$server->getRequest();
|
|
|
|
$pathInfo = $request->getPathInfo();
|
|
|
|
if ($pathInfo === false || $pathInfo === '') {
|
2013-06-10 11:45:19 +00:00
|
|
|
OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND);
|
|
|
|
exit;
|
|
|
|
}
|
2015-02-10 12:02:48 +00:00
|
|
|
if (!$pos = strpos($pathInfo, '/', 1)) {
|
|
|
|
$pos = strlen($pathInfo);
|
2013-06-10 11:45:19 +00:00
|
|
|
}
|
2015-02-10 12:02:48 +00:00
|
|
|
$service=substr($pathInfo, 1, $pos-1);
|
2012-06-24 08:06:42 +00:00
|
|
|
|
2015-02-10 12:02:48 +00:00
|
|
|
$file = \OC::$server->getConfig()->getAppValue('core', 'remote_' . $service);
|
2012-07-13 22:10:17 +00:00
|
|
|
|
2013-06-10 11:45:19 +00:00
|
|
|
if(is_null($file)) {
|
|
|
|
OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND);
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2015-02-24 16:42:26 +00:00
|
|
|
// force language as given in the http request
|
|
|
|
\OC_L10N::setLanguageFromRequest();
|
|
|
|
|
2013-06-10 11:45:19 +00:00
|
|
|
$file=ltrim($file, '/');
|
|
|
|
|
|
|
|
$parts=explode('/', $file, 2);
|
|
|
|
$app=$parts[0];
|
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
|
|
|
|
2013-06-10 11:45:19 +00:00
|
|
|
switch ($app) {
|
|
|
|
case 'core':
|
|
|
|
$file = OC::$SERVERROOT .'/'. $file;
|
|
|
|
break;
|
|
|
|
default:
|
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);
|
2014-02-20 13:51:23 +00:00
|
|
|
$file = OC_App::getAppPath($app) .'/'. $parts[1];
|
2013-06-10 11:45:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
|
|
|
|
require_once $file;
|
|
|
|
|
2014-07-24 15:18:10 +00:00
|
|
|
} catch (\OC\ServiceUnavailableException $ex) {
|
|
|
|
OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
|
|
|
|
\OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL);
|
|
|
|
OC_Template::printExceptionErrorPage($ex);
|
2013-06-10 11:45:19 +00:00
|
|
|
} catch (Exception $ex) {
|
|
|
|
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 09:02:08 +00:00
|
|
|
}
|