remote.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Brice Maron <brice@bmaron.net>
  6. * @author Christopher Schäpers <kondou@ts.unde.re>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Jörn Friedrich Dreyer <jfd@butonic.de>
  9. * @author Lukas Reschke <lukas@statuscode.ch>
  10. * @author Robin Appelman <robin@icewind.nl>
  11. * @author Robin McCorkell <robin@mccorkell.me.uk>
  12. * @author Thomas Müller <thomas.mueller@tmit.eu>
  13. * @author Vincent Petry <pvince81@owncloud.com>
  14. *
  15. * @license AGPL-3.0
  16. *
  17. * This code is free software: you can redistribute it and/or modify
  18. * it under the terms of the GNU Affero General Public License, version 3,
  19. * as published by the Free Software Foundation.
  20. *
  21. * This program is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU Affero General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU Affero General Public License, version 3,
  27. * along with this program. If not, see <http://www.gnu.org/licenses/>
  28. *
  29. */
  30. require_once __DIR__ . '/lib/versioncheck.php';
  31. use OCA\DAV\Connector\Sabre\ExceptionLoggerPlugin;
  32. use Sabre\DAV\Exception\ServiceUnavailable;
  33. use Sabre\DAV\Server;
  34. /**
  35. * Class RemoteException
  36. * Dummy exception class to be use locally to identify certain conditions
  37. * Will not be logged to avoid DoS
  38. */
  39. class RemoteException extends Exception {
  40. }
  41. /**
  42. * @param Exception|Error $e
  43. */
  44. function handleException($e) {
  45. $request = \OC::$server->getRequest();
  46. // in case the request content type is text/xml - we assume it's a WebDAV request
  47. $isXmlContentType = strpos($request->getHeader('Content-Type'), 'text/xml');
  48. if ($isXmlContentType === 0) {
  49. // fire up a simple server to properly process the exception
  50. $server = new Server();
  51. if (!($e instanceof RemoteException)) {
  52. // we shall not log on RemoteException
  53. $server->addPlugin(new ExceptionLoggerPlugin('webdav', \OC::$server->getLogger()));
  54. }
  55. $server->on('beforeMethod', function () use ($e) {
  56. if ($e instanceof RemoteException) {
  57. switch ($e->getCode()) {
  58. case 503:
  59. throw new ServiceUnavailable($e->getMessage());
  60. case 404:
  61. throw new \Sabre\DAV\Exception\NotFound($e->getMessage());
  62. }
  63. }
  64. $class = get_class($e);
  65. $msg = $e->getMessage();
  66. throw new ServiceUnavailable("$class: $msg");
  67. });
  68. $server->exec();
  69. } else {
  70. $statusCode = 500;
  71. if ($e instanceof \OC\ServiceUnavailableException ) {
  72. $statusCode = 503;
  73. }
  74. if ($e instanceof RemoteException) {
  75. // we shall not log on RemoteException
  76. OC_Template::printErrorPage($e->getMessage(), '', $e->getCode());
  77. } else {
  78. \OC::$server->getLogger()->logException($e, ['app' => 'remote']);
  79. OC_Template::printExceptionErrorPage($e, $statusCode);
  80. }
  81. }
  82. }
  83. /**
  84. * @param $service
  85. * @return string
  86. */
  87. function resolveService($service) {
  88. $services = [
  89. 'webdav' => 'dav/appinfo/v1/webdav.php',
  90. 'dav' => 'dav/appinfo/v2/remote.php',
  91. 'caldav' => 'dav/appinfo/v1/caldav.php',
  92. 'calendar' => 'dav/appinfo/v1/caldav.php',
  93. 'carddav' => 'dav/appinfo/v1/carddav.php',
  94. 'contacts' => 'dav/appinfo/v1/carddav.php',
  95. 'files' => 'dav/appinfo/v1/webdav.php',
  96. 'direct' => 'dav/appinfo/v2/direct.php',
  97. ];
  98. if (isset($services[$service])) {
  99. return $services[$service];
  100. }
  101. return \OC::$server->getConfig()->getAppValue('core', 'remote_' . $service);
  102. }
  103. try {
  104. require_once __DIR__ . '/lib/base.php';
  105. // All resources served via the DAV endpoint should have the strictest possible
  106. // policy. Exempted from this is the SabreDAV browser plugin which overwrites
  107. // this policy with a softer one if debug mode is enabled.
  108. header("Content-Security-Policy: default-src 'none';");
  109. if (\OCP\Util::needUpgrade()) {
  110. // since the behavior of apps or remotes are unpredictable during
  111. // an upgrade, return a 503 directly
  112. throw new RemoteException('Service unavailable', 503);
  113. }
  114. $request = \OC::$server->getRequest();
  115. $pathInfo = $request->getPathInfo();
  116. if ($pathInfo === false || $pathInfo === '') {
  117. throw new RemoteException('Path not found', 404);
  118. }
  119. if (!$pos = strpos($pathInfo, '/', 1)) {
  120. $pos = strlen($pathInfo);
  121. }
  122. $service=substr($pathInfo, 1, $pos-1);
  123. $file = resolveService($service);
  124. if(is_null($file)) {
  125. throw new RemoteException('Path not found', 404);
  126. }
  127. $file=ltrim($file, '/');
  128. $parts=explode('/', $file, 2);
  129. $app=$parts[0];
  130. // Load all required applications
  131. \OC::$REQUESTEDAPP = $app;
  132. OC_App::loadApps(array('authentication'));
  133. OC_App::loadApps(array('filesystem', 'logging'));
  134. switch ($app) {
  135. case 'core':
  136. $file = OC::$SERVERROOT .'/'. $file;
  137. break;
  138. default:
  139. if (!\OC::$server->getAppManager()->isInstalled($app)) {
  140. throw new RemoteException('App not installed: ' . $app);
  141. }
  142. OC_App::loadApp($app);
  143. $file = OC_App::getAppPath($app) .'/'. $parts[1];
  144. break;
  145. }
  146. $baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
  147. require_once $file;
  148. } catch (Exception $ex) {
  149. handleException($ex);
  150. } catch (Error $e) {
  151. handleException($e);
  152. }