forked from api-platform/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefinitionNameFactory.php
More file actions
136 lines (105 loc) · 4.31 KB
/
DefinitionNameFactory.php
File metadata and controls
136 lines (105 loc) · 4.31 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
<?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\JsonSchema;
use ApiPlatform\Metadata\Operation;
use ApiPlatform\Metadata\Util\ResourceClassInfoTrait;
use Symfony\Component\Serializer\Normalizer\AbstractNormalizer;
final class DefinitionNameFactory implements DefinitionNameFactoryInterface
{
use ResourceClassInfoTrait;
private const GLUE = '.';
private const JSON_MERGE_PATCH_SCHEMA_POSTFIX = 'jsonMergePatch';
private array $prefixCache = [];
public function __construct(private ?array $distinctFormats = null)
{
if ($distinctFormats) {
trigger_deprecation('api-platform/json-schema', '4.2', 'The distinctFormats argument is deprecated and will be removed in 5.0.');
}
}
public function create(string $className, string $format = 'json', ?string $inputOrOutputClass = null, ?Operation $operation = null, array $serializerContext = []): string
{
if ($operation) {
$prefix = $operation->getShortName();
}
if (!isset($prefix)) {
$prefix = $this->createPrefixFromClass($className);
}
if (null !== $inputOrOutputClass && $className !== $inputOrOutputClass) {
$parts = explode('\\', $inputOrOutputClass);
$shortName = end($parts);
$prefix .= self::GLUE.$shortName;
}
// TODO: remove in 5.0
$v = $this->distinctFormats ? ($this->distinctFormats[$format] ?? false) : true;
if (!\in_array($format, ['json', 'merge-patch+json'], true) && $v) {
// JSON is the default, and so isn't included in the definition name
// JSON merge patch is postfixed at the end
$prefix .= self::GLUE.$format;
}
$definitionName = $serializerContext[SchemaFactory::OPENAPI_DEFINITION_NAME] ?? null;
if (null !== $definitionName) {
$name = \sprintf('%s%s', $prefix, $definitionName ? '-'.$definitionName : $definitionName);
} else {
$groups = (array) ($serializerContext[AbstractNormalizer::GROUPS] ?? []);
$attributes = (array) ($serializerContext[AbstractNormalizer::ATTRIBUTES] ?? []);
$parts = [];
if ($groups) {
$parts[] = implode('_', $groups);
}
if ($attributes) {
$parts[] = $this->getAttributesAsString($attributes);
}
$name = $parts ? \sprintf('%s-%s', $prefix, implode('_', $parts)) : $prefix;
}
if (false === ($serializerContext['gen_id'] ?? true)) {
$name .= '_noid';
}
if ('merge-patch+json' === $format) {
$name .= self::GLUE.self::JSON_MERGE_PATCH_SCHEMA_POSTFIX;
}
return $this->encodeDefinitionName($name);
}
private function encodeDefinitionName(string $name): string
{
return preg_replace('/[^a-zA-Z0-9.\-_]/', '.', $name);
}
private function createPrefixFromClass(string $fullyQualifiedClassName, int $namespaceParts = 1): string
{
$parts = explode('\\', $fullyQualifiedClassName);
$name = implode(self::GLUE, \array_slice($parts, -$namespaceParts));
if (!isset($this->prefixCache[$name])) {
$this->prefixCache[$name] = $fullyQualifiedClassName;
return $name;
}
if ($this->prefixCache[$name] !== $fullyQualifiedClassName) {
$name = $this->createPrefixFromClass($fullyQualifiedClassName, ++$namespaceParts);
}
return $name;
}
private function getAttributesAsString(array $attributes): string
{
$parts = [];
foreach ($attributes as $key => $value) {
if (\is_array($value)) {
$childString = $this->getAttributesAsString($value);
$children = explode('_', $childString);
foreach ($children as $child) {
$parts[] = $key.'.'.$child;
}
} elseif (\is_string($key)) {
$parts[] = $key;
} else {
$parts[] = $value;
}
}
return implode('_', $parts);
}
}