-
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathPhpTypeConverter.php
74 lines (59 loc) · 2.01 KB
/
PhpTypeConverter.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
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\SchemaGenerator;
use ApiPlatform\SchemaGenerator\Model\Class_;
use ApiPlatform\SchemaGenerator\Model\Property;
use ApiPlatform\SchemaGenerator\Schema\Model\Property as SchemaProperty;
final class PhpTypeConverter implements PhpTypeConverterInterface
{
public function getPhpType(Property $property, array $config = [], array $classes = []): ?string
{
if (!$property instanceof SchemaProperty) {
throw new \LogicException(\sprintf('Property "%s" has to be an instance of "%s".', $property->name(), SchemaProperty::class));
}
if ($property->reference && $property->isArray()) {
return ($config['doctrine']['useCollection'] ?? false) ? 'Collection' : 'array';
}
if ($property->isArray()) {
return 'array';
}
return $this->getNonArrayType($property, $classes);
}
public function escapeIdentifier(string $identifier): string
{
foreach (self::RESERVED_KEYWORDS as $keyword) {
if (0 === strcasecmp($keyword, $identifier)) {
return $identifier.'_';
}
}
return $identifier;
}
/**
* @param Class_[] $classes
*/
private function getNonArrayType(SchemaProperty $property, array $classes): ?string
{
if ($property->isEnum) {
return 'string';
}
if (null === $property->range) {
return null;
}
if ($property->type) {
return $property->type->getPhp();
}
$typeName = $property->rangeName;
if ($type = (isset($classes[$typeName]) ? $classes[$typeName]->interfaceName() ?? $classes[$typeName]->name() : null)) {
return $type;
}
return null;
}
}