src/Sylius/Bundle/UserBundle/Command/DemoteUserCommand.php line 22

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Sylius package.
  4.  *
  5.  * (c) Paweł Jędrzejewski
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Sylius\Bundle\UserBundle\Command;
  12. use Sylius\Component\User\Model\UserInterface;
  13. use Symfony\Component\Console\Input\InputArgument;
  14. use Symfony\Component\Console\Input\InputInterface;
  15. use Symfony\Component\Console\Input\InputOption;
  16. use Symfony\Component\Console\Output\OutputInterface;
  17. class DemoteUserCommand extends AbstractRoleCommand
  18. {
  19.     /**
  20.      * {@inheritdoc}
  21.      */
  22.     protected function configure(): void
  23.     {
  24.         $this
  25.             ->setName('sylius:user:demote')
  26.             ->setDescription('Demotes a user by removing a role.')
  27.             ->setDefinition([
  28.                 new InputArgument('email'InputArgument::REQUIRED'Email'),
  29.                 new InputArgument('roles'InputArgument::IS_ARRAY'Security roles'),
  30.                 new InputOption('super-admin'nullInputOption::VALUE_NONE'Unset the user as super admin'),
  31.                 new InputOption('user-type'nullInputOption::VALUE_REQUIRED'Use shop or admin user type'),
  32.             ])
  33.             ->setHelp(<<<EOT
  34. The <info>sylius:user:demote</info> command demotes a user by removing security roles
  35.   <info>php app/console sylius:user:demote matthieu@email.com</info>
  36. EOT
  37.             );
  38.     }
  39.     /**
  40.      * {@inheritdoc}
  41.      */
  42.     protected function executeRoleCommand(InputInterface $inputOutputInterface $outputUserInterface $user, array $securityRoles): void
  43.     {
  44.         $error false;
  45.         foreach ($securityRoles as $securityRole) {
  46.             if (!$user->hasRole($securityRole)) {
  47.                 $output->writeln(sprintf('<error>User "%s" didn\'t have "%s" Security role.</error>'$user->getEmail(), $securityRole));
  48.                 $error true;
  49.                 continue;
  50.             }
  51.             $user->removeRole($securityRole);
  52.             $output->writeln(sprintf('Security role <comment>%s</comment> has been removed from user <comment>%s</comment>'$securityRole$user->getEmail()));
  53.         }
  54.         if (!$error) {
  55.             $this->getEntityManager($input->getOption('user-type'))->flush();
  56.         }
  57.     }
  58. }