src/Command/User/RemoveUserCommand.php
<?php
declare(strict_types = 1);
/**
* /src/Command/User/RemoveUserCommand.php
*
* @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com>
*/
namespace App\Command\User;
use App\Command\Traits\SymfonyStyleTrait;
use App\Entity\User;
use App\Resource\UserResource;
use Override;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Throwable;
/**
* @package App\Command\User
* @author TLe, Tarmo Leppänen <tarmo.leppanen@pinja.com>
*/
#[AsCommand(
name: self::NAME,
description: 'Console command to remove existing user',
)]
class RemoveUserCommand extends Command
{
use SymfonyStyleTrait;
final public const string NAME = 'user:remove';
public function __construct(
private readonly UserResource $userResource,
private readonly UserHelper $userHelper,
) {
parent::__construct();
}
/**
* @noinspection PhpMissingParentCallCommonInspection
*
* @throws Throwable
*/
#[Override]
protected function execute(InputInterface $input, OutputInterface $output): int
{
$io = $this->getSymfonyStyle($input, $output);
$user = $this->userHelper->getUser($io, 'Which user you want to remove?');
$message = $user instanceof User ? $this->delete($user) : null;
if ($input->isInteractive()) {
$io->success($message ?? 'Nothing changed - have a nice day');
}
return 0;
}
/**
* @throws Throwable
*/
private function delete(User $user): string
{
$this->userResource->delete($user->getId());
return 'User removed - have a nice day';
}
}