From 20f229eed966b08d5aa7b8bc5e9c929c8e5a7e3b Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 19 May 2016 11:09:38 +0200 Subject: Move OCS Provider to PSR-4 namespace --- ocs-provider/index.php | 3 +- ocs-provider/provider.php | 94 ----------------------------------------------- 2 files changed, 1 insertion(+), 96 deletions(-) delete mode 100644 ocs-provider/provider.php (limited to 'ocs-provider') diff --git a/ocs-provider/index.php b/ocs-provider/index.php index 316b39cace8..20e27e38ce7 100644 --- a/ocs-provider/index.php +++ b/ocs-provider/index.php @@ -20,13 +20,12 @@ */ require_once('../lib/base.php'); -require_once(__DIR__ . '/provider.php'); header('Content-Type: application/json'); $server = \OC::$server; -$controller = new Provider( +$controller = new \OC\OCS\Provider( 'ocs_provider', $server->getRequest(), $server->getAppManager() diff --git a/ocs-provider/provider.php b/ocs-provider/provider.php deleted file mode 100644 index 396b5b23fc6..00000000000 --- a/ocs-provider/provider.php +++ /dev/null @@ -1,94 +0,0 @@ - - * - * @copyright Copyright (c) 2015, ownCloud, Inc. - * @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, - * along with this program. If not, see - * - */ - -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' => [ - 'store' => '/ocs/v2.php/privatedata/setattribute', - 'read' => '/ocs/v2.php/privatedata/getattribute', - 'delete' => '/ocs/v2.php/privatedata/deleteattribute', - ], - ], - ]; - - if($this->appManager->isEnabledForUser('files_sharing')) { - $services['SHARING'] = [ - 'version' => 1, - 'endpoints' => [ - 'share' => '/ocs/v2.php/apps/files_sharing/api/v1/shares', - ], - ]; - $services['FEDERATED_SHARING'] = [ - 'version' => 1, - 'endpoints' => [ - 'share' => '/ocs/v2.php/cloud/shares', - 'webdav' => '/public.php/webdav/', - ], - ]; - } - - if($this->appManager->isEnabledForUser('activity')) { - $services['ACTIVITY'] = [ - 'version' => 1, - 'endpoints' => [ - 'list' => '/ocs/v2.php/cloud/activity', - ], - ]; - } - - if($this->appManager->isEnabledForUser('provisioning_api')) { - $services['PROVISIONING'] = [ - 'version' => 1, - 'endpoints' => [ - 'user' => '/ocs/v2.php/cloud/users', - 'groups' => '/ocs/v2.php/cloud/groups', - 'apps' => '/ocs/v2.php/cloud/apps', - ], - ]; - } - - return new \OCP\AppFramework\Http\JSONResponse([ - 'version' => 2, - 'services' => $services, - ]); - } -} -- cgit v1.2.3