2012-05-06 00:54:14 +04:00
|
|
|
<?php
|
|
|
|
$RUNTIME_NOSETUPFS = true;
|
|
|
|
//$RUNTIME_NOAPPS = TRUE;
|
|
|
|
require_once('lib/base.php');
|
2012-05-06 02:12:51 +04:00
|
|
|
$path_info = $_SERVER['PATH_INFO'];
|
|
|
|
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-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);
|