Show group backends in occ group:list --info and group:info
Signed-off-by: Johannes Leuker <j.leuker@hosting.de>
This commit is contained in:
parent
9fd72b0d3a
commit
2796ef80ff
|
@ -28,9 +28,10 @@
|
||||||
|
|
||||||
namespace OCA\User_LDAP;
|
namespace OCA\User_LDAP;
|
||||||
|
|
||||||
|
use OCP\Group\Backend\INamedBackend;
|
||||||
use OCP\Group\Backend\IGetDisplayNameBackend;
|
use OCP\Group\Backend\IGetDisplayNameBackend;
|
||||||
|
|
||||||
class Group_Proxy extends Proxy implements \OCP\GroupInterface, IGroupLDAP, IGetDisplayNameBackend {
|
class Group_Proxy extends Proxy implements \OCP\GroupInterface, IGroupLDAP, IGetDisplayNameBackend, INamedBackend {
|
||||||
private $backends = [];
|
private $backends = [];
|
||||||
private $refBackend = null;
|
private $refBackend = null;
|
||||||
|
|
||||||
|
@ -298,4 +299,13 @@ class Group_Proxy extends Proxy implements \OCP\GroupInterface, IGroupLDAP, IGet
|
||||||
public function getDisplayName(string $gid): string {
|
public function getDisplayName(string $gid): string {
|
||||||
return $this->handleRequest($gid, 'getDisplayName', [$gid]);
|
return $this->handleRequest($gid, 'getDisplayName', [$gid]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Backend name to be shown in group management
|
||||||
|
* @return string the name of the backend to be shown
|
||||||
|
* @since 22.0.0
|
||||||
|
*/
|
||||||
|
public function getBackendName(): string {
|
||||||
|
return 'LDAP';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,83 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @copyright Copyright (c) 2021, hosting.de, Johannes Leuker <j.leuker@hosting.de>
|
||||||
|
*
|
||||||
|
* @author Johannes Leuker <j.leuker@hosting.de>
|
||||||
|
*
|
||||||
|
* @license GNU AGPL version 3 or any later version
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace OC\Core\Command\Group;
|
||||||
|
|
||||||
|
use OC\Core\Command\Base;
|
||||||
|
use OCP\IGroup;
|
||||||
|
use OCP\IGroupManager;
|
||||||
|
use Symfony\Component\Console\Input\InputArgument;
|
||||||
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
use Symfony\Component\Console\Input\InputOption;
|
||||||
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
|
||||||
|
class Info extends Base {
|
||||||
|
/** @var IGroupManager */
|
||||||
|
protected $groupManager;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param IGroupManager $groupManager
|
||||||
|
*/
|
||||||
|
public function __construct(IGroupManager $groupManager) {
|
||||||
|
$this->groupManager = $groupManager;
|
||||||
|
parent::__construct();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function configure() {
|
||||||
|
$this
|
||||||
|
->setName('group:info')
|
||||||
|
->setDescription('Show information about a group')
|
||||||
|
->addArgument(
|
||||||
|
'groupid',
|
||||||
|
InputArgument::REQUIRED,
|
||||||
|
'Group id'
|
||||||
|
)->addOption(
|
||||||
|
'output',
|
||||||
|
null,
|
||||||
|
InputOption::VALUE_OPTIONAL,
|
||||||
|
'Output format (plain, json or json_pretty, default is plain)',
|
||||||
|
$this->defaultOutputFormat
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function execute(InputInterface $input, OutputInterface $output): int {
|
||||||
|
$gid = $input->getArgument('groupid');
|
||||||
|
$group = $this->groupManager->get($gid);
|
||||||
|
if (!$group instanceof IGroup) {
|
||||||
|
$output->writeln('<error>Group "' . $gid . '" does not exist.</error>');
|
||||||
|
return 1;
|
||||||
|
} else {
|
||||||
|
$groupOutput = [
|
||||||
|
'groupID' => $gid,
|
||||||
|
'displayName' => $group->getDisplayName(),
|
||||||
|
'backends' => $group->getBackendNames(),
|
||||||
|
];
|
||||||
|
|
||||||
|
$this->writeArrayInOutputFormat($input, $output, $groupOutput);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -59,6 +59,11 @@ class ListCommand extends Base {
|
||||||
InputOption::VALUE_OPTIONAL,
|
InputOption::VALUE_OPTIONAL,
|
||||||
'Offset for retrieving groups',
|
'Offset for retrieving groups',
|
||||||
0
|
0
|
||||||
|
)->addOption(
|
||||||
|
'info',
|
||||||
|
'i',
|
||||||
|
InputOption::VALUE_NONE,
|
||||||
|
'Show additional info (backend)'
|
||||||
)->addOption(
|
)->addOption(
|
||||||
'output',
|
'output',
|
||||||
null,
|
null,
|
||||||
|
@ -70,7 +75,7 @@ class ListCommand extends Base {
|
||||||
|
|
||||||
protected function execute(InputInterface $input, OutputInterface $output): int {
|
protected function execute(InputInterface $input, OutputInterface $output): int {
|
||||||
$groups = $this->groupManager->search('', (int)$input->getOption('limit'), (int)$input->getOption('offset'));
|
$groups = $this->groupManager->search('', (int)$input->getOption('limit'), (int)$input->getOption('offset'));
|
||||||
$this->writeArrayInOutputFormat($input, $output, $this->formatGroups($groups));
|
$this->writeArrayInOutputFormat($input, $output, $this->formatGroups($groups, (bool)$input->getOption('info')));
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -78,13 +83,23 @@ class ListCommand extends Base {
|
||||||
* @param IGroup[] $groups
|
* @param IGroup[] $groups
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
private function formatGroups(array $groups) {
|
private function formatGroups(array $groups, bool $addInfo = false) {
|
||||||
$keys = array_map(function (IGroup $group) {
|
$keys = array_map(function (IGroup $group) {
|
||||||
return $group->getGID();
|
return $group->getGID();
|
||||||
}, $groups);
|
}, $groups);
|
||||||
$values = array_map(function (IGroup $group) {
|
|
||||||
return array_keys($group->getUsers());
|
if ($addInfo) {
|
||||||
}, $groups);
|
$values = array_map(function (IGroup $group) {
|
||||||
|
return [
|
||||||
|
'backends' => $group->getBackendNames(),
|
||||||
|
'users' => array_keys($group->getUsers()),
|
||||||
|
];
|
||||||
|
}, $groups);
|
||||||
|
} else {
|
||||||
|
$values = array_map(function (IGroup $group) {
|
||||||
|
return array_keys($group->getUsers());
|
||||||
|
}, $groups);
|
||||||
|
}
|
||||||
return array_combine($keys, $values);
|
return array_combine($keys, $values);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -186,6 +186,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) {
|
||||||
$application->add(new OC\Core\Command\Group\ListCommand(\OC::$server->getGroupManager()));
|
$application->add(new OC\Core\Command\Group\ListCommand(\OC::$server->getGroupManager()));
|
||||||
$application->add(new OC\Core\Command\Group\AddUser(\OC::$server->getUserManager(), \OC::$server->getGroupManager()));
|
$application->add(new OC\Core\Command\Group\AddUser(\OC::$server->getUserManager(), \OC::$server->getGroupManager()));
|
||||||
$application->add(new OC\Core\Command\Group\RemoveUser(\OC::$server->getUserManager(), \OC::$server->getGroupManager()));
|
$application->add(new OC\Core\Command\Group\RemoveUser(\OC::$server->getUserManager(), \OC::$server->getGroupManager()));
|
||||||
|
$application->add(new OC\Core\Command\Group\Info(\OC::$server->get(\OCP\IGroupManager::class)));
|
||||||
|
|
||||||
$application->add(new OC\Core\Command\Security\ListCertificates(\OC::$server->getCertificateManager(), \OC::$server->getL10N('core')));
|
$application->add(new OC\Core\Command\Security\ListCertificates(\OC::$server->getCertificateManager(), \OC::$server->getL10N('core')));
|
||||||
$application->add(new OC\Core\Command\Security\ImportCertificate(\OC::$server->getCertificateManager()));
|
$application->add(new OC\Core\Command\Security\ImportCertificate(\OC::$server->getCertificateManager()));
|
||||||
|
|
|
@ -351,6 +351,7 @@ return array(
|
||||||
'OCP\\Group\\Backend\\IGroupDetailsBackend' => $baseDir . '/lib/public/Group/Backend/IGroupDetailsBackend.php',
|
'OCP\\Group\\Backend\\IGroupDetailsBackend' => $baseDir . '/lib/public/Group/Backend/IGroupDetailsBackend.php',
|
||||||
'OCP\\Group\\Backend\\IHideFromCollaborationBackend' => $baseDir . '/lib/public/Group/Backend/IHideFromCollaborationBackend.php',
|
'OCP\\Group\\Backend\\IHideFromCollaborationBackend' => $baseDir . '/lib/public/Group/Backend/IHideFromCollaborationBackend.php',
|
||||||
'OCP\\Group\\Backend\\IIsAdminBackend' => $baseDir . '/lib/public/Group/Backend/IIsAdminBackend.php',
|
'OCP\\Group\\Backend\\IIsAdminBackend' => $baseDir . '/lib/public/Group/Backend/IIsAdminBackend.php',
|
||||||
|
'OCP\\Group\\Backend\\INamedBackend' => $baseDir . '/lib/public/Group/Backend/INamedBackend.php',
|
||||||
'OCP\\Group\\Backend\\IRemoveFromGroupBackend' => $baseDir . '/lib/public/Group/Backend/IRemoveFromGroupBackend.php',
|
'OCP\\Group\\Backend\\IRemoveFromGroupBackend' => $baseDir . '/lib/public/Group/Backend/IRemoveFromGroupBackend.php',
|
||||||
'OCP\\Group\\Backend\\ISetDisplayNameBackend' => $baseDir . '/lib/public/Group/Backend/ISetDisplayNameBackend.php',
|
'OCP\\Group\\Backend\\ISetDisplayNameBackend' => $baseDir . '/lib/public/Group/Backend/ISetDisplayNameBackend.php',
|
||||||
'OCP\\Group\\Events\\BeforeGroupCreatedEvent' => $baseDir . '/lib/public/Group/Events/BeforeGroupCreatedEvent.php',
|
'OCP\\Group\\Events\\BeforeGroupCreatedEvent' => $baseDir . '/lib/public/Group/Events/BeforeGroupCreatedEvent.php',
|
||||||
|
@ -833,6 +834,7 @@ return array(
|
||||||
'OC\\Core\\Command\\Group\\Add' => $baseDir . '/core/Command/Group/Add.php',
|
'OC\\Core\\Command\\Group\\Add' => $baseDir . '/core/Command/Group/Add.php',
|
||||||
'OC\\Core\\Command\\Group\\AddUser' => $baseDir . '/core/Command/Group/AddUser.php',
|
'OC\\Core\\Command\\Group\\AddUser' => $baseDir . '/core/Command/Group/AddUser.php',
|
||||||
'OC\\Core\\Command\\Group\\Delete' => $baseDir . '/core/Command/Group/Delete.php',
|
'OC\\Core\\Command\\Group\\Delete' => $baseDir . '/core/Command/Group/Delete.php',
|
||||||
|
'OC\\Core\\Command\\Group\\Info' => $baseDir . '/core/Command/Group/Info.php',
|
||||||
'OC\\Core\\Command\\Group\\ListCommand' => $baseDir . '/core/Command/Group/ListCommand.php',
|
'OC\\Core\\Command\\Group\\ListCommand' => $baseDir . '/core/Command/Group/ListCommand.php',
|
||||||
'OC\\Core\\Command\\Group\\RemoveUser' => $baseDir . '/core/Command/Group/RemoveUser.php',
|
'OC\\Core\\Command\\Group\\RemoveUser' => $baseDir . '/core/Command/Group/RemoveUser.php',
|
||||||
'OC\\Core\\Command\\Integrity\\CheckApp' => $baseDir . '/core/Command/Integrity/CheckApp.php',
|
'OC\\Core\\Command\\Integrity\\CheckApp' => $baseDir . '/core/Command/Integrity/CheckApp.php',
|
||||||
|
|
|
@ -380,6 +380,7 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c
|
||||||
'OCP\\Group\\Backend\\IGroupDetailsBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IGroupDetailsBackend.php',
|
'OCP\\Group\\Backend\\IGroupDetailsBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IGroupDetailsBackend.php',
|
||||||
'OCP\\Group\\Backend\\IHideFromCollaborationBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IHideFromCollaborationBackend.php',
|
'OCP\\Group\\Backend\\IHideFromCollaborationBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IHideFromCollaborationBackend.php',
|
||||||
'OCP\\Group\\Backend\\IIsAdminBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IIsAdminBackend.php',
|
'OCP\\Group\\Backend\\IIsAdminBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IIsAdminBackend.php',
|
||||||
|
'OCP\\Group\\Backend\\INamedBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/INamedBackend.php',
|
||||||
'OCP\\Group\\Backend\\IRemoveFromGroupBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IRemoveFromGroupBackend.php',
|
'OCP\\Group\\Backend\\IRemoveFromGroupBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/IRemoveFromGroupBackend.php',
|
||||||
'OCP\\Group\\Backend\\ISetDisplayNameBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/ISetDisplayNameBackend.php',
|
'OCP\\Group\\Backend\\ISetDisplayNameBackend' => __DIR__ . '/../../..' . '/lib/public/Group/Backend/ISetDisplayNameBackend.php',
|
||||||
'OCP\\Group\\Events\\BeforeGroupCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/BeforeGroupCreatedEvent.php',
|
'OCP\\Group\\Events\\BeforeGroupCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/Group/Events/BeforeGroupCreatedEvent.php',
|
||||||
|
@ -862,6 +863,7 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c
|
||||||
'OC\\Core\\Command\\Group\\Add' => __DIR__ . '/../../..' . '/core/Command/Group/Add.php',
|
'OC\\Core\\Command\\Group\\Add' => __DIR__ . '/../../..' . '/core/Command/Group/Add.php',
|
||||||
'OC\\Core\\Command\\Group\\AddUser' => __DIR__ . '/../../..' . '/core/Command/Group/AddUser.php',
|
'OC\\Core\\Command\\Group\\AddUser' => __DIR__ . '/../../..' . '/core/Command/Group/AddUser.php',
|
||||||
'OC\\Core\\Command\\Group\\Delete' => __DIR__ . '/../../..' . '/core/Command/Group/Delete.php',
|
'OC\\Core\\Command\\Group\\Delete' => __DIR__ . '/../../..' . '/core/Command/Group/Delete.php',
|
||||||
|
'OC\\Core\\Command\\Group\\Info' => __DIR__ . '/../../..' . '/core/Command/Group/Info.php',
|
||||||
'OC\\Core\\Command\\Group\\ListCommand' => __DIR__ . '/../../..' . '/core/Command/Group/ListCommand.php',
|
'OC\\Core\\Command\\Group\\ListCommand' => __DIR__ . '/../../..' . '/core/Command/Group/ListCommand.php',
|
||||||
'OC\\Core\\Command\\Group\\RemoveUser' => __DIR__ . '/../../..' . '/core/Command/Group/RemoveUser.php',
|
'OC\\Core\\Command\\Group\\RemoveUser' => __DIR__ . '/../../..' . '/core/Command/Group/RemoveUser.php',
|
||||||
'OC\\Core\\Command\\Integrity\\CheckApp' => __DIR__ . '/../../..' . '/core/Command/Integrity/CheckApp.php',
|
'OC\\Core\\Command\\Integrity\\CheckApp' => __DIR__ . '/../../..' . '/core/Command/Integrity/CheckApp.php',
|
||||||
|
|
|
@ -55,6 +55,7 @@ use OCP\Group\Backend\IGetDisplayNameBackend;
|
||||||
use OCP\Group\Backend\IGroupDetailsBackend;
|
use OCP\Group\Backend\IGroupDetailsBackend;
|
||||||
use OCP\Group\Backend\IRemoveFromGroupBackend;
|
use OCP\Group\Backend\IRemoveFromGroupBackend;
|
||||||
use OCP\Group\Backend\ISetDisplayNameBackend;
|
use OCP\Group\Backend\ISetDisplayNameBackend;
|
||||||
|
use OCP\Group\Backend\INamedBackend;
|
||||||
use OCP\IDBConnection;
|
use OCP\IDBConnection;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -69,7 +70,8 @@ class Database extends ABackend implements
|
||||||
IGetDisplayNameBackend,
|
IGetDisplayNameBackend,
|
||||||
IGroupDetailsBackend,
|
IGroupDetailsBackend,
|
||||||
IRemoveFromGroupBackend,
|
IRemoveFromGroupBackend,
|
||||||
ISetDisplayNameBackend {
|
ISetDisplayNameBackend,
|
||||||
|
INamedBackend {
|
||||||
|
|
||||||
/** @var string[] */
|
/** @var string[] */
|
||||||
private $groupCache = [];
|
private $groupCache = [];
|
||||||
|
@ -502,4 +504,13 @@ class Database extends ABackend implements
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Backend name to be shown in group management
|
||||||
|
* @return string the name of the backend to be shown
|
||||||
|
* @since 21.0.0
|
||||||
|
*/
|
||||||
|
public function getBackendName(): string {
|
||||||
|
return 'Database';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,6 +36,7 @@ use OC\Hooks\PublicEmitter;
|
||||||
use OCP\Group\Backend\ICountDisabledInGroup;
|
use OCP\Group\Backend\ICountDisabledInGroup;
|
||||||
use OCP\Group\Backend\IGetDisplayNameBackend;
|
use OCP\Group\Backend\IGetDisplayNameBackend;
|
||||||
use OCP\Group\Backend\IHideFromCollaborationBackend;
|
use OCP\Group\Backend\IHideFromCollaborationBackend;
|
||||||
|
use OCP\Group\Backend\INamedBackend;
|
||||||
use OCP\Group\Backend\ISetDisplayNameBackend;
|
use OCP\Group\Backend\ISetDisplayNameBackend;
|
||||||
use OCP\GroupInterface;
|
use OCP\GroupInterface;
|
||||||
use OCP\IGroup;
|
use OCP\IGroup;
|
||||||
|
@ -317,6 +318,24 @@ class Group implements IGroup {
|
||||||
return array_values($users);
|
return array_values($users);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the names of the backend classes the group is connected to
|
||||||
|
*
|
||||||
|
* @return string[]
|
||||||
|
*/
|
||||||
|
public function getBackendNames() {
|
||||||
|
$backends = [];
|
||||||
|
foreach ($this->backends as $backend) {
|
||||||
|
if ($backend instanceof INamedBackend) {
|
||||||
|
$backends[] = $backend->getBackendName();
|
||||||
|
} else {
|
||||||
|
$backends[] = get_class($backend);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $backends;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* delete the group
|
* delete the group
|
||||||
*
|
*
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @copyright Copyright (c) 2021, hosting.de, Johannes Leuker <j.leuker@hosting.de>.
|
||||||
|
*
|
||||||
|
* @author Johannes Leuker <j.leuker@hosting.de>.
|
||||||
|
*
|
||||||
|
* @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/>
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace OCP\Group\Backend;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 22.0.0
|
||||||
|
*/
|
||||||
|
interface INamedBackend {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Backend name to be shown in group management
|
||||||
|
* @return string the name of the backend to be shown
|
||||||
|
* @since 22.0.0
|
||||||
|
*/
|
||||||
|
public function getBackendName(): string;
|
||||||
|
}
|
|
@ -129,6 +129,14 @@ interface IGroup {
|
||||||
*/
|
*/
|
||||||
public function searchDisplayName($search, $limit = null, $offset = null);
|
public function searchDisplayName($search, $limit = null, $offset = null);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the names of the backends the group is connected to
|
||||||
|
*
|
||||||
|
* @return string[]
|
||||||
|
* @since 22.0.0
|
||||||
|
*/
|
||||||
|
public function getBackendNames();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* delete the group
|
* delete the group
|
||||||
*
|
*
|
||||||
|
|
|
@ -0,0 +1,115 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @copyright 2021, hosting.de, Johannes Leuker <j.leuker@hosting.de>
|
||||||
|
*
|
||||||
|
* @author Johannes Leuker <j.leuker@hosting.de>
|
||||||
|
*
|
||||||
|
* @license GNU AGPL version 3 or any later version
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Afferoq General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Test\Core\Command\Group;
|
||||||
|
|
||||||
|
use OC\Core\Command\Group\Info;
|
||||||
|
use OCP\IGroup;
|
||||||
|
use OCP\IGroupManager;
|
||||||
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
use Test\TestCase;
|
||||||
|
|
||||||
|
class InfoTest extends TestCase {
|
||||||
|
|
||||||
|
/** @var IGroupManager|\PHPUnit\Framework\MockObject\MockObject */
|
||||||
|
private $groupManager;
|
||||||
|
|
||||||
|
/** @var Info|\PHPUnit\Framework\MockObject\MockObject */
|
||||||
|
private $command;
|
||||||
|
|
||||||
|
/** @var InputInterface|\PHPUnit\Framework\MockObject\MockObject */
|
||||||
|
private $input;
|
||||||
|
|
||||||
|
/** @var OutputInterface|\PHPUnit\Framework\MockObject\MockObject */
|
||||||
|
private $output;
|
||||||
|
|
||||||
|
protected function setUp(): void {
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
$this->groupManager = $this->createMock(IGroupManager::class);
|
||||||
|
$this->command = $this->getMockBuilder(Info::class)
|
||||||
|
->setConstructorArgs([$this->groupManager])
|
||||||
|
->setMethods(['writeArrayInOutputFormat'])
|
||||||
|
->getMock();
|
||||||
|
|
||||||
|
$this->input = $this->createMock(InputInterface::class);
|
||||||
|
$this->output = $this->createMock(OutputInterface::class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testDoesNotExists() {
|
||||||
|
$gid = 'myGroup';
|
||||||
|
$this->input->method('getArgument')
|
||||||
|
->willReturnCallback(function ($arg) use ($gid) {
|
||||||
|
if ($arg === 'groupid') {
|
||||||
|
return $gid;
|
||||||
|
}
|
||||||
|
throw new \Exception();
|
||||||
|
});
|
||||||
|
$this->groupManager->method('get')
|
||||||
|
->with($gid)
|
||||||
|
->willReturn(null);
|
||||||
|
|
||||||
|
$this->output->expects($this->once())
|
||||||
|
->method('writeln')
|
||||||
|
->with($this->equalTo('<error>Group "' . $gid . '" does not exist.</error>'));
|
||||||
|
|
||||||
|
$this->invokePrivate($this->command, 'execute', [$this->input, $this->output]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testInfo() {
|
||||||
|
$gid = 'myGroup';
|
||||||
|
$this->input->method('getArgument')
|
||||||
|
->willReturnCallback(function ($arg) use ($gid) {
|
||||||
|
if ($arg === 'groupid') {
|
||||||
|
return $gid;
|
||||||
|
}
|
||||||
|
throw new \Exception();
|
||||||
|
});
|
||||||
|
|
||||||
|
$group = $this->createMock(IGroup::class);
|
||||||
|
$group->method('getGID')->willReturn($gid);
|
||||||
|
$group->method('getDisplayName')
|
||||||
|
->willReturn('My Group');
|
||||||
|
$group->method('getBackendNames')
|
||||||
|
->willReturn(['Database']);
|
||||||
|
|
||||||
|
$this->groupManager->method('get')
|
||||||
|
->with($gid)
|
||||||
|
->willReturn($group);
|
||||||
|
|
||||||
|
$this->command->expects($this->once())
|
||||||
|
->method('writeArrayInOutputFormat')
|
||||||
|
->with(
|
||||||
|
$this->equalTo($this->input),
|
||||||
|
$this->equalTo($this->output),
|
||||||
|
[
|
||||||
|
'groupID' => 'myGroup',
|
||||||
|
'displayName' => 'My Group',
|
||||||
|
'backends' => ['Database'],
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->invokePrivate($this->command, 'execute', [$this->input, $this->output]);
|
||||||
|
}
|
||||||
|
}
|
|
@ -55,17 +55,6 @@ class ListCommandTest extends TestCase {
|
||||||
->getMock();
|
->getMock();
|
||||||
|
|
||||||
$this->input = $this->createMock(InputInterface::class);
|
$this->input = $this->createMock(InputInterface::class);
|
||||||
$this->input->method('getOption')
|
|
||||||
->willReturnCallback(function ($arg) {
|
|
||||||
if ($arg === 'limit') {
|
|
||||||
return '100';
|
|
||||||
} elseif ($arg === 'offset') {
|
|
||||||
return '42';
|
|
||||||
}
|
|
||||||
throw new \Exception();
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
$this->output = $this->createMock(OutputInterface::class);
|
$this->output = $this->createMock(OutputInterface::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,7 +72,7 @@ class ListCommandTest extends TestCase {
|
||||||
->with(
|
->with(
|
||||||
'',
|
'',
|
||||||
100,
|
100,
|
||||||
42
|
42,
|
||||||
)->willReturn([$group1, $group2, $group3]);
|
)->willReturn([$group1, $group2, $group3]);
|
||||||
|
|
||||||
$group1->method('getUsers')
|
$group1->method('getUsers')
|
||||||
|
@ -102,6 +91,18 @@ class ListCommandTest extends TestCase {
|
||||||
'user3' => $user,
|
'user3' => $user,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
$this->input->method('getOption')
|
||||||
|
->willReturnCallback(function ($arg) {
|
||||||
|
if ($arg === 'limit') {
|
||||||
|
return '100';
|
||||||
|
} elseif ($arg === 'offset') {
|
||||||
|
return '42';
|
||||||
|
} elseif ($arg === 'info') {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
throw new \Exception();
|
||||||
|
});
|
||||||
|
|
||||||
$this->command->expects($this->once())
|
$this->command->expects($this->once())
|
||||||
->method('writeArrayInOutputFormat')
|
->method('writeArrayInOutputFormat')
|
||||||
->with(
|
->with(
|
||||||
|
@ -123,4 +124,88 @@ class ListCommandTest extends TestCase {
|
||||||
|
|
||||||
$this->invokePrivate($this->command, 'execute', [$this->input, $this->output]);
|
$this->invokePrivate($this->command, 'execute', [$this->input, $this->output]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testInfo() {
|
||||||
|
$group1 = $this->createMock(IGroup::class);
|
||||||
|
$group1->method('getGID')->willReturn('group1');
|
||||||
|
$group2 = $this->createMock(IGroup::class);
|
||||||
|
$group2->method('getGID')->willReturn('group2');
|
||||||
|
$group3 = $this->createMock(IGroup::class);
|
||||||
|
$group3->method('getGID')->willReturn('group3');
|
||||||
|
|
||||||
|
$user = $this->createMock(IUser::class);
|
||||||
|
|
||||||
|
$this->groupManager->method('search')
|
||||||
|
->with(
|
||||||
|
'',
|
||||||
|
100,
|
||||||
|
42,
|
||||||
|
)->willReturn([$group1, $group2, $group3]);
|
||||||
|
|
||||||
|
$group1->method('getUsers')
|
||||||
|
->willReturn([
|
||||||
|
'user1' => $user,
|
||||||
|
'user2' => $user,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$group1->method('getBackendNames')
|
||||||
|
->willReturn(['Database']);
|
||||||
|
|
||||||
|
$group2->method('getUsers')
|
||||||
|
->willReturn([
|
||||||
|
]);
|
||||||
|
|
||||||
|
$group2->method('getBackendNames')
|
||||||
|
->willReturn(['Database']);
|
||||||
|
|
||||||
|
$group3->method('getUsers')
|
||||||
|
->willReturn([
|
||||||
|
'user1' => $user,
|
||||||
|
'user3' => $user,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$group3->method('getBackendNames')
|
||||||
|
->willReturn(['LDAP']);
|
||||||
|
|
||||||
|
$this->input->method('getOption')
|
||||||
|
->willReturnCallback(function ($arg) {
|
||||||
|
if ($arg === 'limit') {
|
||||||
|
return '100';
|
||||||
|
} elseif ($arg === 'offset') {
|
||||||
|
return '42';
|
||||||
|
} elseif ($arg === 'info') {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
throw new \Exception();
|
||||||
|
});
|
||||||
|
|
||||||
|
$this->command->expects($this->once())
|
||||||
|
->method('writeArrayInOutputFormat')
|
||||||
|
->with(
|
||||||
|
$this->equalTo($this->input),
|
||||||
|
$this->equalTo($this->output),
|
||||||
|
[
|
||||||
|
'group1' => [
|
||||||
|
'backends' => ['Database'],
|
||||||
|
'users' => [
|
||||||
|
'user1',
|
||||||
|
'user2',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
'group2' => [
|
||||||
|
'backends' => ['Database'],
|
||||||
|
'users' => [],
|
||||||
|
],
|
||||||
|
'group3' => [
|
||||||
|
'backends' => ['LDAP'],
|
||||||
|
'users' => [
|
||||||
|
'user1',
|
||||||
|
'user3',
|
||||||
|
],
|
||||||
|
]
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->invokePrivate($this->command, 'execute', [$this->input, $this->output]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue