src/Form/EventListener/ReCaptchaValidationListener.php line 30

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Form\EventListener;
  4. use ReCaptcha\ReCaptcha;
  5. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  6. use Symfony\Component\Form\FormError;
  7. use Symfony\Component\Form\FormEvent;
  8. use Symfony\Component\Form\FormEvents;
  9. use Symfony\Component\HttpFoundation\Request;
  10. class ReCaptchaValidationListener implements EventSubscriberInterface
  11. {
  12.     private $reCaptcha;
  13.     public function __construct(ReCaptcha $reCaptcha)
  14.     {
  15.         $this->reCaptcha $reCaptcha;
  16.     }
  17.     public static function getSubscribedEvents()
  18.     {
  19.         return [
  20.             FormEvents::POST_SUBMIT => 'onPostSubmit'
  21.         ];
  22.     }
  23.     public function onPostSubmit(FormEvent $event)
  24.     {
  25.         $request Request::createFromGlobals();
  26.         $result $this->reCaptcha
  27.             ->setExpectedHostname($request->getHost())
  28.             ->verify($request->request->get('g-recaptcha-response'), $request->getClientIp());
  29.         if (!$result->isSuccess()) {
  30.             $event->getForm()->addError(new FormError('The captcha is invalid. Please try again.'));
  31.         }
  32.     }
  33. }