* @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Charlie Calendre * @author Christoph Wurst * @author Georg Ehrke * @author Joas Schilling * @author Lukas Reschke * @author Morris Jobke * @author Thomas Citharel * @author Thomas Müller * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ namespace OCA\Watcha; use OCA\DAV\DAV\CustomPropertiesBackend; use OCP\IDBConnection; use OCP\IUser; // // Backends use OC\KnownUser\KnownUserService; use OCA\DAV\CalDAV\CalDavBackend; use OCA\DAV\Connector\LegacyDAVACL; use OCA\DAV\CalDAV\CalendarRoot; use OCA\DAV\Connector\Sabre\Auth; use OCA\DAV\Connector\Sabre\ExceptionLoggerPlugin; use OCA\DAV\Connector\Sabre\MaintenancePlugin; use OCA\DAV\Connector\Sabre\Principal; use OCP\Accounts\IAccountManager; use Psr\Log\LoggerInterface; use OCA\DAV\CalDAV\Sharing\Backend as CalendarSharingBackend; use OCA\DAV\CalDAV\DefaultCalendarValidator; // /** * Sabre DAV Server * * @package OCA\Watcha */ class Dav { /** * @return \Sabre\DAV\Server */ public static function getServerInstance(IDBConnection $connection = null, IUser $user = null) { $baseuri = \OC::$WEBROOT . '/remote.php/dav/'; // $authBackend = new Auth( \OC::$server->getSession(), \OC::$server->getUserSession(), \OC::$server->getRequest(), \OC::$server->getTwoFactorAuthManager(), \OC::$server->getBruteForceThrottler(), 'principals/' ); $principalBackend = new Principal( \OC::$server->getUserManager(), \OC::$server->getGroupManager(), \OC::$server->get(IAccountManager::class), \OC::$server->getShareManager(), \OC::$server->getUserSession(), \OC::$server->getAppManager(), \OC::$server->query(\OCA\DAV\CalDAV\Proxy\ProxyMapper::class), \OC::$server->get(KnownUserService::class), \OC::$server->getConfig(), \OC::$server->getL10NFactory(), 'principals/' ); $db = \OC::$server->getDatabaseConnection(); $userManager = \OC::$server->getUserManager(); $random = \OC::$server->getSecureRandom(); $logger = \OC::$server->get(LoggerInterface::class); $dispatcher = \OC::$server->get(\OCP\EventDispatcher\IEventDispatcher::class); $config = \OC::$server->get(\OCP\IConfig::class); $calendarSharingBackend = \OC::$server->get(CalendarSharingBackend::class); //dla+ $calDavBackend = new CalDavBackend( $db, $principalBackend, $userManager, $random, $logger, $dispatcher, $config, $calendarSharingBackend, /* watcha! default: false true !watcha */ ); $debugging = \OC::$server->getConfig()->getSystemValue('debug', false); $sendInvitations = \OC::$server->getConfig()->getAppValue('dav', 'sendInvitations', 'yes') === 'yes'; // Root nodes $principalCollection = new \Sabre\CalDAV\Principal\Collection($principalBackend); $principalCollection->disableListing = !$debugging; // Disable listing $addressBookRoot = new CalendarRoot($principalBackend, $calDavBackend, 'principals', $logger); $addressBookRoot->disableListing = !$debugging; // Disable listing $nodes = [ $principalCollection, $addressBookRoot, ]; // Fire up server $server = new \Sabre\DAV\Server($nodes); $server::$exposeVersion = false; $server->httpRequest->setUrl(\OC::$server->getRequest()->getRequestUri()); $server->setBaseUri($baseuri); // Add plugins $server->addPlugin(new MaintenancePlugin(\OC::$server->getConfig(), \OC::$server->getL10N('dav'))); $server->addPlugin(new \Sabre\DAV\Auth\Plugin($authBackend)); $server->addPlugin(new \Sabre\CalDAV\Plugin()); /* watcha! causes "Node with name 'xxx' could not be found" $server->addPlugin(new LegacyDAVACL()); !watcha */ if ($debugging) { /* watcha! causes "Class \"OCA\\Watcha\\Sabre\\DAV\\Browser\\Plugin\" not found"" $server->addPlugin(new Sabre\DAV\Browser\Plugin()); !watcha */ $server->addPlugin(new \Sabre\DAV\Browser\Plugin()); } $defaultCalendarValidator = \OC::$server->get(DefaultCalendarValidator::class); $server->addPlugin(new \Sabre\DAV\Sync\Plugin()); $server->addPlugin(new \Sabre\CalDAV\ICSExportPlugin()); $server->addPlugin(new \OCA\DAV\CalDAV\Schedule\Plugin(\OC::$server->getConfig(), $logger, $defaultCalendarValidator)); if ($sendInvitations) { $server->addPlugin(\OC::$server->query(\OCA\DAV\CalDAV\Schedule\IMipPlugin::class)); } $server->addPlugin(new ExceptionLoggerPlugin('caldav', $logger)); // if ($connection && $user) { $server->addPlugin( new \Sabre\DAV\PropertyStorage\Plugin( new CustomPropertiesBackend( $server, $server->tree, $connection, $user, $defaultCalendarValidator, ) ) ); } return $server; } }