diff options
Diffstat (limited to 'apps/dav/lib/Capabilities.php')
-rw-r--r-- | apps/dav/lib/Capabilities.php | 46 |
1 files changed, 24 insertions, 22 deletions
diff --git a/apps/dav/lib/Capabilities.php b/apps/dav/lib/Capabilities.php index 41d1b983587..f9bad25bf31 100644 --- a/apps/dav/lib/Capabilities.php +++ b/apps/dav/lib/Capabilities.php @@ -1,37 +1,39 @@ <?php + /** - * @copyright Copyright (c) 2016, ownCloud GmbH - * - * @author Thomas Müller <thomas.mueller@tmit.eu> - * @author Louis Chemineau <louis@chmn.me> - * - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * 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, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * + * SPDX-FileCopyrightText: 2016 ownCloud GmbH + * SPDX-License-Identifier: AGPL-3.0-only */ namespace OCA\DAV; use OCP\Capabilities\ICapability; +use OCP\IConfig; +use OCP\User\IAvailabilityCoordinator; class Capabilities implements ICapability { + public function __construct( + private IConfig $config, + private IAvailabilityCoordinator $coordinator, + ) { + } + + /** + * @return array{dav: array{chunking: string, public_shares_chunking: bool, bulkupload?: string, absence-supported?: bool, absence-replacement?: bool}} + */ public function getCapabilities() { - return [ + $capabilities = [ 'dav' => [ 'chunking' => '1.0', - // disabled because of https://github.com/nextcloud/desktop/issues/4243 - // 'bulkupload' => '1.0', + 'public_shares_chunking' => true, ] ]; + if ($this->config->getSystemValueBool('bulkupload.enabled', true)) { + $capabilities['dav']['bulkupload'] = '1.0'; + } + if ($this->coordinator->isEnabled()) { + $capabilities['dav']['absence-supported'] = true; + $capabilities['dav']['absence-replacement'] = true; + } + return $capabilities; } } |