2015-11-18 17:59:50 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2015-11-18 17:59:50 +03:00
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-11-18 17:59:50 +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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
use OCA\Files_External\Command\ListCommand;
|
2015-11-24 17:53:02 +03:00
|
|
|
use OCA\Files_External\Command\Config;
|
2015-11-25 18:25:45 +03:00
|
|
|
use OCA\Files_External\Command\Option;
|
2015-12-29 15:26:33 +03:00
|
|
|
use \OCA\Files_External\Command\Import;
|
2015-11-18 17:59:50 +03:00
|
|
|
|
|
|
|
$userManager = OC::$server->getUserManager();
|
|
|
|
$userSession = OC::$server->getUserSession();
|
|
|
|
|
|
|
|
$app = \OC_Mount_Config::$app;
|
|
|
|
|
|
|
|
$globalStorageService = $app->getContainer()->query('\OCA\Files_external\Service\GlobalStoragesService');
|
|
|
|
$userStorageService = $app->getContainer()->query('\OCA\Files_external\Service\UserStoragesService');
|
2015-12-29 15:26:33 +03:00
|
|
|
$importLegacyStorageService = $app->getContainer()->query('\OCA\Files_external\Service\ImportLegacyStoragesService');
|
|
|
|
$backendService = $app->getContainer()->query('OCA\Files_External\Service\BackendService');
|
2015-11-18 17:59:50 +03:00
|
|
|
|
|
|
|
/** @var Symfony\Component\Console\Application $application */
|
|
|
|
$application->add(new ListCommand($globalStorageService, $userStorageService, $userSession, $userManager));
|
2015-11-25 18:25:45 +03:00
|
|
|
$application->add(new Config($globalStorageService));
|
|
|
|
$application->add(new Option($globalStorageService));
|
2015-12-29 15:26:33 +03:00
|
|
|
$application->add(new Import($globalStorageService, $userStorageService, $userSession, $userManager, $importLegacyStorageService, $backendService));
|