forked from Respect/Validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNestedArrayFormatter.php
More file actions
155 lines (130 loc) · 4.55 KB
/
NestedArrayFormatter.php
File metadata and controls
155 lines (130 loc) · 4.55 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
<?php
/*
* SPDX-License-Identifier: MIT
* SPDX-FileCopyrightText: (c) Respect Project Contributors
* SPDX-FileContributor: Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-FileContributor: Henrique Moody <henriquemoody@gmail.com>
*/
declare(strict_types=1);
namespace Respect\Validation\Message\Formatter;
use Respect\Validation\Message\ArrayFormatter;
use Respect\Validation\Message\Renderer;
use Respect\Validation\Result;
use function array_values;
use function count;
use function current;
use function is_array;
use function is_numeric;
final readonly class NestedArrayFormatter implements ArrayFormatter
{
/**
* @param array<string|int, mixed> $templates
*
* @return array<string|int, mixed>
*/
public function format(Result $result, Renderer $renderer, array $templates, bool $isRoot = true): array
{
if ($result->children === []) {
return [$result->path->value ?? $result->id->value => $renderer->render($result, $templates, $isRoot)];
}
$hasStringKey = false;
foreach ($result->children as $child) {
if (!is_numeric($child->path->value ?? $child->id->value)) {
$hasStringKey = true;
break;
}
}
$messages = [];
$childCount = count($result->children);
foreach ($result->children as $child) {
$messages = $this->formatChild(
$messages,
$child,
$renderer,
$templates,
$hasStringKey,
$result,
$childCount > 1,
);
}
if (count($messages) > 1) {
return ['__root__' => $renderer->render($result, $templates, $isRoot)] + $messages;
}
return $messages;
}
/**
* @param array<string|int, mixed> $messages
* @param array<string|int, mixed> $templates
*
* @return array<string|int, mixed>
*/
private function formatChild(
array $messages,
Result $child,
Renderer $renderer,
array $templates,
bool $hasStringKey,
Result $parent,
bool $hasMultipleChildren,
): array {
$rawKey = $child->path->value ?? $child->id->value;
$normalizedKey = $hasStringKey && is_numeric($rawKey) ? $child->id->value : $rawKey;
$formatted = $this->format(
$hasMultipleChildren && $child->name === $parent->name ? $child->withoutName() : $child,
$renderer,
$templates,
false,
);
$childMessage = count($formatted) === 1 ? current($formatted) : $formatted;
if (is_array($childMessage) && count($childMessage) > 1 && !isset($childMessage['__root__'])) {
$childMessage = ['__root__' => $renderer->render($child, $templates, false)] + $childMessage;
}
if (!$hasStringKey) {
$messages[] = $childMessage;
return $messages;
}
if (!isset($messages[$normalizedKey])) {
$messages[$normalizedKey] = $childMessage;
return $messages;
}
if ($child->path !== null) {
return $this->mergeWithExistingPath($messages, $normalizedKey, $childMessage);
}
return $this->flattenToIndexedList($messages, $childMessage, $parent, $renderer, $templates);
}
/**
* @param array<string|int, mixed> $messages
* @param array<string|int, mixed>|string $childMessage
*
* @return array<string|int, mixed>
*/
private function mergeWithExistingPath(array $messages, string|int $key, array|string $childMessage): array
{
if (is_array($messages[$key])) {
if (isset($messages[$key]['__root__'])) {
$messages[$key] = [$messages[$key]];
}
$messages[$key][] = $childMessage;
} else {
$messages[$key] = [$messages[$key], $childMessage];
}
return $messages;
}
/**
* @param array<string|int, mixed> $messages
* @param array<string|int, mixed>|string $childMessage
* @param array<string|int, mixed> $templates
*
* @return array<string|int, mixed>
*/
private function flattenToIndexedList(
array $messages,
array|string $childMessage,
Result $parent,
Renderer $renderer,
array $templates,
): array {
$parentMessage = $messages['__root__'] ?? $renderer->render($parent, $templates, false);
return ['__root__' => $parentMessage] + array_values($messages) + [count($messages) => $childMessage];
}
}