diff options
Diffstat (limited to 'apps/cloud_federation_api/lib/Capabilities.php')
-rw-r--r-- | apps/cloud_federation_api/lib/Capabilities.php | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/apps/cloud_federation_api/lib/Capabilities.php b/apps/cloud_federation_api/lib/Capabilities.php new file mode 100644 index 00000000000..17d3b2cfaf3 --- /dev/null +++ b/apps/cloud_federation_api/lib/Capabilities.php @@ -0,0 +1,56 @@ +<?php +/** + * @copyright Copyright (c) 2017 Bjoern Schiessle <bjoern@schiessle.org> + * + * @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 <http://www.gnu.org/licenses/>. + * + */ + + +namespace OCA\CloudFederationAPI; + + +use OCP\Capabilities\ICapability; +use OCP\IURLGenerator; + +class Capabilities implements ICapability { + + /** @var IURLGenerator */ + private $urlGenerator; + + public function __construct(IURLGenerator $urlGenerator) { + $this->urlGenerator = $urlGenerator; + } + + /** + * Function an app uses to return the capabilities + * + * @return array Array containing the apps capabilities + * @since 8.2.0 + */ + public function getCapabilities() { + $url = $this->urlGenerator->linkToRouteAbsolute('cloud_federation_api.requesthandlercontroller.addShare'); + $capabilities = ['ocm' => + [ + 'enabled' => true, + 'api-version' => '2.0-draft', + 'end-point' => substr($url, 0, strrpos($url, '/')), + ] + ]; + + return $capabilities; + } +} |