2012-05-07 13:39:17 +00:00
|
|
|
<?php
|
2012-10-23 06:01:09 +00:00
|
|
|
$RUNTIME_NOAPPS = true;
|
2012-09-04 09:10:26 +00:00
|
|
|
require_once 'lib/base.php';
|
2012-08-28 15:13:02 +00:00
|
|
|
if (!isset($_GET['service'])) {
|
|
|
|
header('HTTP/1.0 404 Not Found');
|
|
|
|
exit;
|
|
|
|
}
|
2012-05-07 13:39:17 +00:00
|
|
|
$file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service']));
|
2012-09-04 09:10:26 +00:00
|
|
|
if(is_null($file)) {
|
2012-05-07 13:39:17 +00:00
|
|
|
header('HTTP/1.0 404 Not Found');
|
|
|
|
exit;
|
|
|
|
}
|
2012-05-13 22:28:22 +00:00
|
|
|
|
2012-09-04 09:10:26 +00:00
|
|
|
$parts=explode('/', $file, 2);
|
2012-06-04 20:37:00 +00:00
|
|
|
$app=$parts[0];
|
2012-07-13 20:44:35 +00:00
|
|
|
|
2012-06-26 20:24:16 +00:00
|
|
|
OC_Util::checkAppEnabled($app);
|
2012-05-13 22:28:22 +00:00
|
|
|
OC_App::loadApp($app);
|
|
|
|
|
2012-09-04 09:10:26 +00:00
|
|
|
require_once OC_App::getAppPath($app) .'/'. $parts[1];
|