forked from nextras/orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPropertyMetadata.php
More file actions
219 lines (173 loc) · 4.52 KB
/
Copy pathPropertyMetadata.php
File metadata and controls
219 lines (173 loc) · 4.52 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?php declare(strict_types = 1);
/**
* This file is part of the Nextras\Orm library.
* This file was inspired by YetORM https://github.com/uestla/YetORM/.
* @license MIT
* @link https://github.com/nextras/orm
*/
namespace Nextras\Orm\Entity\Reflection;
use DateTimeZone;
use Nette\SmartObject;
use Nextras\Orm\Entity\IProperty;
use Nextras\Orm\InvalidStateException;
use stdClass;
class PropertyMetadata
{
use SmartObject;
/** @var string property name */
public $name = '';
/** @var string|null */
public $container;
/** @var string|null */
public $hasGetter;
/** @var string|null */
public $hasSetter;
/** @var array<string, bool> of allowed types defined as keys */
public $types = [];
/** @var bool */
public $isPrimary = false;
/** @var bool */
public $isNullable = false;
/** @var bool */
public $isReadonly = false;
/** @var bool */
public $isVirtual = false;
/** @var mixed */
public $defaultValue;
/** @var PropertyRelationshipMetadata|null */
public $relationship;
/** @var stdClass|null */
public $args;
/** @var mixed[]|null array of alowed values */
public $enum;
/** @var IProperty|null */
private $containerPrototype;
public function getPropertyPrototype(): IProperty
{
if ($this->containerPrototype === null) {
if ($this->container === null) {
throw new InvalidStateException();
}
$class = $this->container;
$this->containerPrototype = new $class($this);
}
return $this->containerPrototype;
}
public function __sleep()
{
return [
'name',
'container',
'hasGetter',
'hasSetter',
'types',
'isPrimary',
'isNullable',
'isReadonly',
'isVirtual',
'defaultValue',
'relationship',
'args',
'enum',
];
}
public function isValid(& $value): bool
{
if ($value === null && $this->isNullable) {
return true;
}
if ($this->enum) {
return in_array($value, $this->enum, true);
}
foreach ($this->types as $type => $_) {
if ($type === \DateTimeImmutable::class) {
if ($value instanceof \DateTimeImmutable) {
return true;
} elseif ($value instanceof \DateTime) {
$value = new \DateTimeImmutable($value->format('c'));
return true;
} elseif (is_string($value) && $value !== '') {
$tmp = new \DateTimeImmutable($value);
$value = $tmp->setTimezone(new DateTimeZone(date_default_timezone_get()));
return true;
} elseif (ctype_digit($value)) {
$value = new \DateTimeImmutable("@{$value}");
return true;
}
} elseif ($type === \Nextras\Dbal\Utils\DateTimeImmutable::class) {
if ($value instanceof \Nextras\Dbal\Utils\DateTimeImmutable) {
return true;
} elseif ($value instanceof \DateTimeInterface) {
$value = new \Nextras\Dbal\Utils\DateTimeImmutable($value->format('c'));
return true;
} elseif (is_string($value) && $value !== '') {
$tmp = new \Nextras\Dbal\Utils\DateTimeImmutable($value);
$value = $tmp->setTimezone(new DateTimeZone(date_default_timezone_get()));
return true;
} elseif (ctype_digit($value)) {
$value = new \Nextras\Dbal\Utils\DateTimeImmutable("@{$value}");
return true;
}
}
$type = strtolower($type);
if ($type === 'string') {
if (is_string($value)) {
return true;
}
if (is_int($value) || (is_object($value) && method_exists($value, '__toString'))) {
$value = (string) $value;
return true;
}
} elseif ($type === 'float') {
if (is_float($value)) {
return true;
}
if (is_numeric($value)) {
settype($value, 'float');
return true;
} elseif (is_string($value)) {
$value = (float) str_replace([' ', ','], ['', '.'], $value);
return true;
}
} elseif ($type === 'int') {
if (is_int($value)) {
return true;
}
if (is_numeric($value)) {
settype($value, 'int');
return true;
} elseif (is_string($value)) {
$value = (int) str_replace([' ', ','], ['', '.'], $value);
return true;
}
} elseif ($type === 'bool') {
if (is_bool($value)) {
return true;
}
if (in_array($value, [0, 0.0, '0', 1, 1.0, '1'], true)) {
$value = (bool) $value;
return true;
}
} elseif ($type === 'array') {
if (is_array($value)) {
return true;
}
} elseif ($type === 'object') {
if (is_object($value)) {
return true;
}
} elseif ($type === 'scalar') {
if (is_scalar($value)) {
return true;
}
} elseif ($type === 'mixed') {
return true;
} else {
if ($value instanceof $type) {
return true;
}
}
}
return false;
}
}