Completed
Push — master ( 1dbefb...c77374 )
by Jeroen
32s queued 11s
created

src/Kunstmaan/FormBundle/Helper/FormHandler.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Kunstmaan\FormBundle\Helper;
4
5
use ArrayObject;
6
use Doctrine\ORM\EntityManager;
7
use Kunstmaan\FormBundle\Entity\FormAdaptorInterface;
8
use Kunstmaan\FormBundle\Entity\FormSubmission;
9
use Kunstmaan\FormBundle\Entity\FormSubmissionField;
10
use Kunstmaan\FormBundle\Event\FormEvents;
11
use Kunstmaan\FormBundle\Event\SubmissionEvent;
12
use Kunstmaan\NodeBundle\Helper\RenderContext;
13
use Symfony\Component\DependencyInjection\ContainerInterface;
14
use Symfony\Component\EventDispatcher\LegacyEventDispatcherProxy;
15
use Symfony\Component\Form\Extension\Core\Type\FormType;
16
use Symfony\Component\Form\FormBuilderInterface;
17
use Symfony\Component\HttpFoundation\RedirectResponse;
18
use Symfony\Component\HttpFoundation\Request;
19
use Symfony\Component\Routing\RouterInterface;
20
21
/**
22
 * The form handler handles everything from creating the form to handling the submitted form
23
 */
24
class FormHandler implements FormHandlerInterface
25
{
26
    /**
27
     * @var ContainerInterface
28
     */
29
    private $container;
30
31
    /**
32
     * @param ContainerInterface $container
33
     */
34
    public function __construct(ContainerInterface $container)
35
    {
36
        $this->container = $container;
37
    }
38
39
    /**
40
     * @param FormPageInterface $page    The form page
41
     * @param Request           $request The request
42
     * @param RenderContext     $context The render context
43
     *
44
     * @return RedirectResponse|void|null
45
     */
46
    public function handleForm(FormPageInterface $page, Request $request, RenderContext $context)
47
    {
48
        /* @var EntityManager $em */
49
        $em = $this->container->get('doctrine.orm.entity_manager');
50
        /* @var FormBuilderInterface $formBuilder */
51
        $formBuilder = $this->container->get('form.factory')->createBuilder(FormType::class);
52
        /* @var RouterInterface $router */
53
        $router = $this->container->get('router');
54
        /* @var ArrayObject $fields */
55
        $fields = new ArrayObject();
56
        $pageParts = $em->getRepository('KunstmaanPagePartBundle:PagePartRef')->getPageParts($page, $page->getFormElementsContext());
57
        foreach ($pageParts as $sequence => $pagePart) {
58
            if ($pagePart instanceof FormAdaptorInterface) {
59
                $pagePart->adaptForm($formBuilder, $fields, $sequence);
60
            }
61
        }
62
63
        $form = $formBuilder->getForm();
64
        if ($request->getMethod() == 'POST') {
65
            $form->handleRequest($request);
66
            if ($form->isSubmitted() && $form->isValid()) {
67
                $formSubmission = new FormSubmission();
68
                $formSubmission->setIpAddress($request->getClientIp());
69
                $formSubmission->setNode($em->getRepository('KunstmaanNodeBundle:Node')->getNodeFor($page));
70
                $formSubmission->setLang($request->getLocale());
71
                $em->persist($formSubmission);
72
73
                /* @var FormSubmissionField $field */
74
                foreach ($fields as $field) {
75
                    $field->setSubmission($formSubmission);
76
                    $field->onValidPost($form, $formBuilder, $request, $this->container);
77
                    $em->persist($field);
78
                }
79
80
                $em->flush();
81
                $em->refresh($formSubmission);
82
83
                $event = new SubmissionEvent($formSubmission, $page);
84
                $this->dispatch($event, FormEvents::ADD_SUBMISSION);
85
86
                return new RedirectResponse($page->generateThankYouUrl($router, $context));
87
            }
88
        }
89
        $context['frontendform'] = $form->createView();
90
        $context['frontendformobject'] = $form;
91
92
        return null;
93
    }
94
95
    /**
96
     * @param object $event
97
     * @param string $eventName
98
     *
99
     * @return object
100
     */
101 View Code Duplication
    private function dispatch($event, string $eventName)
0 ignored issues
show
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
102
    {
103
        $eventDispatcher = $this->container->get('event_dispatcher');
104
        if (class_exists(LegacyEventDispatcherProxy::class)) {
105
            $eventDispatcher = LegacyEventDispatcherProxy::decorate($eventDispatcher);
106
107
            return $eventDispatcher->dispatch($event, $eventName);
108
        }
109
110
        return $eventDispatcher->dispatch($eventName, $event);
111
    }
112
}
113