SeenWhenCommentCommand.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. namespace App\Command;
  3. use App\Repository\CommentaireRepository;
  4. use Doctrine\ORM\EntityManagerInterface;
  5. use Symfony\Component\Console\Attribute\AsCommand;
  6. use Symfony\Component\Console\Command\Command;
  7. use Symfony\Component\Console\Input\InputInterface;
  8. use Symfony\Component\Console\Input\InputOption;
  9. use Symfony\Component\Console\Output\OutputInterface;
  10. use Symfony\Component\Console\Style\SymfonyStyle;
  11. #[AsCommand(
  12. name: 'app:seen-when-comment',
  13. description: 'Passer les films en vu lorsque commenté par le user',
  14. )]
  15. class SeenWhenCommentCommand extends Command
  16. {
  17. public function __construct(
  18. protected EntityManagerInterface $em,
  19. protected CommentaireRepository $commentaireRepository
  20. )
  21. {
  22. parent::__construct();
  23. }
  24. protected function configure(): void
  25. {
  26. $this
  27. ->addOption('dry-run', null, InputOption::VALUE_NONE, 'Juste tester dans enregistrer')
  28. ;
  29. }
  30. protected function execute(InputInterface $input, OutputInterface $output): int
  31. {
  32. $io = new SymfonyStyle($input, $output);
  33. $commentaires = $this->commentaireRepository->findAll();
  34. foreach($commentaires as $commentaire) {
  35. if (!$commentaire->getFilm()->getUsersWhoSeen()->contains($commentaire->getUser())) {
  36. $commentaire->getFilm()->addUserWhoSeen($commentaire->getUser());
  37. $io->text(sprintf("Film : %s --- User : %s", $commentaire->getFilm()->getTitre(), $commentaire->getUser()->getUserIdentifier()));
  38. }
  39. }
  40. if (!$input->getOption('dry-run')) {
  41. $this->em->flush();
  42. }
  43. $io->success('Les films commentés par un utilisateur sont maintenant passs en "vu"');
  44. return Command::SUCCESS;
  45. }
  46. }