-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConstraintsGenerator.php
131 lines (109 loc) · 3.38 KB
/
ConstraintsGenerator.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
namespace SimpleThings\JsValidationBundle;
use Symfony\Component\Validator\Mapping\Factory\MetadataFactoryInterface;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Translation\TranslatorInterface;
/**
* @author David Badura <[email protected]>
*/
class ConstraintsGenerator
{
/**
* @var MetadataFactoryInterface
*/
protected $metadataFactory;
/**
* @var TranslatorInterface
*/
protected $translator;
/**
* @var string
*/
protected $defaultLocale;
/**
* @param MetadataFactoryInterface $metadataFactory
* @param TranslatorInterface $translator
* @param string $defaultLocale
*/
public function __construct(
MetadataFactoryInterface $metadataFactory,
TranslatorInterface $translator = null,
$defaultLocale = null
) {
$this->metadataFactory = $metadataFactory;
$this->translator = $translator;
$this->defaultLocale = $defaultLocale;
}
/**
* @param array $classNames
* @return string
*/
public function generate(array $classNames)
{
$data = array();
foreach ($classNames as $className) {
$data[$className] = $this->generateClass($className);
}
return json_encode($data);
}
/**
* Generate array representation of constraints that is exported to JSON.
*
* @param string $className
* @return array
*/
public function generateClass($className)
{
$data = array();
$metadata = $this->metadataFactory->getMetadataFor($className);
$properties = $metadata->getConstrainedProperties();
foreach ($properties as $property) {
$data[$property] = array();
$constraintsList = $metadata->getPropertyMetadata($property);
foreach ($constraintsList as $constraints) {
foreach ($constraints->constraints as $constraint) {
$const = $this->translateConstraint($constraint);
$data[$property][$this->getConstraintName($const)] = $const;
}
}
}
return $data;
}
/**
* @param Constraint $constraint
* @return Constraint
*/
protected function translateConstraint(Constraint $constraint)
{
if (!$this->translator) {
return $constraint;
}
$constraint = clone $constraint;
$refClass = new \ReflectionClass(get_class($constraint));
$properties = $refClass->getProperties(\ReflectionProperty::IS_PUBLIC);
foreach ($properties as $property) {
if(!preg_match('/message/i', $property->getName())) {
continue;
}
$message = $this->translator->trans(
$property->getValue($constraint),
array(),
'validations',
$this->defaultLocale
);
$property->setValue($constraint, $message);
}
return $constraint;
}
/**
* @todo Only shorten symfony ones and underscore/camlize others?
* @param Constraint $constraint
* @return string
*/
protected function getConstraintName(Constraint $constraint)
{
$class = get_class($constraint);
$parts = explode('\\', $class);
return lcfirst(array_pop($parts));
}
}