src/EventSubscriber/InscriptionEventSubscriber.php line 48

Open in your IDE?
  1. <?php
  2. namespace App\EventSubscriber;
  3. use App\Message\NewInscription;
  4. use Sulu\Bundle\FormBundle\Entity\Dynamic;
  5. use Sulu\Bundle\FormBundle\Event\FormSavePostEvent;
  6. use Sulu\Component\DocumentManager\Subscriber\EventSubscriberInterface;
  7. use Symfony\Component\Messenger\MessageBusInterface;
  8. use Symfony\Contracts\HttpClient\HttpClientInterface;
  9. use Twig\Environment;
  10. class InscriptionEventSubscriber implements EventSubscriberInterface
  11. {
  12.     /**
  13.      * @var MessageBusInterface $bus
  14.      */
  15.     private MessageBusInterface $bus;
  16.     /**
  17.      * __construct
  18.      *
  19.      * @param  MessageBusInterface $dm
  20.      * @return void
  21.      */
  22.     /**
  23.      * @var HttpClientInterface $client
  24.      */
  25.     /**
  26.      * @var Environment
  27.      */
  28.     public function __construct(MessageBusInterface $bus)
  29.     {
  30.         $this->bus $bus;
  31.     }
  32.     public static function getSubscribedEvents(): array
  33.     {
  34.         return [
  35.             FormSavePostEvent::NAME => "noPayboxInscription"
  36.         ];
  37.     }
  38.     public function noPayboxInscription(FormSavePostEvent $event)
  39.     {
  40.         $dynamic $event->getData();
  41.         if (!$dynamic instanceof Dynamic) {
  42.             return;
  43.         }
  44.         $form $dynamic->getForm()->serializeForLocale($dynamic->getLocale(), $dynamic);
  45.         if ($form) {
  46.             $ref = isset($dynamic->getData()['text']) ? $dynamic->getData()['text'] : '';
  47.             $email = isset($dynamic->getData()['email']) ? $dynamic->getData()['email'] : '';
  48.             $lastName =  isset($dynamic->getData()['lastName']) ? $dynamic->getData()['lastName'] : '';
  49.             $firstName = isset($dynamic->getData()['firstName']) ? $dynamic->getData()['firstName'] : '';
  50.             $textarea = isset($dynamic->getData()['textarea']) ? $dynamic->getData()['textarea'] : '';
  51.             $structure = isset($dynamic->getData()['text2']) ? $dynamic->getData()['text2'] : '';
  52.             $fonction = isset($dynamic->getData()['dropdown']) ? $dynamic->getData()['dropdown'] : '';
  53.             $departement = isset($dynamic->getData()['dropdown1']) ? $dynamic->getData()['dropdown1'] : '';
  54.             if (empty($ref) || empty($email) || empty($lastName) || empty($firstName) || empty($structure) || empty($fonction) || empty($departement)) {
  55.                 return;
  56.             }
  57.             if (array_key_exists('text2'$dynamic->getData())) {
  58.                 $structure $dynamic->getData()['text2'];
  59.             }
  60.             if (array_key_exists('dropdown'$dynamic->getData())) {
  61.                 $fonction $dynamic->getData()['dropdown'];
  62.             }
  63.             if (array_key_exists('dropdown1'$dynamic->getData())) {
  64.                 $departement $dynamic->getData()['dropdown1'];
  65.             }
  66.             if (!$ref || !$email || !$lastName || !$firstName || !$structure || !$fonction || !$departement) {
  67.                 return;
  68.             }
  69.             $uuid explode('_'$ref)[0];
  70.             $user_id intval(explode("_"$ref)[1]);
  71.             $array = [
  72.                 'user_id' => $user_id,
  73.                 'locale' => $dynamic->getLocale(),
  74.                 'uuid' => $uuid,
  75.                 'ref' => $ref,
  76.                 'email' => $email,
  77.                 'lastname' => $lastName,
  78.                 'firstname' => $firstName,
  79.                 'textarea' => $textarea,
  80.                 'erreur' => '',
  81.                 'structure' => $structure,
  82.                 'fonction' => $fonction,
  83.                 'departement' => $departement
  84.             ];
  85.             $content json_encode($array);
  86.             $this->bus->dispatch(new NewInscription($content));
  87.             sleep(3);
  88.             exec('rm -rf /var/www/html/var/cache/common/*');
  89.         }
  90.         return;
  91.     }
  92. }