2015-06-27 19:23:49 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-06-27 19:23:49 +03:00
|
|
|
*
|
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-06-27 19:23:49 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-05-19 12:09:38 +03:00
|
|
|
namespace OC\OCS;
|
|
|
|
|
2015-06-27 19:23:49 +03:00
|
|
|
class Provider extends \OCP\AppFramework\Controller {
|
|
|
|
/** @var \OCP\App\IAppManager */
|
|
|
|
private $appManager;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $appName
|
|
|
|
* @param \OCP\IRequest $request
|
|
|
|
* @param \OCP\App\IAppManager $appManager
|
|
|
|
*/
|
|
|
|
public function __construct($appName,
|
|
|
|
\OCP\IRequest $request,
|
|
|
|
\OCP\App\IAppManager $appManager) {
|
|
|
|
parent::__construct($appName, $request);
|
|
|
|
$this->appManager = $appManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \OCP\AppFramework\Http\JSONResponse
|
|
|
|
*/
|
|
|
|
public function buildProviderList() {
|
|
|
|
$services = [
|
|
|
|
'PRIVATE_DATA' => [
|
|
|
|
'version' => 1,
|
|
|
|
'endpoints' => [
|
2015-10-13 17:41:58 +03:00
|
|
|
'store' => '/ocs/v2.php/privatedata/setattribute',
|
|
|
|
'read' => '/ocs/v2.php/privatedata/getattribute',
|
|
|
|
'delete' => '/ocs/v2.php/privatedata/deleteattribute',
|
2015-06-27 19:23:49 +03:00
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($this->appManager->isEnabledForUser('files_sharing')) {
|
2015-06-27 19:23:49 +03:00
|
|
|
$services['SHARING'] = [
|
|
|
|
'version' => 1,
|
|
|
|
'endpoints' => [
|
2015-10-13 17:41:58 +03:00
|
|
|
'share' => '/ocs/v2.php/apps/files_sharing/api/v1/shares',
|
2015-06-27 19:23:49 +03:00
|
|
|
],
|
|
|
|
];
|
|
|
|
$services['FEDERATED_SHARING'] = [
|
|
|
|
'version' => 1,
|
|
|
|
'endpoints' => [
|
2015-10-13 17:41:58 +03:00
|
|
|
'share' => '/ocs/v2.php/cloud/shares',
|
2015-06-27 19:23:49 +03:00
|
|
|
'webdav' => '/public.php/webdav/',
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2017-02-24 13:02:34 +03:00
|
|
|
if ($this->appManager->isEnabledForUser('federation')) {
|
|
|
|
if (isset($services['FEDERATED_SHARING'])) {
|
|
|
|
$services['FEDERATED_SHARING']['endpoints']['shared-secret'] = '/ocs/v2.php/cloud/shared-secret';
|
|
|
|
$services['FEDERATED_SHARING']['endpoints']['system-address-book'] = '/remote.php/dav/addressbooks/system/system/system';
|
|
|
|
$services['FEDERATED_SHARING']['endpoints']['carddav-user'] = 'system';
|
|
|
|
} else {
|
|
|
|
$services['FEDERATED_SHARING'] = [
|
|
|
|
'version' => 1,
|
|
|
|
'endpoints' => [
|
|
|
|
'shared-secret' => '/ocs/v2.php/cloud/shared-secret',
|
|
|
|
'system-address-book' => '/remote.php/dav/addressbooks/system/system/system',
|
|
|
|
'carddav-user' => 'system'
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($this->appManager->isEnabledForUser('activity')) {
|
2015-06-27 19:23:49 +03:00
|
|
|
$services['ACTIVITY'] = [
|
|
|
|
'version' => 1,
|
|
|
|
'endpoints' => [
|
2015-10-13 17:41:58 +03:00
|
|
|
'list' => '/ocs/v2.php/cloud/activity',
|
2015-06-27 19:23:49 +03:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($this->appManager->isEnabledForUser('provisioning_api')) {
|
2015-06-27 19:23:49 +03:00
|
|
|
$services['PROVISIONING'] = [
|
|
|
|
'version' => 1,
|
|
|
|
'endpoints' => [
|
2015-10-13 17:41:58 +03:00
|
|
|
'user' => '/ocs/v2.php/cloud/users',
|
|
|
|
'groups' => '/ocs/v2.php/cloud/groups',
|
|
|
|
'apps' => '/ocs/v2.php/cloud/apps',
|
2015-06-27 19:23:49 +03:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2016-02-25 21:05:05 +03:00
|
|
|
return new \OCP\AppFramework\Http\JSONResponse([
|
|
|
|
'version' => 2,
|
|
|
|
'services' => $services,
|
|
|
|
]);
|
2015-06-27 19:23:49 +03:00
|
|
|
}
|
2015-10-13 17:41:58 +03:00
|
|
|
}
|