2015-11-18 17:59:50 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2020-08-24 15:54:25 +03:00
|
|
|
* @author Daniel Kesselberg <mail@danielkesselberg.de>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-11-18 17:59:50 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Files_External\Command;
|
|
|
|
|
2015-11-23 13:36:20 +03:00
|
|
|
use OC\Core\Command\Base;
|
2016-01-18 13:35:34 +03:00
|
|
|
use OC\User\NoUserException;
|
2016-05-13 12:56:47 +03:00
|
|
|
use OCA\Files_External\Lib\StorageConfig;
|
2016-05-13 12:22:28 +03:00
|
|
|
use OCA\Files_External\Service\GlobalStoragesService;
|
|
|
|
use OCA\Files_External\Service\UserStoragesService;
|
2015-11-18 17:59:50 +03:00
|
|
|
use OCP\IUserManager;
|
|
|
|
use OCP\IUserSession;
|
|
|
|
use Symfony\Component\Console\Helper\Table;
|
|
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
2015-11-23 13:36:20 +03:00
|
|
|
class ListCommand extends Base {
|
2015-11-18 17:59:50 +03:00
|
|
|
/**
|
|
|
|
* @var GlobalStoragesService
|
|
|
|
*/
|
2016-01-18 13:35:34 +03:00
|
|
|
protected $globalService;
|
2015-11-18 17:59:50 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var UserStoragesService
|
|
|
|
*/
|
2016-01-18 13:35:34 +03:00
|
|
|
protected $userService;
|
2015-11-18 17:59:50 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var IUserSession
|
|
|
|
*/
|
2016-01-18 13:35:34 +03:00
|
|
|
protected $userSession;
|
2015-11-18 17:59:50 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var IUserManager
|
|
|
|
*/
|
2016-01-18 13:35:34 +03:00
|
|
|
protected $userManager;
|
2015-11-18 17:59:50 +03:00
|
|
|
|
2020-04-10 17:54:27 +03:00
|
|
|
public const ALL = -1;
|
2016-06-17 14:29:29 +03:00
|
|
|
|
2020-04-10 17:51:06 +03:00
|
|
|
public function __construct(GlobalStoragesService $globalService, UserStoragesService $userService, IUserSession $userSession, IUserManager $userManager) {
|
2015-11-18 17:59:50 +03:00
|
|
|
parent::__construct();
|
|
|
|
$this->globalService = $globalService;
|
|
|
|
$this->userService = $userService;
|
|
|
|
$this->userSession = $userSession;
|
|
|
|
$this->userManager = $userManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function configure() {
|
|
|
|
$this
|
|
|
|
->setName('files_external:list')
|
2016-06-17 14:29:29 +03:00
|
|
|
->setDescription('List configured admin or personal mounts')
|
2015-11-18 17:59:50 +03:00
|
|
|
->addArgument(
|
|
|
|
'user_id',
|
|
|
|
InputArgument::OPTIONAL,
|
|
|
|
'user id to list the personal mounts for, if no user is provided admin mounts will be listed'
|
2015-11-23 14:24:24 +03:00
|
|
|
)->addOption(
|
|
|
|
'show-password',
|
2017-07-19 21:32:54 +03:00
|
|
|
'',
|
2015-11-23 14:24:24 +03:00
|
|
|
InputOption::VALUE_NONE,
|
|
|
|
'show passwords and secrets'
|
2015-11-23 14:29:20 +03:00
|
|
|
)->addOption(
|
|
|
|
'full',
|
|
|
|
null,
|
|
|
|
InputOption::VALUE_NONE,
|
2015-11-23 15:08:53 +03:00
|
|
|
'don\'t truncate long values in table output'
|
2016-06-17 14:29:29 +03:00
|
|
|
)->addOption(
|
|
|
|
'all',
|
|
|
|
'a',
|
|
|
|
InputOption::VALUE_NONE,
|
|
|
|
'show both system wide mounts and all personal mounts'
|
2015-11-23 13:36:20 +03:00
|
|
|
);
|
|
|
|
parent::configure();
|
2015-11-18 17:59:50 +03:00
|
|
|
}
|
|
|
|
|
2020-06-26 16:12:11 +03:00
|
|
|
protected function execute(InputInterface $input, OutputInterface $output): int {
|
2020-08-14 16:10:48 +03:00
|
|
|
/** @var StorageConfig[] $mounts */
|
2016-06-17 14:29:29 +03:00
|
|
|
if ($input->getOption('all')) {
|
|
|
|
$mounts = $this->globalService->getStorageForAllUsers();
|
|
|
|
$userId = self::ALL;
|
|
|
|
} else {
|
|
|
|
$userId = $input->getArgument('user_id');
|
|
|
|
$storageService = $this->getStorageService($userId);
|
|
|
|
$mounts = $storageService->getAllStorages();
|
|
|
|
}
|
2015-11-18 17:59:50 +03:00
|
|
|
|
2015-12-29 15:26:33 +03:00
|
|
|
$this->listMounts($userId, $mounts, $input, $output);
|
2020-06-26 16:12:11 +03:00
|
|
|
return 0;
|
2015-12-29 15:26:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-08-14 16:10:48 +03:00
|
|
|
* @param string $userId
|
2015-12-29 15:26:33 +03:00
|
|
|
* @param StorageConfig[] $mounts
|
|
|
|
* @param InputInterface $input
|
|
|
|
* @param OutputInterface $output
|
|
|
|
*/
|
2016-06-17 14:29:29 +03:00
|
|
|
public function listMounts($userId, array $mounts, InputInterface $input, OutputInterface $output) {
|
2016-01-18 13:35:34 +03:00
|
|
|
$outputType = $input->getOption('output');
|
2015-11-18 17:59:50 +03:00
|
|
|
if (count($mounts) === 0) {
|
2016-01-18 13:35:34 +03:00
|
|
|
if ($outputType === self::OUTPUT_FORMAT_JSON || $outputType === self::OUTPUT_FORMAT_JSON_PRETTY) {
|
|
|
|
$output->writeln('[]');
|
2015-11-18 17:59:50 +03:00
|
|
|
} else {
|
2016-06-17 14:29:29 +03:00
|
|
|
if ($userId === self::ALL) {
|
|
|
|
$output->writeln("<info>No mounts configured</info>");
|
2020-04-10 11:35:09 +03:00
|
|
|
} elseif ($userId) {
|
2016-01-18 13:35:34 +03:00
|
|
|
$output->writeln("<info>No mounts configured by $userId</info>");
|
|
|
|
} else {
|
|
|
|
$output->writeln("<info>No admin mounts configured</info>");
|
|
|
|
}
|
2015-11-18 17:59:50 +03:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$headers = ['Mount ID', 'Mount Point', 'Storage', 'Authentication Type', 'Configuration', 'Options'];
|
|
|
|
|
2016-06-17 14:29:29 +03:00
|
|
|
if (!$userId || $userId === self::ALL) {
|
2015-11-18 17:59:50 +03:00
|
|
|
$headers[] = 'Applicable Users';
|
|
|
|
$headers[] = 'Applicable Groups';
|
|
|
|
}
|
2016-06-17 14:29:29 +03:00
|
|
|
if ($userId === self::ALL) {
|
|
|
|
$headers[] = 'Type';
|
|
|
|
}
|
2015-11-18 17:59:50 +03:00
|
|
|
|
2015-11-23 14:24:24 +03:00
|
|
|
if (!$input->getOption('show-password')) {
|
|
|
|
$hideKeys = ['password', 'refresh_token', 'token', 'client_secret', 'public_key', 'private_key'];
|
|
|
|
foreach ($mounts as $mount) {
|
|
|
|
$config = $mount->getBackendOptions();
|
|
|
|
foreach ($config as $key => $value) {
|
|
|
|
if (in_array($key, $hideKeys)) {
|
|
|
|
$mount->setBackendOption($key, '***');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-23 13:36:20 +03:00
|
|
|
if ($outputType === self::OUTPUT_FORMAT_JSON || $outputType === self::OUTPUT_FORMAT_JSON_PRETTY) {
|
2015-11-18 17:59:50 +03:00
|
|
|
$keys = array_map(function ($header) {
|
|
|
|
return strtolower(str_replace(' ', '_', $header));
|
|
|
|
}, $headers);
|
|
|
|
|
|
|
|
$pairs = array_map(function (StorageConfig $config) use ($keys, $userId) {
|
|
|
|
$values = [
|
|
|
|
$config->getId(),
|
|
|
|
$config->getMountPoint(),
|
|
|
|
$config->getBackend()->getStorageClass(),
|
2016-01-18 14:04:37 +03:00
|
|
|
$config->getAuthMechanism()->getIdentifier(),
|
2015-11-18 17:59:50 +03:00
|
|
|
$config->getBackendOptions(),
|
|
|
|
$config->getMountOptions()
|
|
|
|
];
|
2016-06-17 14:29:29 +03:00
|
|
|
if (!$userId || $userId === self::ALL) {
|
2015-11-18 17:59:50 +03:00
|
|
|
$values[] = $config->getApplicableUsers();
|
|
|
|
$values[] = $config->getApplicableGroups();
|
|
|
|
}
|
2016-06-17 14:29:29 +03:00
|
|
|
if ($userId === self::ALL) {
|
|
|
|
$values[] = $config->getType() === StorageConfig::MOUNT_TYPE_ADMIN ? 'admin' : 'personal';
|
|
|
|
}
|
2015-11-18 17:59:50 +03:00
|
|
|
|
|
|
|
return array_combine($keys, $values);
|
|
|
|
}, $mounts);
|
2015-11-23 13:36:20 +03:00
|
|
|
if ($outputType === self::OUTPUT_FORMAT_JSON) {
|
|
|
|
$output->writeln(json_encode(array_values($pairs)));
|
|
|
|
} else {
|
|
|
|
$output->writeln(json_encode(array_values($pairs), JSON_PRETTY_PRINT));
|
|
|
|
}
|
2015-11-18 17:59:50 +03:00
|
|
|
} else {
|
2015-11-23 14:29:20 +03:00
|
|
|
$full = $input->getOption('full');
|
2015-11-18 17:59:50 +03:00
|
|
|
$defaultMountOptions = [
|
|
|
|
'encrypt' => true,
|
|
|
|
'previews' => true,
|
2016-06-22 14:34:55 +03:00
|
|
|
'filesystem_check_changes' => 1,
|
|
|
|
'enable_sharing' => false,
|
2018-02-27 16:06:14 +03:00
|
|
|
'encoding_compatibility' => false,
|
|
|
|
'readonly' => false,
|
2015-11-18 17:59:50 +03:00
|
|
|
];
|
2015-11-23 14:29:20 +03:00
|
|
|
$rows = array_map(function (StorageConfig $config) use ($userId, $defaultMountOptions, $full) {
|
2015-11-18 17:59:50 +03:00
|
|
|
$storageConfig = $config->getBackendOptions();
|
|
|
|
$keys = array_keys($storageConfig);
|
|
|
|
$values = array_values($storageConfig);
|
|
|
|
|
2015-11-23 14:29:20 +03:00
|
|
|
if (!$full) {
|
|
|
|
$values = array_map(function ($value) {
|
|
|
|
if (is_string($value) && strlen($value) > 32) {
|
|
|
|
return substr($value, 0, 6) . '...' . substr($value, -6, 6);
|
|
|
|
} else {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}, $values);
|
|
|
|
}
|
|
|
|
|
2015-11-18 17:59:50 +03:00
|
|
|
$configStrings = array_map(function ($key, $value) {
|
|
|
|
return $key . ': ' . json_encode($value);
|
|
|
|
}, $keys, $values);
|
|
|
|
$configString = implode(', ', $configStrings);
|
|
|
|
|
|
|
|
$mountOptions = $config->getMountOptions();
|
|
|
|
// hide defaults
|
|
|
|
foreach ($mountOptions as $key => $value) {
|
|
|
|
if ($value === $defaultMountOptions[$key]) {
|
|
|
|
unset($mountOptions[$key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$keys = array_keys($mountOptions);
|
|
|
|
$values = array_values($mountOptions);
|
|
|
|
|
|
|
|
$optionsStrings = array_map(function ($key, $value) {
|
|
|
|
return $key . ': ' . json_encode($value);
|
|
|
|
}, $keys, $values);
|
|
|
|
$optionsString = implode(', ', $optionsStrings);
|
|
|
|
|
|
|
|
$values = [
|
|
|
|
$config->getId(),
|
|
|
|
$config->getMountPoint(),
|
|
|
|
$config->getBackend()->getText(),
|
|
|
|
$config->getAuthMechanism()->getText(),
|
|
|
|
$configString,
|
|
|
|
$optionsString
|
|
|
|
];
|
|
|
|
|
2016-06-17 14:29:29 +03:00
|
|
|
if (!$userId || $userId === self::ALL) {
|
2015-11-18 17:59:50 +03:00
|
|
|
$applicableUsers = implode(', ', $config->getApplicableUsers());
|
|
|
|
$applicableGroups = implode(', ', $config->getApplicableGroups());
|
|
|
|
if ($applicableUsers === '' && $applicableGroups === '') {
|
|
|
|
$applicableUsers = 'All';
|
|
|
|
}
|
|
|
|
$values[] = $applicableUsers;
|
|
|
|
$values[] = $applicableGroups;
|
|
|
|
}
|
2016-06-17 14:29:29 +03:00
|
|
|
if ($userId === self::ALL) {
|
|
|
|
$values[] = $config->getType() === StorageConfig::MOUNT_TYPE_ADMIN ? 'Admin' : 'Personal';
|
|
|
|
}
|
2015-11-18 17:59:50 +03:00
|
|
|
|
|
|
|
return $values;
|
|
|
|
}, $mounts);
|
|
|
|
|
|
|
|
$table = new Table($output);
|
|
|
|
$table->setHeaders($headers);
|
|
|
|
$table->setRows($rows);
|
|
|
|
$table->render();
|
|
|
|
}
|
|
|
|
}
|
2016-01-18 13:35:34 +03:00
|
|
|
|
|
|
|
protected function getStorageService($userId) {
|
|
|
|
if (!empty($userId)) {
|
|
|
|
$user = $this->userManager->get($userId);
|
|
|
|
if (is_null($user)) {
|
|
|
|
throw new NoUserException("user $userId not found");
|
|
|
|
}
|
|
|
|
$this->userSession->setUser($user);
|
|
|
|
return $this->userService;
|
|
|
|
} else {
|
|
|
|
return $this->globalService;
|
|
|
|
}
|
|
|
|
}
|
2015-11-18 17:59:50 +03:00
|
|
|
}
|