From 8628d57b2cd9babcd29875fa7fcfc30f3de47acd Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Fri, 30 Sep 2016 13:44:53 +0200 Subject: Move console command registration to info.xml for encryption as well as files_external Signed-off-by: Roeland Jago Douma --- apps/files_external/appinfo/info.xml | 13 +++++ apps/files_external/appinfo/register_command.php | 60 ------------------------ 2 files changed, 13 insertions(+), 60 deletions(-) delete mode 100644 apps/files_external/appinfo/register_command.php (limited to 'apps/files_external/appinfo') diff --git a/apps/files_external/appinfo/info.xml b/apps/files_external/appinfo/info.xml index f99ef3b6c49..21e28134688 100644 --- a/apps/files_external/appinfo/info.xml +++ b/apps/files_external/appinfo/info.xml @@ -29,4 +29,17 @@ OCA\Files_External\Settings\Admin OCA\Files_External\Settings\Section + + + OCA\Files_External\Command\ListCommand + OCA\Files_External\Command\Config + OCA\Files_External\Command\Option + OCA\Files_External\Command\Applicable + OCA\Files_External\Command\Import + OCA\Files_External\Command\Export + OCA\Files_External\Command\Delete + OCA\Files_External\Command\Create + OCA\Files_External\Command\Backends + OCA\Files_External\Command\Verify + diff --git a/apps/files_external/appinfo/register_command.php b/apps/files_external/appinfo/register_command.php deleted file mode 100644 index 614f0c0a97a..00000000000 --- a/apps/files_external/appinfo/register_command.php +++ /dev/null @@ -1,60 +0,0 @@ - - * @author Robin Appelman - * - * @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 - * - */ - - -use OCA\Files_External\Command\ListCommand; -use OCA\Files_External\Command\Config; -use OCA\Files_External\Command\Option; -use OCA\Files_External\Command\Applicable; -use OCA\Files_External\Command\Import; -use OCA\Files_External\Command\Export; -use OCA\Files_External\Command\Delete; -use OCA\Files_External\Command\Create; -use OCA\Files_External\Command\Backends; -use OCA\Files_External\Command\Verify; -use OCA\Files_External\Command\Notify; - -$userManager = OC::$server->getUserManager(); -$userSession = OC::$server->getUserSession(); -$groupManager = OC::$server->getGroupManager(); - -$app = \OC_Mount_Config::$app; - -$globalStorageService = $app->getContainer()->query('\OCA\Files_External\Service\GlobalStoragesService'); -$userStorageService = $app->getContainer()->query('\OCA\Files_External\Service\UserStoragesService'); -$importLegacyStorageService = $app->getContainer()->query('\OCA\Files_External\Service\ImportLegacyStoragesService'); -$backendService = $app->getContainer()->query('OCA\Files_External\Service\BackendService'); -$connection = $app->getContainer()->getServer()->getDatabaseConnection(); - -/** @var Symfony\Component\Console\Application $application */ -$application->add(new ListCommand($globalStorageService, $userStorageService, $userSession, $userManager)); -$application->add(new Config($globalStorageService)); -$application->add(new Option($globalStorageService)); -$application->add(new Applicable($globalStorageService, $userManager, $groupManager)); -$application->add(new Import($globalStorageService, $userStorageService, $userSession, $userManager, $importLegacyStorageService, $backendService)); -$application->add(new Export($globalStorageService, $userStorageService, $userSession, $userManager)); -$application->add(new Delete($globalStorageService, $userStorageService, $userSession, $userManager)); -$application->add(new Create($globalStorageService, $userStorageService, $userManager, $userSession, $backendService)); -$application->add(new Backends($backendService)); -$application->add(new Verify($globalStorageService)); -$application->add(new Notify($globalStorageService, $connection)); -- cgit v1.2.3