2012-05-05 20:54:14 +00:00
|
|
|
<?php
|
2012-10-23 06:01:09 +00:00
|
|
|
$RUNTIME_NOAPPS = true;
|
2012-09-04 09:11:11 +00:00
|
|
|
require_once 'lib/base.php';
|
2012-08-07 18:33:25 +00:00
|
|
|
$path_info = OC_Request::getPathInfo();
|
2012-08-28 15:08:24 +00:00
|
|
|
if ($path_info === false || $path_info === '') {
|
2012-06-09 12:32:02 +00:00
|
|
|
OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND);
|
|
|
|
exit;
|
|
|
|
}
|
2012-05-05 22:12:51 +00:00
|
|
|
if (!$pos = strpos($path_info, '/', 1)) {
|
|
|
|
$pos = strlen($path_info);
|
|
|
|
}
|
|
|
|
$service=substr($path_info, 1, $pos-1);
|
2012-07-13 20:44:35 +00:00
|
|
|
|
2012-05-14 15:57:43 +00:00
|
|
|
$file = OC_AppConfig::getValue('core', 'remote_' . $service);
|
2012-06-25 17:33:24 +00:00
|
|
|
|
2012-09-04 09:11:11 +00:00
|
|
|
if(is_null($file)) {
|
2012-06-09 12:32:02 +00:00
|
|
|
OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND);
|
2012-05-05 20:54:14 +00:00
|
|
|
exit;
|
|
|
|
}
|
2012-06-24 08:06:42 +00:00
|
|
|
|
2012-09-04 09:11:11 +00:00
|
|
|
$file=ltrim($file, '/');
|
2012-07-13 22:10:17 +00:00
|
|
|
|
2012-06-29 20:12:39 +00:00
|
|
|
$parts=explode('/', $file, 2);
|
|
|
|
$app=$parts[0];
|
|
|
|
switch ($app) {
|
2012-07-13 20:44:35 +00:00
|
|
|
case 'core':
|
|
|
|
$file = OC::$SERVERROOT .'/'. $file;
|
|
|
|
break;
|
2012-06-29 20:12:39 +00:00
|
|
|
default:
|
|
|
|
OC_Util::checkAppEnabled($app);
|
|
|
|
OC_App::loadApp($app);
|
2012-10-08 19:28:21 +00:00
|
|
|
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
|
|
|
$file = OC_App::getAppPath($app) .'/'. $parts[1];
|
|
|
|
}else{
|
|
|
|
$file = '/' . OC_App::getAppPath($app) .'/'. $parts[1];
|
|
|
|
}
|
2012-06-29 20:12:39 +00:00
|
|
|
break;
|
2012-06-06 21:11:15 +00:00
|
|
|
}
|
2012-06-29 20:12:39 +00:00
|
|
|
$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
|
2012-09-04 09:11:11 +00:00
|
|
|
require_once $file;
|