forked from selective-php/validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathErrorDetailsResultTransformer.php
More file actions
90 lines (75 loc) · 2.23 KB
/
ErrorDetailsResultTransformer.php
File metadata and controls
90 lines (75 loc) · 2.23 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
<?php
namespace Selective\Validation\Transformer;
use Selective\Validation\Exception\ValidationException;
use Selective\Validation\ValidationError;
use Selective\Validation\ValidationResult;
/**
* Transform validation result to array with error details.
*/
final class ErrorDetailsResultTransformer implements ResultTransformerInterface
{
/**
* @var string
*/
private $detailsName;
/**
* The constructor.
*
* @param string $detailsName The name of the details index
*/
public function __construct(string $detailsName = 'details')
{
$this->detailsName = $detailsName;
}
/**
* Transform the given ValidationResult into an array.
*
* @param ValidationResult $validationResult The validation result
* @param ValidationException|null $exception The validation exception
*
* @return array<mixed> The transformed result
*/
public function transform(ValidationResult $validationResult, ?ValidationException $exception = null): array
{
$error = [];
if ($exception !== null) {
if ($exception->getMessage()) {
$error['message'] = $exception->getMessage();
}
if ($exception->getCode()) {
$error['code'] = $exception->getCode();
}
}
$errors = $validationResult->getErrors();
if (!empty($errors)) {
$error[$this->detailsName] = $this->getErrorDetails($errors);
}
return ['error' => $error];
}
/**
* Get error details.
*
* @param ValidationError[] $errors The errors
*
* @return array<mixed> The details as array
*/
private function getErrorDetails(array $errors): array
{
$details = [];
foreach ($errors as $error) {
$item = [
'message' => $error->getMessage(),
];
$fieldName = $error->getField();
if ($fieldName !== null) {
$item['field'] = $fieldName;
}
$errorCode = $error->getCode();
if ($errorCode !== null) {
$item['code'] = $errorCode;
}
$details[] = $item;
}
return $details;
}
}