diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-09-30 13:44:53 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-10-12 08:04:15 +0200 |
commit | 8628d57b2cd9babcd29875fa7fcfc30f3de47acd (patch) | |
tree | 694588cece30bf3f62fb5b452eb2400f6e69ae4f /apps/encryption | |
parent | c2be9cb605886f5d9ab6642bf45c35ed5ebe2392 (diff) | |
download | nextcloud-server-8628d57b2cd9babcd29875fa7fcfc30f3de47acd.tar.gz nextcloud-server-8628d57b2cd9babcd29875fa7fcfc30f3de47acd.zip |
Move console command registration to info.xml for encryption as well as files_external
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/encryption')
-rw-r--r-- | apps/encryption/appinfo/info.xml | 4 | ||||
-rw-r--r-- | apps/encryption/appinfo/register_command.php | 38 | ||||
-rw-r--r-- | apps/encryption/lib/Command/MigrateKeys.php | 17 |
3 files changed, 12 insertions, 47 deletions
diff --git a/apps/encryption/appinfo/info.xml b/apps/encryption/appinfo/info.xml index 539f9f116d2..f6632b2ae92 100644 --- a/apps/encryption/appinfo/info.xml +++ b/apps/encryption/appinfo/info.xml @@ -30,4 +30,8 @@ <settings> <admin>OCA\Encryption\Settings\Admin</admin> </settings> + <commands> + <command>OCA\Encryption\Command\EnableMasterKey</command> + <command>OCA\Encryption\Command\MigrateKeys</command> + </commands> </info> diff --git a/apps/encryption/appinfo/register_command.php b/apps/encryption/appinfo/register_command.php deleted file mode 100644 index ced82d21a64..00000000000 --- a/apps/encryption/appinfo/register_command.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php -/** - * @copyright Copyright (c) 2016, ownCloud, Inc. - * - * @author Björn Schießle <bjoern@schiessle.org> - * - * @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/> - * - */ - -use OCA\Encryption\Command\MigrateKeys; -use Symfony\Component\Console\Helper\QuestionHelper; - -$userManager = OC::$server->getUserManager(); -$view = new \OC\Files\View(); -$config = \OC::$server->getConfig(); -$l = \OC::$server->getL10N('encryption'); -$userSession = \OC::$server->getUserSession(); -$connection = \OC::$server->getDatabaseConnection(); -$logger = \OC::$server->getLogger(); -$questionHelper = new QuestionHelper(); -$crypt = new \OCA\Encryption\Crypto\Crypt($logger, $userSession, $config, $l); -$util = new \OCA\Encryption\Util($view, $crypt, $logger, $userSession, $config, $userManager); - -$application->add(new MigrateKeys($userManager, $view, $connection, $config, $logger)); -$application->add(new \OCA\Encryption\Command\EnableMasterKey($util, $config, $questionHelper)); diff --git a/apps/encryption/lib/Command/MigrateKeys.php b/apps/encryption/lib/Command/MigrateKeys.php index c3935277661..1cdd76795d9 100644 --- a/apps/encryption/lib/Command/MigrateKeys.php +++ b/apps/encryption/lib/Command/MigrateKeys.php @@ -22,13 +22,13 @@ namespace OCA\Encryption\Command; -use OC\DB\Connection; use OC\Files\View; -use OC\User\Manager; use OCA\Encryption\Migration; use OCP\IConfig; +use OCP\IDBConnection; use OCP\ILogger; use OCP\IUserBackend; +use OCP\IUserManager; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; @@ -36,12 +36,11 @@ use Symfony\Component\Console\Output\OutputInterface; class MigrateKeys extends Command { - /** @var \OC\User\Manager */ + /** @var IUserManager */ private $userManager; - /** @var View */ private $view; - /** @var \OC\DB\Connection */ + /** @var IDBConnection */ private $connection; /** @var IConfig */ private $config; @@ -49,15 +48,15 @@ class MigrateKeys extends Command { private $logger; /** - * @param Manager $userManager + * @param IUserManager $userManager * @param View $view - * @param Connection $connection + * @param IDBConnection $connection * @param IConfig $config * @param ILogger $logger */ - public function __construct(Manager $userManager, + public function __construct(IUserManager $userManager, View $view, - Connection $connection, + IDBConnection $connection, IConfig $config, ILogger $logger) { |