public.php 806 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. $RUNTIME_NOAPPS = true;
  3. try {
  4. require_once 'lib/base.php';
  5. OC::checkMaintenanceMode();
  6. OC::checkSingleUserMode();
  7. if (!isset($_GET['service'])) {
  8. header('HTTP/1.0 404 Not Found');
  9. exit;
  10. }
  11. $file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service']));
  12. if(is_null($file)) {
  13. header('HTTP/1.0 404 Not Found');
  14. exit;
  15. }
  16. $parts=explode('/', $file, 2);
  17. $app=$parts[0];
  18. OC_Util::checkAppEnabled($app);
  19. OC_App::loadApp($app);
  20. OC_User::setIncognitoMode(true);
  21. require_once OC_App::getAppPath($app) .'/'. $parts[1];
  22. } catch (Exception $ex) {
  23. //show the user a detailed error page
  24. OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR);
  25. \OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL);
  26. OC_Template::printExceptionErrorPage($ex);
  27. }