nextcloud/remote.php

25 lines
700 B
PHP
Raw Normal View History

2012-05-06 00:54:14 +04:00
<?php
$RUNTIME_NOSETUPFS = true;
$RUNTIME_NOAPPS = TRUE;
2012-05-06 00:54:14 +04:00
require_once('lib/base.php');
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__)));
}
if (!$pos = strpos($path_info, '/', 1)) {
$pos = strlen($path_info);
}
$service=substr($path_info, 1, $pos-1);
$file = OCP\CONFIG::getAppValue('core', 'remote_' . $service);
2012-05-06 00:54:14 +04:00
if(is_null($file)){
header('HTTP/1.0 404 Not Found');
2012-05-06 00:54:14 +04:00
exit;
}
$parts=explode('/',$file);
$app=$parts[2];
OC_App::loadApp($app);
2012-05-07 13:24:00 +04:00
$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
require_once(OC::$APPSROOT . $file);