|
1
|
|
|
<?php |
|
2
|
|
|
namespace Graviton\GeneratorBundle\Definition; |
|
3
|
|
|
|
|
4
|
|
|
/** |
|
5
|
|
|
* @author List of contributors <https://github.com/libgraviton/graviton/graphs/contributors> |
|
6
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License |
|
7
|
|
|
* @link http://swisscom.ch |
|
8
|
|
|
*/ |
|
9
|
|
|
class JsonDefinitionArray implements DefinitionElementInterface |
|
10
|
|
|
{ |
|
11
|
|
|
/** |
|
12
|
|
|
* @var string |
|
13
|
|
|
*/ |
|
14
|
|
|
private $name; |
|
15
|
|
|
/** |
|
16
|
|
|
* @var DefinitionElementInterface |
|
17
|
|
|
*/ |
|
18
|
|
|
private $element; |
|
19
|
|
|
|
|
20
|
|
|
/** |
|
21
|
|
|
* Constructor |
|
22
|
|
|
* |
|
23
|
|
|
* @param string $name Field name |
|
24
|
|
|
* @param DefinitionElementInterface $element Array item definition |
|
25
|
|
|
*/ |
|
26
|
42 |
|
public function __construct($name, DefinitionElementInterface $element) |
|
27
|
|
|
{ |
|
28
|
42 |
|
$this->name = $name; |
|
29
|
42 |
|
$this->element = $element; |
|
30
|
42 |
|
} |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* @return DefinitionElementInterface |
|
34
|
|
|
*/ |
|
35
|
14 |
|
public function getElement() |
|
36
|
|
|
{ |
|
37
|
14 |
|
return $this->element; |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* Returns the name of this field |
|
42
|
|
|
* |
|
43
|
|
|
* @return string |
|
44
|
|
|
*/ |
|
45
|
6 |
|
public function getName() |
|
46
|
|
|
{ |
|
47
|
6 |
|
return $this->name; |
|
48
|
|
|
} |
|
49
|
|
|
|
|
50
|
|
|
/** |
|
51
|
|
|
* Returns the whole definition in array form |
|
52
|
|
|
* |
|
53
|
|
|
* @return array Definition |
|
54
|
|
|
*/ |
|
55
|
2 |
|
public function getDefAsArray() |
|
56
|
|
|
{ |
|
57
|
2 |
|
return array_replace( |
|
58
|
2 |
|
$this->element->getDefAsArray(), |
|
59
|
|
|
[ |
|
60
|
2 |
|
'name' => $this->getName(), |
|
61
|
2 |
|
'type' => $this->getType(), |
|
62
|
2 |
|
'doctrineType' => $this->getTypeDoctrine(), |
|
63
|
2 |
|
'serializerType' => $this->getTypeSerializer() |
|
64
|
|
|
], |
|
65
|
1 |
|
$this->getHashAnonymousHashRequired() |
|
66
|
|
|
); |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
/** |
|
70
|
|
|
* Returns the field type in a doctrine-understandable way.. |
|
71
|
|
|
* |
|
72
|
|
|
* @return string Type |
|
73
|
6 |
|
*/ |
|
74
|
|
|
public function getTypeDoctrine() |
|
75
|
6 |
|
{ |
|
76
|
|
|
return $this->element->getTypeDoctrine().'[]'; |
|
77
|
|
|
} |
|
78
|
|
|
|
|
79
|
|
|
/** |
|
80
|
|
|
* possible overrides. if the element is an anonymous hash, we will always |
|
81
|
|
|
* default to required => false. |
|
82
|
|
|
* |
|
83
|
8 |
|
* @return array additional overrides |
|
84
|
|
|
*/ |
|
85
|
8 |
|
private function getHashAnonymousHashRequired() |
|
86
|
|
|
{ |
|
87
|
|
|
if ($this->element instanceof JsonDefinitionHash && $this->element->isAnonymous()) { |
|
88
|
|
|
return ['required' => false]; |
|
89
|
|
|
} |
|
90
|
|
|
|
|
91
|
|
|
return []; |
|
92
|
|
|
} |
|
93
|
6 |
|
|
|
94
|
|
|
/** |
|
95
|
6 |
|
* Returns the field type |
|
96
|
|
|
* |
|
97
|
|
|
* @return string Type |
|
98
|
|
|
*/ |
|
99
|
|
|
public function getType() |
|
100
|
|
|
{ |
|
101
|
|
|
return $this->element->getType().'[]'; |
|
102
|
|
|
} |
|
103
|
|
|
|
|
104
|
|
|
/** |
|
105
|
|
|
* Returns the field type in a serializer-understandable way.. |
|
106
|
|
|
* |
|
107
|
|
|
* @return string Type |
|
108
|
|
|
*/ |
|
109
|
|
|
public function getTypeSerializer() |
|
110
|
|
|
{ |
|
111
|
|
|
return 'array<'.$this->element->getTypeSerializer().'>'; |
|
112
|
|
|
} |
|
113
|
|
|
} |
|
114
|
|
|
|