src/Form/RegistrationFormType.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Form;
  3. use App\Entity\User;
  4. use App\Validator\FlexenergieEmail;
  5. use Symfony\Component\Form\AbstractType;
  6. use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
  7. use Symfony\Component\Form\Extension\Core\Type\EmailType;
  8. use Symfony\Component\Form\Extension\Core\Type\PasswordType;
  9. use Symfony\Component\Form\FormBuilderInterface;
  10. use Symfony\Component\OptionsResolver\OptionsResolver;
  11. use Symfony\Component\Validator\Constraints\IsTrue;
  12. use Symfony\Component\Validator\Constraints\Length;
  13. use Symfony\Component\Validator\Constraints\NotBlank;
  14. use Symfony\Component\Validator\Constraints\Email;
  15. class RegistrationFormType extends AbstractType
  16. {
  17.     public function buildForm(FormBuilderInterface $builder, array $options): void
  18.     {
  19.         $emailConstraints = [
  20.             new NotBlank([
  21.                 'message' => 'Merci de saisir une adresse email',
  22.             ]),
  23.             new Email([
  24.                 'message' => 'L\'adresse email n\'est pas valide',
  25.             ])
  26.         ];
  27.         // Ajouter la contrainte FlexenergieEmail uniquement pour flexenergie.org
  28.         if ($options['current_domain'] === 'flexenergie.org') {
  29.             $emailConstraints[] = new FlexenergieEmail([
  30.                 'domain' => 'flexenergie.org'
  31.             ]);
  32.         }
  33.         $builder
  34.             ->add('email'EmailType::class, [
  35.                 'constraints' => $emailConstraints
  36.             ])
  37.             ->add('username')
  38.             ->add('agreeTerms'CheckboxType::class, [
  39.                 'mapped' => false,
  40.                 'constraints' => [
  41.                     new IsTrue([
  42.                         'message' => "Merci d'accepter les termes",
  43.                     ]),
  44.                 ],
  45.             ])
  46.             ->add('plainPassword'PasswordType::class, [
  47.                 // instead of being set onto the object directly,
  48.                 // this is read and encoded in the controller
  49.                 'mapped' => false,
  50.                 'attr' => ['autocomplete' => 'nouveau-mdp'],
  51.                 'constraints' => [
  52.                     new NotBlank([
  53.                         'message' => 'Merci de saisir un mot de passe',
  54.                     ]),
  55.                     new Length([
  56.                         'min' => 6,
  57.                         'minMessage' => 'Votre mot de passe doit avoir au moins {{ limit }} caractères',
  58.                         // max length allowed by Symfony for security reasons
  59.                         'max' => 4096,
  60.                     ]),
  61.                 ],
  62.             ])
  63.         ;
  64.     }
  65.     public function configureOptions(OptionsResolver $resolver): void
  66.     {
  67.         $resolver->setDefaults([
  68.             'data_class' => User::class,
  69.             'current_domain' => null
  70.         ]);
  71.     }
  72. }