Server.php 14 KB

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