2012-05-06 00:54:14 +04:00
|
|
|
<?php
|
|
|
|
$RUNTIME_NOSETUPFS = true;
|
2012-05-14 02:28:22 +04:00
|
|
|
$RUNTIME_NOAPPS = TRUE;
|
2012-05-06 00:54:14 +04:00
|
|
|
require_once('lib/base.php');
|
2012-05-13 23:41:13 +04:00
|
|
|
if (array_key_exists('PATH_INFO', $_SERVER)){
|
|
|
|
$path_info = $_SERVER['PATH_INFO'];
|
|
|
|
}else{
|
|
|
|
$path_info = substr($_SERVER['PHP_SELF'], strpos($_SERVER['PHP_SELF'], basename(__FILE__)) + strlen(basename(__FILE__)));
|
|
|
|
}
|
2012-05-06 02:12:51 +04:00
|
|
|
if (!$pos = strpos($path_info, '/', 1)) {
|
|
|
|
$pos = strlen($path_info);
|
|
|
|
}
|
|
|
|
$service=substr($path_info, 1, $pos-1);
|
2012-05-07 17:39:17 +04:00
|
|
|
$file = OCP\CONFIG::getAppValue('core', 'remote_' . $service);
|
2012-05-06 00:54:14 +04:00
|
|
|
if(is_null($file)){
|
2012-05-07 17:39:17 +04:00
|
|
|
header('HTTP/1.0 404 Not Found');
|
2012-05-06 00:54:14 +04:00
|
|
|
exit;
|
|
|
|
}
|
2012-05-14 02:28:22 +04:00
|
|
|
|
|
|
|
$parts=explode('/',$file);
|
|
|
|
$app=$parts[2];
|
|
|
|
OC_App::loadApp($app);
|
|
|
|
|
2012-05-07 13:24:00 +04:00
|
|
|
$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
|
2012-05-07 17:39:17 +04:00
|
|
|
require_once(OC::$APPSROOT . $file);
|