gf/util/gvalid/internal/builtin/builtin_boolean.go
2022-09-26 22:11:13 +08:00

51 lines
1.0 KiB
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package builtin
import (
"errors"
"strings"
)
// RuleBoolean implements `boolean` rule:
// Boolean(1,true,on,yes:true | 0,false,off,no,"":false)
//
// Format: boolean
type RuleBoolean struct{}
// boolMap defines the boolean values.
var boolMap = map[string]struct{}{
"1": {},
"true": {},
"on": {},
"yes": {},
"": {},
"0": {},
"false": {},
"off": {},
"no": {},
}
func init() {
Register(RuleBoolean{})
}
func (r RuleBoolean) Name() string {
return "boolean"
}
func (r RuleBoolean) Message() string {
return "The {field} value `{value}` field must be true or false"
}
func (r RuleBoolean) Run(in RunInput) error {
if _, ok := boolMap[strings.ToLower(in.Value.String())]; ok {
return nil
}
return errors.New(in.Message)
}