]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Form/Type/ForgotPasswordType.php
CS
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Form / Type / ForgotPasswordType.php
CommitLineData
6894d48e 1<?php
4346a860 2
6894d48e
J
3namespace Wallabag\CoreBundle\Form\Type;
4
5use Symfony\Component\Form\AbstractType;
6use Symfony\Component\Form\FormBuilderInterface;
7use Symfony\Component\Validator\Constraints;
8use Symfony\Component\Validator\ExecutionContextInterface;
9use Doctrine\Bundle\DoctrineBundle\Registry;
10
11class ForgotPasswordType extends AbstractType
12{
13 private $doctrine = null;
14
15 public function __construct(Registry $doctrine)
16 {
17 $this->doctrine = $doctrine;
18 }
19
20 public function buildForm(FormBuilderInterface $builder, array $options)
21 {
22 $builder
23 ->add('email', 'email', array(
24 'constraints' => array(
25 new Constraints\Email(),
26 new Constraints\NotBlank(),
27 new Constraints\Callback(array(array($this, 'validateEmail'))),
28 ),
29 ))
30 ;
31 }
32
33 public function getName()
34 {
35 return 'forgot_password';
36 }
37
38 public function validateEmail($email, ExecutionContextInterface $context)
39 {
40 $user = $this->doctrine
41 ->getRepository('WallabagCoreBundle:User')
42 ->findOneByEmail($email);
43
44 if (!$user) {
45 $context->addViolationAt(
46 'email',
47 'No user found with this email',
48 array(),
49 $email
50 );
51 }
52 }
53}