mirror of
https://github.com/nextcloud/server.git
synced 2025-05-04 22:11:01 +00:00

The app id might be misleading, the federation app is for syncing addressbooks with trusted servers. It is not always enabled and show not have to be. Signed-off-by: Joas Schilling <coding@schilljs.com>
41 lines
968 B
PHP
41 lines
968 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\CloudFederationAPI;
|
|
|
|
use OCP\Federation\ICloudFederationProviderManager;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
/**
|
|
* Class config
|
|
*
|
|
* handles all the config parameters
|
|
*
|
|
* @package OCA\CloudFederationAPI
|
|
*/
|
|
class Config {
|
|
|
|
public function __construct(
|
|
private ICloudFederationProviderManager $cloudFederationProviderManager,
|
|
private LoggerInterface $logger,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* get a list of supported share types
|
|
*
|
|
* @param string $resourceType
|
|
* @return array
|
|
*/
|
|
public function getSupportedShareTypes($resourceType) {
|
|
try {
|
|
$provider = $this->cloudFederationProviderManager->getCloudFederationProvider($resourceType);
|
|
return $provider->getSupportedShareTypes();
|
|
} catch (\Exception $e) {
|
|
$this->logger->error('Failed to create federation provider', ['exception' => $e]);
|
|
return [];
|
|
}
|
|
}
|
|
}
|