forked from go-ozzo/ozzo-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnot_zero.go
32 lines (26 loc) · 860 Bytes
/
not_zero.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
// Copyright 2016 Qiang Xue. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package validation
import "errors"
// NotEmpty is a validation rule that checks if a value is not nil.
// NotEmpty only handles types including interface, pointer, slice, and map.
// All other types are considered valid.
var NotEmpty = ¬EmptyRule{message: "is not empty"}
type notEmptyRule struct {
message string
}
// Validate checks if the given value is valid or not.
func (r *notEmptyRule) Validate(value interface{}) error {
value, isNil := Indirect(value)
if isNil || IsEmpty(value) {
return errors.New(r.message)
}
return nil
}
// Error sets the error message for the rule.
func (r *notEmptyRule) Error(message string) *notEmptyRule {
return ¬EmptyRule{
message: message,
}
}