-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconstraints_number.go
393 lines (360 loc) · 13.5 KB
/
constraints_number.go
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
package valix
// Maximum constraint to check that a numeric value is less than or equal to a specified maximum
type Maximum struct {
// the maximum value
Value float64 `v8n:"default"`
// if set to true, ExclusiveMax specifies the maximum value is exclusive
ExclusiveMax bool
// the violation message to be used if the constraint fails (see Violation.Message)
//
// (if the Message is an empty string then the default violation message is used)
Message string
// when set to true, Stop prevents further validation checks on the property if this constraint fails
Stop bool
// when set to true, fails if the value being checked is not a correct type
Strict bool
}
// Check implements Constraint.Check
func (c *Maximum) Check(v interface{}, vcx *ValidatorContext) (bool, string) {
if f, ok, isNumber := coerceToFloat(v); isNumber {
if !ok || f > c.Value || (c.ExclusiveMax && f == c.Value) {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
} else if c.Strict {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
return true, ""
}
// GetMessage implements the Constraint.GetMessage
func (c *Maximum) GetMessage(tcx I18nContext) string {
if c.ExclusiveMax {
return defaultMessage(tcx, c.Message, fmtMsgLt, c.Value)
}
return defaultMessage(tcx, c.Message, fmtMsgLte, c.Value)
}
// MaximumInt constraint to check that an integer value is less than or equal to a specified maximum
type MaximumInt struct {
// the maximum value
Value int64 `v8n:"default"`
// if set to true, ExclusiveMax specifies the maximum value is exclusive
ExclusiveMax bool
// the violation message to be used if the constraint fails (see Violation.Message)
//
// (if the Message is an empty string then the default violation message is used)
Message string
// when set to true, Stop prevents further validation checks on the property if this constraint fails
Stop bool
// when set to true, fails if the value being checked is not a correct type
Strict bool
}
// Check implements Constraint.Check
func (c *MaximumInt) Check(v interface{}, vcx *ValidatorContext) (bool, string) {
if i, ok, isNumber := coerceToInt(v); isNumber {
if !ok || i > c.Value || (c.ExclusiveMax && i == c.Value) {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
} else if c.Strict {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
return true, ""
}
// GetMessage implements the Constraint.GetMessage
func (c *MaximumInt) GetMessage(tcx I18nContext) string {
if c.ExclusiveMax {
return defaultMessage(tcx, c.Message, fmtMsgLt, c.Value)
}
return defaultMessage(tcx, c.Message, fmtMsgLte, c.Value)
}
// Minimum constraint to check that a numeric value is greater than or equal to a specified minimum
type Minimum struct {
// the minimum value
Value float64 `v8n:"default"`
// if set to true, ExclusiveMin specifies the minimum value is exclusive
ExclusiveMin bool
// the violation message to be used if the constraint fails (see Violation.Message)
//
// (if the Message is an empty string then the default violation message is used)
Message string
// when set to true, Stop prevents further validation checks on the property if this constraint fails
Stop bool
// when set to true, fails if the value being checked is not a correct type
Strict bool
}
// Check implements Constraint.Check
func (c *Minimum) Check(v interface{}, vcx *ValidatorContext) (bool, string) {
if f, ok, isNumber := coerceToFloat(v); isNumber {
if !ok || f < c.Value || (c.ExclusiveMin && f == c.Value) {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
} else if c.Strict {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
return true, ""
}
// GetMessage implements the Constraint.GetMessage
func (c *Minimum) GetMessage(tcx I18nContext) string {
if c.ExclusiveMin {
return defaultMessage(tcx, c.Message, fmtMsgGt, c.Value)
}
return defaultMessage(tcx, c.Message, fmtMsgGte, c.Value)
}
// MinimumInt constraint to check that an integer numeric value is greater than or equal to a specified minimum
type MinimumInt struct {
// the minimum value
Value int64 `v8n:"default"`
// if set to true, ExclusiveMin specifies the minimum value is exclusive
ExclusiveMin bool
// the violation message to be used if the constraint fails (see Violation.Message)
//
// (if the Message is an empty string then the default violation message is used)
Message string
// when set to true, Stop prevents further validation checks on the property if this constraint fails
Stop bool
// when set to true, fails if the value being checked is not a correct type
Strict bool
}
// Check implements Constraint.Check
func (c *MinimumInt) Check(v interface{}, vcx *ValidatorContext) (bool, string) {
if i, ok, isNumber := coerceToInt(v); isNumber {
if !ok || i < c.Value || (c.ExclusiveMin && i == c.Value) {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
} else if c.Strict {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
return true, ""
}
// GetMessage implements the Constraint.GetMessage
func (c *MinimumInt) GetMessage(tcx I18nContext) string {
if c.ExclusiveMin {
return defaultMessage(tcx, c.Message, fmtMsgGt, c.Value)
}
return defaultMessage(tcx, c.Message, fmtMsgGte, c.Value)
}
// MultipleOf constraint to check that an integer value is a multiple of a specific number
//
// Note: this constraint will check values that are float or json Number - but the
// check will fail if either of these is not a 'whole number'
type MultipleOf struct {
// the multiple of value to check
Value int64 `v8n:"default"`
// the violation message to be used if the constraint fails (see Violation.Message)
//
// (if the Message is an empty string then the default violation message is used)
Message string
// when set to true, Stop prevents further validation checks on the property if this constraint fails
Stop bool
// when set to true, fails if the value being checked is not a correct type
Strict bool
}
// Check implements Constraint.Check
func (c *MultipleOf) Check(v interface{}, vcx *ValidatorContext) (bool, string) {
if i, ok, isNumber := coerceToInt(v); isNumber {
if !ok || i%c.Value != 0 {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
} else if c.Strict {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
return true, ""
}
// GetMessage implements the Constraint.GetMessage
func (c *MultipleOf) GetMessage(tcx I18nContext) string {
return defaultMessage(tcx, c.Message, fmtMsgMultipleOf, c.Value)
}
// Negative constraint to check that a numeric value is negative
type Negative struct {
// the violation message to be used if the constraint fails (see Violation.Message)
//
// (if the Message is an empty string then the default violation message is used)
Message string `v8n:"default"`
// when set to true, Stop prevents further validation checks on the property if this constraint fails
Stop bool
// when set to true, fails if the value being checked is not a correct type
Strict bool
}
// Check implements Constraint.Check
func (c *Negative) Check(v interface{}, vcx *ValidatorContext) (bool, string) {
if f, ok, isNumber := coerceToFloat(v); isNumber {
if !ok || f >= 0 {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
} else if c.Strict {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
return true, ""
}
// GetMessage implements the Constraint.GetMessage
func (c *Negative) GetMessage(tcx I18nContext) string {
return defaultMessage(tcx, c.Message, msgNegative)
}
// NegativeOrZero constraint to check that a numeric value is negative or zero
type NegativeOrZero struct {
// the violation message to be used if the constraint fails (see Violation.Message)
//
// (if the Message is an empty string then the default violation message is used)
Message string `v8n:"default"`
// when set to true, Stop prevents further validation checks on the property if this constraint fails
Stop bool
// when set to true, fails if the value being checked is not a correct type
Strict bool
}
// Check implements Constraint.Check
func (c *NegativeOrZero) Check(v interface{}, vcx *ValidatorContext) (bool, string) {
if f, ok, isNumber := coerceToFloat(v); isNumber {
if !ok || f > 0 {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
} else if c.Strict {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
return true, ""
}
// GetMessage implements the Constraint.GetMessage
func (c *NegativeOrZero) GetMessage(tcx I18nContext) string {
return defaultMessage(tcx, c.Message, msgNegativeOrZero)
}
// Positive constraint to check that a numeric value is positive (exc. zero)
type Positive struct {
// the violation message to be used if the constraint fails (see Violation.Message)
//
// (if the Message is an empty string then the default violation message is used)
Message string `v8n:"default"`
// when set to true, Stop prevents further validation checks on the property if this constraint fails
Stop bool
// when set to true, fails if the value being checked is not a correct type
Strict bool
}
// Check implements Constraint.Check
func (c *Positive) Check(v interface{}, vcx *ValidatorContext) (bool, string) {
if f, ok, isNumber := coerceToFloat(v); isNumber {
if !ok || f <= 0 {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
} else if c.Strict {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
return true, ""
}
// GetMessage implements the Constraint.GetMessage
func (c *Positive) GetMessage(tcx I18nContext) string {
return defaultMessage(tcx, c.Message, msgPositive)
}
// PositiveOrZero constraint to check that a numeric value is positive or zero
type PositiveOrZero struct {
// the violation message to be used if the constraint fails (see Violation.Message)
//
// (if the Message is an empty string then the default violation message is used)
Message string `v8n:"default"`
// when set to true, Stop prevents further validation checks on the property if this constraint fails
Stop bool
// when set to true, fails if the value being checked is not a correct type
Strict bool
}
// Check implements Constraint.Check
func (c *PositiveOrZero) Check(v interface{}, vcx *ValidatorContext) (bool, string) {
if f, ok, isNumber := coerceToFloat(v); isNumber {
if !ok || f < 0 {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
} else if c.Strict {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
return true, ""
}
// GetMessage implements the Constraint.GetMessage
func (c *PositiveOrZero) GetMessage(tcx I18nContext) string {
return defaultMessage(tcx, c.Message, msgPositiveOrZero)
}
// Range constraint to check that a numeric value is within a specified minimum and maximum range
type Range struct {
// the minimum value of the range
Minimum float64
// the maximum value of the range
Maximum float64
// if set to true, ExclusiveMin specifies the minimum value is exclusive
ExclusiveMin bool
// if set to true, ExclusiveMax specifies the maximum value is exclusive
ExclusiveMax bool
// the violation message to be used if the constraint fails (see Violation.Message)
//
// (if the Message is an empty string then the default violation message is used)
Message string
// when set to true, Stop prevents further validation checks on the property if this constraint fails
Stop bool
// when set to true, fails if the value being checked is not a correct type
Strict bool
}
// Check implements Constraint.Check
func (c *Range) Check(v interface{}, vcx *ValidatorContext) (bool, string) {
if f, ok, isNumber := coerceToFloat(v); isNumber {
if !ok || f < c.Minimum || (c.ExclusiveMin && f == c.Minimum) ||
f > c.Maximum || (c.ExclusiveMax && f == c.Maximum) {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
} else if c.Strict {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
return true, ""
}
// GetMessage implements the Constraint.GetMessage
func (c *Range) GetMessage(tcx I18nContext) string {
return defaultMessage(tcx, c.Message, fmtMsgRange, c.Minimum, incExc(tcx, c.ExclusiveMin), c.Maximum, incExc(tcx, c.ExclusiveMax))
}
// RangeInt constraint to check that an integer value is within a specified minimum and maximum range
type RangeInt struct {
// the minimum value of the range
Minimum int64
// the maximum value of the range
Maximum int64
// if set to true, ExclusiveMin specifies the minimum value is exclusive
ExclusiveMin bool
// if set to true, ExclusiveMax specifies the maximum value is exclusive
ExclusiveMax bool
// the violation message to be used if the constraint fails (see Violation.Message)
//
// (if the Message is an empty string then the default violation message is used)
Message string
// when set to true, Stop prevents further validation checks on the property if this constraint fails
Stop bool
// when set to true, fails if the value being checked is not a correct type
Strict bool
}
// Check implements Constraint.Check
func (c *RangeInt) Check(v interface{}, vcx *ValidatorContext) (bool, string) {
if i, ok, isNumber := coerceToInt(v); isNumber {
if !ok || i < c.Minimum || (c.ExclusiveMin && i == c.Minimum) ||
i > c.Maximum || (c.ExclusiveMax && i == c.Maximum) {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
} else if c.Strict {
vcx.CeaseFurtherIf(c.Stop)
return false, c.GetMessage(vcx)
}
return true, ""
}
// GetMessage implements the Constraint.GetMessage
func (c *RangeInt) GetMessage(tcx I18nContext) string {
return defaultMessage(tcx, c.Message, fmtMsgRange, c.Minimum, incExc(tcx, c.ExclusiveMin), c.Maximum, incExc(tcx, c.ExclusiveMax))
}