Server.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. * @copyright Copyright (c) 2022 Informatyka Boguslawski sp. z o.o. sp.k., http://www.ib.pl/
  5. *
  6. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  7. * @author Bjoern Schiessle <bjoern@schiessle.org>
  8. * @author Brandon Kirsch <brandonkirsch@github.com>
  9. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  10. * @author Georg Ehrke <oc.list@georgehrke.com>
  11. * @author Joas Schilling <coding@schilljs.com>
  12. * @author John Molakvoæ <skjnldsv@protonmail.com>
  13. * @author Lukas Reschke <lukas@statuscode.ch>
  14. * @author Maxence Lange <maxence@artificial-owl.com>
  15. * @author Morris Jobke <hey@morrisjobke.de>
  16. * @author Robin Appelman <robin@icewind.nl>
  17. * @author Roeland Jago Douma <roeland@famdouma.nl>
  18. * @author Thomas Citharel <nextcloud@tcit.fr>
  19. * @author Thomas Müller <thomas.mueller@tmit.eu>
  20. * @author Vincent Petry <vincent@nextcloud.com>
  21. *
  22. * @license AGPL-3.0
  23. *
  24. * This code is free software: you can redistribute it and/or modify
  25. * it under the terms of the GNU Affero General Public License, version 3,
  26. * as published by the Free Software Foundation.
  27. *
  28. * This program is distributed in the hope that it will be useful,
  29. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  30. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  31. * GNU Affero General Public License for more details.
  32. *
  33. * You should have received a copy of the GNU Affero General Public License, version 3,
  34. * along with this program. If not, see <http://www.gnu.org/licenses/>
  35. *
  36. */
  37. namespace OCA\DAV;
  38. use OCA\DAV\AppInfo\PluginManager;
  39. use OCA\DAV\BulkUpload\BulkUploadPlugin;
  40. use OCA\DAV\CalDAV\BirthdayService;
  41. use OCA\DAV\CalDAV\Schedule\IMipPlugin;
  42. use OCA\DAV\CalDAV\Security\RateLimitingPlugin;
  43. use OCA\DAV\CalDAV\Validation\CalDavValidatePlugin;
  44. use OCA\DAV\CardDAV\HasPhotoPlugin;
  45. use OCA\DAV\CardDAV\ImageExportPlugin;
  46. use OCA\DAV\CardDAV\MultiGetExportPlugin;
  47. use OCA\DAV\CardDAV\PhotoCache;
  48. use OCA\DAV\CardDAV\Security\CardDavRateLimitingPlugin;
  49. use OCA\DAV\CardDAV\Validation\CardDavValidatePlugin;
  50. use OCA\DAV\Comments\CommentsPlugin;
  51. use OCA\DAV\Connector\Sabre\AnonymousOptionsPlugin;
  52. use OCA\DAV\Connector\Sabre\Auth;
  53. use OCA\DAV\Connector\Sabre\BearerAuth;
  54. use OCA\DAV\Connector\Sabre\BlockLegacyClientPlugin;
  55. use OCA\DAV\Connector\Sabre\CachingTree;
  56. use OCA\DAV\Connector\Sabre\ChecksumUpdatePlugin;
  57. use OCA\DAV\Connector\Sabre\CommentPropertiesPlugin;
  58. use OCA\DAV\Connector\Sabre\CopyEtagHeaderPlugin;
  59. use OCA\DAV\Connector\Sabre\DavAclPlugin;
  60. use OCA\DAV\Connector\Sabre\DummyGetResponsePlugin;
  61. use OCA\DAV\Connector\Sabre\FakeLockerPlugin;
  62. use OCA\DAV\Connector\Sabre\FilesPlugin;
  63. use OCA\DAV\Connector\Sabre\FilesReportPlugin;
  64. use OCA\DAV\Connector\Sabre\PropfindCompressionPlugin;
  65. use OCA\DAV\Connector\Sabre\QuotaPlugin;
  66. use OCA\DAV\Connector\Sabre\RequestIdHeaderPlugin;
  67. use OCA\DAV\Connector\Sabre\SharesPlugin;
  68. use OCA\DAV\Connector\Sabre\TagsPlugin;
  69. use OCA\DAV\DAV\CustomPropertiesBackend;
  70. use OCA\DAV\DAV\PublicAuth;
  71. use OCA\DAV\DAV\ViewOnlyPlugin;
  72. use OCA\DAV\Events\SabrePluginAddEvent;
  73. use OCA\DAV\Events\SabrePluginAuthInitEvent;
  74. use OCA\DAV\Files\ErrorPagePlugin;
  75. use OCA\DAV\Files\LazySearchBackend;
  76. use OCA\DAV\Profiler\ProfilerPlugin;
  77. use OCA\DAV\Provisioning\Apple\AppleProvisioningPlugin;
  78. use OCA\DAV\SystemTag\SystemTagPlugin;
  79. use OCA\DAV\Upload\ChunkingPlugin;
  80. use OCA\DAV\Upload\ChunkingV2Plugin;
  81. use OCP\AppFramework\Http\Response;
  82. use OCP\Diagnostics\IEventLogger;
  83. use OCP\EventDispatcher\IEventDispatcher;
  84. use OCP\FilesMetadata\IFilesMetadataManager;
  85. use OCP\ICacheFactory;
  86. use OCP\IRequest;
  87. use OCP\Profiler\IProfiler;
  88. use OCP\SabrePluginEvent;
  89. use Psr\Log\LoggerInterface;
  90. use Sabre\CardDAV\VCFExportPlugin;
  91. use Sabre\DAV\Auth\Plugin;
  92. use Sabre\DAV\UUIDUtil;
  93. use SearchDAV\DAV\SearchPlugin;
  94. class Server {
  95. private IRequest $request;
  96. private string $baseUri;
  97. public Connector\Sabre\Server $server;
  98. private IProfiler $profiler;
  99. public function __construct(IRequest $request, string $baseUri) {
  100. $this->profiler = \OC::$server->get(IProfiler::class);
  101. if ($this->profiler->isEnabled()) {
  102. /** @var IEventLogger $eventLogger */
  103. $eventLogger = \OC::$server->get(IEventLogger::class);
  104. $eventLogger->start('runtime', 'DAV Runtime');
  105. }
  106. $this->request = $request;
  107. $this->baseUri = $baseUri;
  108. $logger = \OC::$server->get(LoggerInterface::class);
  109. /** @var IEventDispatcher $dispatcher */
  110. $dispatcher = \OC::$server->get(IEventDispatcher::class);
  111. $root = new RootCollection();
  112. $this->server = new \OCA\DAV\Connector\Sabre\Server(new CachingTree($root));
  113. // Add maintenance plugin
  114. $this->server->addPlugin(new \OCA\DAV\Connector\Sabre\MaintenancePlugin(\OC::$server->getConfig(), \OC::$server->getL10N('dav')));
  115. $this->server->addPlugin(new \OCA\DAV\Connector\Sabre\AppleQuirksPlugin());
  116. // Backends
  117. $authBackend = new Auth(
  118. \OC::$server->getSession(),
  119. \OC::$server->getUserSession(),
  120. \OC::$server->getRequest(),
  121. \OC::$server->getTwoFactorAuthManager(),
  122. \OC::$server->getBruteForceThrottler()
  123. );
  124. // Set URL explicitly due to reverse-proxy situations
  125. $this->server->httpRequest->setUrl($this->request->getRequestUri());
  126. $this->server->setBaseUri($this->baseUri);
  127. $this->server->addPlugin(new ProfilerPlugin($this->request));
  128. $this->server->addPlugin(new BlockLegacyClientPlugin(\OC::$server->getConfig()));
  129. $this->server->addPlugin(new AnonymousOptionsPlugin());
  130. $authPlugin = new Plugin();
  131. $authPlugin->addBackend(new PublicAuth());
  132. $this->server->addPlugin($authPlugin);
  133. // allow setup of additional auth backends
  134. $event = new SabrePluginEvent($this->server);
  135. $dispatcher->dispatch('OCA\DAV\Connector\Sabre::authInit', $event);
  136. $newAuthEvent = new SabrePluginAuthInitEvent($this->server);
  137. $dispatcher->dispatchTyped($newAuthEvent);
  138. $bearerAuthBackend = new BearerAuth(
  139. \OC::$server->getUserSession(),
  140. \OC::$server->getSession(),
  141. \OC::$server->getRequest()
  142. );
  143. $authPlugin->addBackend($bearerAuthBackend);
  144. // because we are throwing exceptions this plugin has to be the last one
  145. $authPlugin->addBackend($authBackend);
  146. // debugging
  147. if (\OC::$server->getConfig()->getSystemValue('debug', false)) {
  148. $this->server->addPlugin(new \Sabre\DAV\Browser\Plugin());
  149. } else {
  150. $this->server->addPlugin(new DummyGetResponsePlugin());
  151. }
  152. $this->server->addPlugin(new \OCA\DAV\Connector\Sabre\ExceptionLoggerPlugin('webdav', $logger));
  153. $this->server->addPlugin(new \OCA\DAV\Connector\Sabre\LockPlugin());
  154. $this->server->addPlugin(new \Sabre\DAV\Sync\Plugin());
  155. // acl
  156. $acl = new DavAclPlugin();
  157. $acl->principalCollectionSet = [
  158. 'principals/users',
  159. 'principals/groups',
  160. 'principals/calendar-resources',
  161. 'principals/calendar-rooms',
  162. ];
  163. $this->server->addPlugin($acl);
  164. // calendar plugins
  165. if ($this->requestIsForSubtree(['calendars', 'public-calendars', 'system-calendars', 'principals'])) {
  166. $this->server->addPlugin(new DAV\Sharing\Plugin($authBackend, \OC::$server->getRequest(), \OC::$server->getConfig()));
  167. $this->server->addPlugin(new \OCA\DAV\CalDAV\Plugin());
  168. $this->server->addPlugin(new \OCA\DAV\CalDAV\ICSExportPlugin\ICSExportPlugin(\OC::$server->getConfig(), $logger));
  169. $this->server->addPlugin(new \OCA\DAV\CalDAV\Schedule\Plugin(\OC::$server->getConfig(), \OC::$server->get(LoggerInterface::class)));
  170. $this->server->addPlugin(\OC::$server->get(\OCA\DAV\CalDAV\Trashbin\Plugin::class));
  171. $this->server->addPlugin(new \OCA\DAV\CalDAV\WebcalCaching\Plugin($request));
  172. if (\OC::$server->getConfig()->getAppValue('dav', 'allow_calendar_link_subscriptions', 'yes') === 'yes') {
  173. $this->server->addPlugin(new \Sabre\CalDAV\Subscriptions\Plugin());
  174. }
  175. $this->server->addPlugin(new \Sabre\CalDAV\Notifications\Plugin());
  176. $this->server->addPlugin(new \OCA\DAV\CalDAV\Publishing\PublishPlugin(
  177. \OC::$server->getConfig(),
  178. \OC::$server->getURLGenerator()
  179. ));
  180. $this->server->addPlugin(\OCP\Server::get(RateLimitingPlugin::class));
  181. $this->server->addPlugin(\OCP\Server::get(CalDavValidatePlugin::class));
  182. }
  183. // addressbook plugins
  184. if ($this->requestIsForSubtree(['addressbooks', 'principals'])) {
  185. $this->server->addPlugin(new DAV\Sharing\Plugin($authBackend, \OC::$server->getRequest(), \OC::$server->getConfig()));
  186. $this->server->addPlugin(new \OCA\DAV\CardDAV\Plugin());
  187. $this->server->addPlugin(new VCFExportPlugin());
  188. $this->server->addPlugin(new MultiGetExportPlugin());
  189. $this->server->addPlugin(new HasPhotoPlugin());
  190. $this->server->addPlugin(new ImageExportPlugin(new PhotoCache(
  191. \OC::$server->getAppDataDir('dav-photocache'),
  192. $logger)
  193. ));
  194. $this->server->addPlugin(\OCP\Server::get(CardDavRateLimitingPlugin::class));
  195. $this->server->addPlugin(\OCP\Server::get(CardDavValidatePlugin::class));
  196. }
  197. // system tags plugins
  198. $this->server->addPlugin(\OC::$server->get(SystemTagPlugin::class));
  199. // comments plugin
  200. $this->server->addPlugin(new CommentsPlugin(
  201. \OC::$server->getCommentsManager(),
  202. \OC::$server->getUserSession()
  203. ));
  204. $this->server->addPlugin(new CopyEtagHeaderPlugin());
  205. $this->server->addPlugin(new RequestIdHeaderPlugin(\OC::$server->get(IRequest::class)));
  206. $this->server->addPlugin(new ChunkingV2Plugin(\OCP\Server::get(ICacheFactory::class)));
  207. $this->server->addPlugin(new ChunkingPlugin());
  208. // allow setup of additional plugins
  209. $dispatcher->dispatch('OCA\DAV\Connector\Sabre::addPlugin', $event);
  210. $typedEvent = new SabrePluginAddEvent($this->server);
  211. $dispatcher->dispatchTyped($typedEvent);
  212. // Some WebDAV clients do require Class 2 WebDAV support (locking), since
  213. // we do not provide locking we emulate it using a fake locking plugin.
  214. if ($request->isUserAgent([
  215. '/WebDAVFS/',
  216. '/OneNote/',
  217. '/^Microsoft-WebDAV/',// Microsoft-WebDAV-MiniRedir/6.1.7601
  218. ])) {
  219. $this->server->addPlugin(new FakeLockerPlugin());
  220. }
  221. $this->server->addPlugin(new ErrorPagePlugin($this->request, \OC::$server->getConfig()));
  222. $lazySearchBackend = new LazySearchBackend();
  223. $this->server->addPlugin(new SearchPlugin($lazySearchBackend));
  224. // wait with registering these until auth is handled and the filesystem is setup
  225. $this->server->on('beforeMethod:*', function () use ($root, $lazySearchBackend, $logger) {
  226. // Allow view-only plugin for webdav requests
  227. $this->server->addPlugin(new ViewOnlyPlugin(
  228. \OC::$server->getUserFolder(),
  229. ));
  230. // custom properties plugin must be the last one
  231. $userSession = \OC::$server->getUserSession();
  232. $user = $userSession->getUser();
  233. if ($user !== null) {
  234. $view = \OC\Files\Filesystem::getView();
  235. $this->server->addPlugin(
  236. new FilesPlugin(
  237. $this->server->tree,
  238. \OC::$server->getConfig(),
  239. $this->request,
  240. \OC::$server->getPreviewManager(),
  241. \OC::$server->getUserSession(),
  242. false,
  243. !\OC::$server->getConfig()->getSystemValue('debug', false)
  244. )
  245. );
  246. $this->server->addPlugin(new ChecksumUpdatePlugin());
  247. $this->server->addPlugin(
  248. new \Sabre\DAV\PropertyStorage\Plugin(
  249. new CustomPropertiesBackend(
  250. $this->server->tree,
  251. \OC::$server->getDatabaseConnection(),
  252. \OC::$server->getUserSession()->getUser()
  253. )
  254. )
  255. );
  256. if ($view !== null) {
  257. $this->server->addPlugin(
  258. new QuotaPlugin($view));
  259. }
  260. $this->server->addPlugin(
  261. new TagsPlugin(
  262. $this->server->tree, \OC::$server->getTagManager()
  263. )
  264. );
  265. // TODO: switch to LazyUserFolder
  266. $userFolder = \OC::$server->getUserFolder();
  267. $shareManager = \OCP\Server::get(\OCP\Share\IManager::class);
  268. $this->server->addPlugin(new SharesPlugin(
  269. $this->server->tree,
  270. $userSession,
  271. $userFolder,
  272. $shareManager,
  273. ));
  274. $this->server->addPlugin(new CommentPropertiesPlugin(
  275. \OC::$server->getCommentsManager(),
  276. $userSession
  277. ));
  278. if (\OC::$server->getConfig()->getAppValue('dav', 'sendInvitations', 'yes') === 'yes') {
  279. $this->server->addPlugin(new IMipPlugin(
  280. \OC::$server->get(\OCP\IConfig::class),
  281. \OC::$server->get(\OCP\Mail\IMailer::class),
  282. \OC::$server->get(LoggerInterface::class),
  283. \OC::$server->get(\OCP\AppFramework\Utility\ITimeFactory::class),
  284. \OC::$server->get(\OCP\Defaults::class),
  285. $userSession,
  286. \OC::$server->get(\OCA\DAV\CalDAV\Schedule\IMipService::class),
  287. \OC::$server->get(\OCA\DAV\CalDAV\EventComparisonService::class)
  288. ));
  289. }
  290. $this->server->addPlugin(new \OCA\DAV\CalDAV\Search\SearchPlugin());
  291. if ($view !== null) {
  292. $this->server->addPlugin(new FilesReportPlugin(
  293. $this->server->tree,
  294. $view,
  295. \OC::$server->getSystemTagManager(),
  296. \OC::$server->getSystemTagObjectMapper(),
  297. \OC::$server->getTagManager(),
  298. $userSession,
  299. \OC::$server->getGroupManager(),
  300. $userFolder,
  301. \OC::$server->getAppManager()
  302. ));
  303. $lazySearchBackend->setBackend(new \OCA\DAV\Files\FileSearchBackend(
  304. $this->server->tree,
  305. $user,
  306. \OC::$server->getRootFolder(),
  307. $shareManager,
  308. $view,
  309. \OCP\Server::get(IFilesMetadataManager::class)
  310. ));
  311. $this->server->addPlugin(
  312. new BulkUploadPlugin(
  313. $userFolder,
  314. $logger
  315. )
  316. );
  317. }
  318. $this->server->addPlugin(new \OCA\DAV\CalDAV\BirthdayCalendar\EnablePlugin(
  319. \OC::$server->getConfig(),
  320. \OC::$server->query(BirthdayService::class),
  321. $user
  322. ));
  323. $this->server->addPlugin(new AppleProvisioningPlugin(
  324. \OC::$server->getUserSession(),
  325. \OC::$server->getURLGenerator(),
  326. \OC::$server->getThemingDefaults(),
  327. \OC::$server->getRequest(),
  328. \OC::$server->getL10N('dav'),
  329. function () {
  330. return UUIDUtil::getUUID();
  331. }
  332. ));
  333. }
  334. // register plugins from apps
  335. $pluginManager = new PluginManager(
  336. \OC::$server,
  337. \OC::$server->getAppManager()
  338. );
  339. foreach ($pluginManager->getAppPlugins() as $appPlugin) {
  340. $this->server->addPlugin($appPlugin);
  341. }
  342. foreach ($pluginManager->getAppCollections() as $appCollection) {
  343. $root->addChild($appCollection);
  344. }
  345. });
  346. $this->server->addPlugin(
  347. new PropfindCompressionPlugin()
  348. );
  349. }
  350. public function exec() {
  351. /** @var IEventLogger $eventLogger */
  352. $eventLogger = \OC::$server->get(IEventLogger::class);
  353. $eventLogger->start('dav_server_exec', '');
  354. $this->server->exec();
  355. $eventLogger->end('dav_server_exec');
  356. if ($this->profiler->isEnabled()) {
  357. $eventLogger->end('runtime');
  358. $profile = $this->profiler->collect(\OC::$server->get(IRequest::class), new Response());
  359. $this->profiler->saveProfile($profile);
  360. }
  361. }
  362. private function requestIsForSubtree(array $subTrees): bool {
  363. foreach ($subTrees as $subTree) {
  364. $subTree = trim($subTree, ' /');
  365. if (str_starts_with($this->server->getRequestUri(), $subTree . '/')) {
  366. return true;
  367. }
  368. }
  369. return false;
  370. }
  371. public function getSabreServer(): Connector\Sabre\Server {
  372. return $this->server;
  373. }
  374. }