UpdateOptionsCommand.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace App\Command;
  3. use App\Entity\Profile;
  4. use App\Repository\UserRepository;
  5. use Doctrine\ORM\EntityManagerInterface;
  6. use Symfony\Component\Console\Attribute\AsCommand;
  7. use Symfony\Component\Console\Command\Command;
  8. use Symfony\Component\Console\Input\InputInterface;
  9. use Symfony\Component\Console\Input\InputOption;
  10. use Symfony\Component\Console\Output\OutputInterface;
  11. use Symfony\Component\Console\Style\SymfonyStyle;
  12. #[AsCommand(
  13. name: 'app:update:options',
  14. description: 'Commande pour rattacher une entité Profile aux users existants'
  15. )]
  16. class UpdateOptionsCommand extends Command
  17. {
  18. public function __construct(private EntityManagerInterface $em, private UserRepository $repoUser)
  19. {
  20. parent::__construct();
  21. }
  22. protected function configure(): void
  23. {
  24. $this
  25. ->addOption('force', null, InputOption::VALUE_NONE, 'Forcer la création des profils utilisateur')
  26. ;
  27. }
  28. protected function execute(InputInterface $input, OutputInterface $output): int
  29. {
  30. $io = new SymfonyStyle($input, $output);
  31. if ($input->getOption('force')) {
  32. $users = $this->repoUser->findAll();
  33. foreach($users as $user) {
  34. if ($user->getProfile() === null)
  35. {
  36. $io->note(sprintf('%s : pas de profil', $user->getNomComplet()));
  37. $profil = new Profile();
  38. $profil->setUser($user);
  39. $this->em->persist($profil);
  40. }
  41. }
  42. $this->em->flush();
  43. $io->success(sprintf('La bdd a été modifiée.'));
  44. return Command::SUCCESS;
  45. } else {
  46. $io->note(sprintf('La bdd n\'a pas été modifiée. Utilisez l\'option --force.'));
  47. return Command::SUCCESS;
  48. }
  49. }
  50. }