-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSteppedForm.php
97 lines (79 loc) · 3 KB
/
SteppedForm.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
declare(strict_types=1);
namespace Lexal\HttpSteppedForm;
use Lexal\HttpSteppedForm\ExceptionNormalizer\ExceptionNormalizerInterface;
use Lexal\HttpSteppedForm\Renderer\RendererInterface;
use Lexal\HttpSteppedForm\Routing\RedirectorInterface;
use Lexal\HttpSteppedForm\Settings\FormSettingsInterface;
use Lexal\SteppedForm\Exception\SteppedFormException;
use Lexal\SteppedForm\Form\Storage\FormStorageInterface;
use Lexal\SteppedForm\Step\StepKey;
use Lexal\SteppedForm\SteppedFormInterface as BaseSteppedFormInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use function array_replace_recursive;
final class SteppedForm implements SteppedFormInterface
{
public function __construct(
private readonly BaseSteppedFormInterface $form,
private readonly FormSettingsInterface $formSettings,
private readonly RedirectorInterface $redirector,
private readonly RendererInterface $renderer,
private readonly ExceptionNormalizerInterface $exceptionNormalizer,
) {
}
public function getEntity(): mixed
{
return $this->form->getEntity();
}
public function start(mixed $entity, string $sessionKey = FormStorageInterface::DEFAULT_SESSION_KEY): Response
{
try {
$key = $this->form->start($entity, $sessionKey);
} catch (SteppedFormException $exception) {
return $this->handleFormException($exception);
}
return $this->redirectToStep($key);
}
public function render(string $key): Response
{
try {
$definition = $this->form->render(new StepKey($key));
} catch (SteppedFormException $exception) {
return $this->handleFormException($exception);
}
return $this->renderer->render($definition);
}
public function handle(string $key, Request $request): Response
{
$data = array_replace_recursive($request->query->all(), $request->request->all(), $request->files->all());
try {
$next = $this->form->handle(new StepKey($key), $data);
} catch (SteppedFormException $exception) {
return $this->handleFormException($exception);
}
return $this->redirectToStep($next);
}
public function cancel(string $url): Response
{
try {
$this->form->cancel();
} catch (SteppedFormException $exception) {
return $this->handleFormException($exception);
}
return $this->redirector->redirect($url);
}
private function redirectToStep(?StepKey $key): Response
{
if ($key === null) {
$url = $this->formSettings->getUrlAfterFinish();
} else {
$url = $this->formSettings->getStepUrl($key);
}
return $this->redirector->redirect($url);
}
private function handleFormException(SteppedFormException $exception): Response
{
return $this->exceptionNormalizer->normalize($exception, $this->formSettings);
}
}