-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathValuesError.php
155 lines (139 loc) · 3.74 KB
/
ValuesError.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
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
/*
* This file is part of the RollerworksSearch package.
*
* (c) Sebastiaan Stok <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Rollerworks\Component\Search;
/**
* @author Sebastiaan Stok <[email protected]>
*/
class ValuesError
{
private $subPath;
private $message;
/**
* The template for the error message.
*
* @var string
*/
private $messageTemplate;
/**
* The parameters that should be substituted in the message template.
*
* @var array
*/
private $messageParameters;
/**
* The value for error message pluralization.
*
* @var int|null
*/
private $messagePluralization;
/**
* @var mixed|null
*/
private $cause;
/**
* Constructor.
*
* Any array key in $messageParameters will be used as a placeholder in
* $messageTemplate.
*
* @param string $subPath Sub-path of the error, this is relative to
* the ValuesBag object.
* @param string $message The translated error message
* @param string|null $messageTemplate The template for the error message
* @param array $messageParameters The parameters that should be
* substituted in the message template.
* @param int|null $messagePluralization The value for error message pluralization
* @param mixed $cause The cause of the error
*
* @see \Symfony\Component\Translation\Translator
*/
public function __construct($subPath, $message, $messageTemplate = null, array $messageParameters = [], $messagePluralization = null, $cause = null)
{
$this->subPath = $subPath;
$this->message = $message;
$this->messageTemplate = $messageTemplate ?: $message;
$this->messageParameters = $messageParameters;
$this->messagePluralization = $messagePluralization;
$this->cause = $cause;
}
/**
* Returns the sub-path of the error.
*
* @return string
*/
public function getSubPath()
{
return $this->subPath;
}
/**
* Returns the error message.
*
* @return string
*/
public function getMessage()
{
return $this->message;
}
/**
* Returns the error message template.
*
* @return string
*/
public function getMessageTemplate()
{
return $this->messageTemplate;
}
/**
* Returns the parameters to be inserted in the message template.
*
* @return array
*/
public function getMessageParameters()
{
return $this->messageParameters;
}
/**
* Returns the value for error message pluralization.
*
* @return int|null
*/
public function getMessagePluralization()
{
return $this->messagePluralization;
}
/**
* @return string
*/
public function __toString()
{
return (string) $this->getMessage();
}
/**
* @return mixed|null
*/
public function getCause()
{
return $this->cause;
}
/**
* Returns the hash that identifies this error.
*
* Caution: This will only use the subPath + messageTemplate + messageParameters + messagePluralization as SHA1.
* So an error with the same information but different cause will produce the same hash!
*
* @return string
*/
public function getHash()
{
return sha1(
$this->subPath.$this->messageTemplate.serialize($this->getMessageParameters()).$this->messagePluralization
);
}
}