Example #1
0
 *
 * You should have received a copy of the GNU Affero General Public License, version 3,
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 *
 */
try {
    require_once 'lib/base.php';
    if (\OCP\Util::needUpgrade()) {
        // since the behavior of apps or remotes are unpredictable during
        // an upgrade, return a 503 directly
        OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
        OC_Template::printErrorPage('Service unavailable');
        exit;
    }
    OC::checkMaintenanceMode();
    OC::checkSingleUserMode(true);
    $request = \OC::$server->getRequest();
    $pathInfo = $request->getPathInfo();
    if (!$pathInfo && $request->getParam('service', '') === '') {
        header('HTTP/1.0 404 Not Found');
        exit;
    } elseif ($request->getParam('service', '')) {
        $service = $request->getParam('service', '');
    } else {
        $pathInfo = trim($pathInfo, '/');
        list($service) = explode('/', $pathInfo);
    }
    $file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($service));
    if (is_null($file)) {
        header('HTTP/1.0 404 Not Found');
        exit;
Example #2
0
<?php

try {
    require_once 'lib/base.php';
    if (\OCP\Util::needUpgrade()) {
        // since the behavior of apps or remotes are unpredictable during
        // an upgrade, return a 503 directly
        OC_Response::setStatus(OC_Response::STATUS_SERVICE_UNAVAILABLE);
        OC_Template::printErrorPage('Service unavailable');
        exit;
    }
    OC::checkMaintenanceMode();
    OC::checkSingleUserMode();
    $request = \OC::$server->getRequest();
    $pathInfo = $request->getPathInfo();
    if (!$pathInfo && !isset($request->server['service'])) {
        header('HTTP/1.0 404 Not Found');
        exit;
    } elseif (isset($request->server['service'])) {
        $service = $request->server['service'];
    } else {
        $pathInfo = trim($pathInfo, '/');
        list($service) = explode('/', $pathInfo);
    }
    $file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($service));
    if (is_null($file)) {
        header('HTTP/1.0 404 Not Found');
        exit;
    }
    $parts = explode('/', $file, 2);
    $app = $parts[0];