mirror of
https://github.com/nextcloud/server.git
synced 2025-03-13 16:03:55 +00:00
39 lines
1 KiB
PHP
39 lines
1 KiB
PHP
<?php
|
|
/**
|
|
* 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 {
|
|
private IConfig $config;
|
|
private IAvailabilityCoordinator $coordinator;
|
|
|
|
public function __construct(IConfig $config, IAvailabilityCoordinator $coordinator) {
|
|
$this->config = $config;
|
|
$this->coordinator = $coordinator;
|
|
}
|
|
|
|
/**
|
|
* @return array{dav: array{chunking: string, bulkupload?: string, absence-supported?: bool, absence-replacement?: bool}}
|
|
*/
|
|
public function getCapabilities() {
|
|
$capabilities = [
|
|
'dav' => [
|
|
'chunking' => '1.0',
|
|
]
|
|
];
|
|
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;
|
|
}
|
|
}
|