1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
/* |
6
|
|
|
* This file is part of the Sonata Project package. |
7
|
|
|
* |
8
|
|
|
* (c) Thomas Rabaix <[email protected]> |
9
|
|
|
* |
10
|
|
|
* For the full copyright and license information, please view the LICENSE |
11
|
|
|
* file that was distributed with this source code. |
12
|
|
|
*/ |
13
|
|
|
|
14
|
|
|
namespace Sonata\AdminBundle\Form; |
15
|
|
|
|
16
|
|
|
use Sonata\AdminBundle\Admin\FieldDescriptionInterface; |
17
|
|
|
use Sonata\AdminBundle\Form\DataTransformer\ModelToIdTransformer; |
18
|
|
|
use Sonata\AdminBundle\Model\ModelManagerInterface; |
19
|
|
|
use Sonata\AdminBundle\Templating\TemplateRegistry; |
20
|
|
|
use Symfony\Component\Form\DataTransformerInterface; |
21
|
|
|
use Symfony\Component\Form\Extension\Core\DataTransformer\DateTimeToStringTransformer; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @author Peter Gribanov <[email protected]> |
25
|
|
|
*/ |
26
|
|
|
final class DataTransformerResolver implements DataTransformerResolverInterface |
27
|
|
|
{ |
28
|
|
|
/** |
29
|
|
|
* @var array<string, DataTransformerInterface> |
30
|
|
|
*/ |
31
|
|
|
private $globalCustomTransformers = []; |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* @param array<string, DataTransformerInterface> $customGlobalTransformers |
35
|
|
|
*/ |
36
|
|
|
public function __construct(array $customGlobalTransformers = []) |
37
|
|
|
{ |
38
|
|
|
foreach ($customGlobalTransformers as $fieldType => $dataTransformer) { |
39
|
|
|
$this->addCustomGlobalTransformer($fieldType, $dataTransformer); |
40
|
|
|
} |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
public function addCustomGlobalTransformer(string $fieldType, DataTransformerInterface $dataTransformer): void |
44
|
|
|
{ |
45
|
|
|
$this->globalCustomTransformers[$fieldType] = $dataTransformer; |
46
|
|
|
} |
47
|
|
|
|
48
|
|
|
public function resolve( |
49
|
|
|
FieldDescriptionInterface $fieldDescription, |
50
|
|
|
ModelManagerInterface $modelManager |
51
|
|
|
): ?DataTransformerInterface { |
52
|
|
|
$dataTransformer = $fieldDescription->getOption('data_transformer'); |
53
|
|
|
|
54
|
|
|
// allow override predefined transformers for 'date', 'boolean' and 'choice' field types |
55
|
|
|
if ($dataTransformer instanceof DataTransformerInterface) { |
56
|
|
|
return $dataTransformer; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
$fieldType = (string) $fieldDescription->getType(); |
60
|
|
|
|
61
|
|
|
// allow override predefined transformers on a global level |
62
|
|
|
if (\array_key_exists($fieldType, $this->globalCustomTransformers)) { |
63
|
|
|
return $this->globalCustomTransformers[$fieldType]; |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
// Handle date type has setter expect a DateTime object |
67
|
|
|
if (TemplateRegistry::TYPE_DATE === $fieldType) { |
68
|
|
|
$this->globalCustomTransformers[$fieldType] = new DateTimeToStringTransformer( |
69
|
|
|
null, |
70
|
|
|
$this->getOutputTimezone($fieldDescription), |
71
|
|
|
'Y-m-d' |
72
|
|
|
); |
73
|
|
|
|
74
|
|
|
return $this->globalCustomTransformers[$fieldType]; |
75
|
|
|
} |
76
|
|
|
|
77
|
|
|
// Handle entity choice association type, transforming the value into entity |
78
|
|
|
if (TemplateRegistry::TYPE_CHOICE === $fieldType) { |
79
|
|
|
$className = $fieldDescription->getOption('class'); |
80
|
|
|
|
81
|
|
|
if (null !== $className && |
82
|
|
|
// NEXT_MAJOR: Replace this call with "$className === $fieldDescription->getTargetModel()". |
83
|
|
|
$this->hasFieldDescriptionAssociationWithClass($fieldDescription, $className) |
84
|
|
|
) { |
85
|
|
|
return new ModelToIdTransformer($modelManager, $className); |
86
|
|
|
} |
87
|
|
|
} |
88
|
|
|
|
89
|
|
|
return null; |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
private function getOutputTimezone(FieldDescriptionInterface $fieldDescription): ?string |
93
|
|
|
{ |
94
|
|
|
$outputTimezone = $fieldDescription->getOption('timezone'); |
95
|
|
|
|
96
|
|
|
if (!$outputTimezone) { |
97
|
|
|
return null; |
98
|
|
|
} |
99
|
|
|
|
100
|
|
|
if ($outputTimezone instanceof \DateTimeZone) { |
101
|
|
|
return $outputTimezone->getName(); |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
return $outputTimezone; |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
private function hasFieldDescriptionAssociationWithClass( |
108
|
|
|
FieldDescriptionInterface $fieldDescription, |
109
|
|
|
string $class |
110
|
|
|
): bool { |
111
|
|
|
return ( |
112
|
|
|
method_exists($fieldDescription, 'getTargetModel') && $class === $fieldDescription->getTargetModel() |
|
|
|
|
113
|
|
|
) || $class === $fieldDescription->getTargetEntity(); |
|
|
|
|
114
|
|
|
} |
115
|
|
|
} |
116
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: