Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-05-19 12:09:38 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2016-05-19 12:10:32 +0300
commit20f229eed966b08d5aa7b8bc5e9c929c8e5a7e3b (patch)
treeb28376865b65462c3ce854a652ab11485de21a96 /ocs-provider
parent7ca5b35379144d868a36f10c237c78de56f4ed5a (diff)
Move OCS Provider to PSR-4 namespace
Diffstat (limited to 'ocs-provider')
-rw-r--r--ocs-provider/index.php3
-rw-r--r--ocs-provider/provider.php94
2 files changed, 1 insertions, 96 deletions
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 @@
-<?php
-/**
- * @author Lukas Reschke <lukas@owncloud.com>
- *
- * @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 <http://www.gnu.org/licenses/>
- *
- */
-
-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,
- ]);
- }
-}