-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathValidationData.php
More file actions
executable file
·113 lines (91 loc) · 2.87 KB
/
Copy pathValidationData.php
File metadata and controls
executable file
·113 lines (91 loc) · 2.87 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
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
namespace Hyperf\Validation;
use Hyperf\Collection\Arr;
use Hyperf\Stringable\Str;
use function Hyperf\Collection\data_set;
class ValidationData
{
/**
* Initialize and gather data for given attribute.
*/
public static function initializeAndGatherData(string $attribute, array $masterData): array
{
$data = Arr::dot(static::initializeAttributeOnData($attribute, $masterData));
return array_merge($data, static::extractValuesForWildcards(
$masterData,
$data,
$attribute
));
}
/**
* Extract data based on the given dot-notated path.
*
* Used to extract a sub-section of the data for faster iteration.
*
* @param string $attribute
*/
public static function extractDataFromPath($attribute, array $masterData): array
{
$results = [];
$value = Arr::get($masterData, $attribute, '__missing__');
if ($value !== '__missing__') {
Arr::set($results, $attribute, $value);
}
return $results;
}
/**
* Get the explicit part of the attribute name.
*
* E.g. 'foo.bar.*.baz' -> 'foo.bar'
*
* Allows us to not spin through all of the flattened data for some operations.
*
* @return string
*/
public static function getLeadingExplicitAttributePath(string $attribute)
{
return rtrim(explode('*', $attribute)[0], '.') ?: null;
}
/**
* Gather a copy of the attribute data filled with any missing attributes.
*
* @return array
*/
protected static function initializeAttributeOnData(string $attribute, array $masterData)
{
$explicitPath = static::getLeadingExplicitAttributePath($attribute);
$data = static::extractDataFromPath($explicitPath, $masterData);
if (! Str::contains($attribute, '*') || Str::endsWith($attribute, '*')) {
return $data;
}
return data_set($data, $attribute, null, true);
}
/**
* Get all of the exact attribute values for a given wildcard attribute.
*/
protected static function extractValuesForWildcards(array $masterData, array $data, string $attribute): array
{
$keys = [];
$pattern = str_replace('\*', '[^\.]+', preg_quote($attribute));
foreach ($data as $key => $value) {
if ((bool) preg_match('/^' . $pattern . '/', $key, $matches)) {
$keys[] = $matches[0];
}
}
$keys = array_unique($keys);
$data = [];
foreach ($keys as $key) {
$data[$key] = Arr::get($masterData, $key);
}
return $data;
}
}