2022-08-04 21:49:16 +02:00
|
|
|
<?php
|
2022-11-29 21:21:26 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
*
|
|
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2022-08-04 21:49:16 +02:00
|
|
|
|
|
|
|
namespace App\Command\User;
|
|
|
|
|
|
|
|
use App\Entity\UserSystem\User;
|
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
|
|
use Symfony\Component\Console\Helper\Table;
|
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
|
|
|
|
|
|
class UserListCommand extends Command
|
|
|
|
{
|
|
|
|
protected static $defaultName = 'partdb:users:list|users:list';
|
|
|
|
|
2022-09-18 22:59:31 +02:00
|
|
|
protected EntityManagerInterface $entityManager;
|
2022-08-04 21:49:16 +02:00
|
|
|
|
|
|
|
public function __construct(EntityManagerInterface $entityManager)
|
|
|
|
{
|
|
|
|
$this->entityManager = $entityManager;
|
|
|
|
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function configure(): void
|
|
|
|
{
|
|
|
|
$this
|
|
|
|
->setDescription('Lists all users')
|
|
|
|
->setHelp('This command lists all users in the database.')
|
2023-02-23 23:36:40 +01:00
|
|
|
->addOption('local', 'l', null, 'Only list local users')
|
|
|
|
->addOption('saml', 's', null, 'Only list SAML users')
|
2022-08-04 21:49:16 +02:00
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2022-08-14 19:09:07 +02:00
|
|
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
2022-08-04 21:49:16 +02:00
|
|
|
{
|
|
|
|
$io = new SymfonyStyle($input, $output);
|
2023-02-23 23:36:40 +01:00
|
|
|
$only_local = $input->getOption('local');
|
|
|
|
$only_saml = $input->getOption('saml');
|
2022-08-04 21:49:16 +02:00
|
|
|
|
2023-02-23 23:36:40 +01:00
|
|
|
if ($only_local && $only_saml) {
|
|
|
|
$io->error('You can not use --local and --saml at the same time!');
|
|
|
|
|
|
|
|
return Command::FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
$repo = $this->entityManager->getRepository(User::class);
|
|
|
|
|
|
|
|
if ($only_local) {
|
|
|
|
$users = $repo->onlyLocalUsers();
|
|
|
|
} elseif ($only_saml) {
|
|
|
|
$users = $repo->onlySAMLUsers();
|
|
|
|
} else {
|
|
|
|
$users = $repo->findAll();
|
|
|
|
}
|
2022-08-04 21:49:16 +02:00
|
|
|
|
|
|
|
$io->info(sprintf("Found %d users in database.", count($users)));
|
|
|
|
|
|
|
|
$io->title('Users:');
|
|
|
|
|
|
|
|
$table = new Table($output);
|
2023-02-23 23:36:40 +01:00
|
|
|
$table->setHeaders(['ID', 'Username', 'Name', 'Email', 'Group', 'Login Disabled', 'Type']);
|
2022-08-04 21:49:16 +02:00
|
|
|
|
|
|
|
foreach ($users as $user) {
|
|
|
|
$table->addRow([
|
|
|
|
$user->getId(),
|
|
|
|
$user->getUsername(),
|
|
|
|
$user->getFullName(),
|
|
|
|
$user->getEmail(),
|
|
|
|
$user->getGroup() !== null ? $user->getGroup()->getName() . ' (ID: ' . $user->getGroup()->getID() . ')' : 'No group',
|
2022-11-14 23:58:38 +01:00
|
|
|
$user->isDisabled() ? 'Yes' : 'No',
|
2023-02-23 23:36:40 +01:00
|
|
|
$user->isSAMLUser() ? 'SAML' : 'Local',
|
2022-08-04 21:49:16 +02:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$table->render();
|
|
|
|
|
|
|
|
|
|
|
|
return self::SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|