1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * SPDX-FileCopyrightText: 2016 ownCloud GmbH
- * SPDX-License-Identifier: AGPL-3.0-only
- */
- namespace OCA\DAV;
- use OCP\Capabilities\ICapability;
- use OCP\IConfig;
- class Capabilities implements ICapability {
- private IConfig $config;
- public function __construct(IConfig $config) {
- $this->config = $config;
- }
- /**
- * @return array{dav: array{chunking: string, bulkupload?: string}}
- */
- public function getCapabilities() {
- $capabilities = [
- 'dav' => [
- 'chunking' => '1.0',
- ]
- ];
- if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {
- $capabilities['dav']['bulkupload'] = '1.0';
- }
- return $capabilities;
- }
- }
|