nextcloud/public.php

22 lines
471 B
PHP
Raw Normal View History

<?php
$RUNTIME_NOAPPS = true;
2012-09-04 13:10:26 +04:00
require_once 'lib/base.php';
OC::checkMaintenanceMode();
if (!isset($_GET['service'])) {
header('HTTP/1.0 404 Not Found');
exit;
}
$file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service']));
2012-09-04 13:10:26 +04:00
if(is_null($file)) {
header('HTTP/1.0 404 Not Found');
exit;
}
2012-09-04 13:10:26 +04:00
$parts=explode('/', $file, 2);
$app=$parts[0];
2012-07-14 00:44:35 +04:00
OC_Util::checkAppEnabled($app);
OC_App::loadApp($app);
2012-09-04 13:10:26 +04:00
require_once OC_App::getAppPath($app) .'/'. $parts[1];