mirror of
https://gitee.com/johng/gf.git
synced 2024-11-29 18:57:44 +08:00
57 lines
1.3 KiB
Go
57 lines
1.3 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"
|
|
|
|
"github.com/gogf/gf/v2/text/gstr"
|
|
"github.com/gogf/gf/v2/util/gconv"
|
|
"github.com/gogf/gf/v2/util/gutil"
|
|
)
|
|
|
|
// RuleSame implements `same` rule:
|
|
// Value should be the same as value of field.
|
|
//
|
|
// Format: same:field
|
|
type RuleSame struct{}
|
|
|
|
func init() {
|
|
Register(RuleSame{})
|
|
}
|
|
|
|
func (r RuleSame) Name() string {
|
|
return "same"
|
|
}
|
|
|
|
func (r RuleSame) Message() string {
|
|
return "The {field} value `{value}` must be the same as field {field1} value `{value1}`"
|
|
}
|
|
|
|
func (r RuleSame) Run(in RunInput) error {
|
|
var (
|
|
ok bool
|
|
value = in.Value.String()
|
|
)
|
|
fieldName, fieldValue := gutil.MapPossibleItemByKey(in.Data.Map(), in.RulePattern)
|
|
if fieldValue != nil {
|
|
if in.Option.CaseInsensitive {
|
|
ok = strings.EqualFold(value, gconv.String(fieldValue))
|
|
} else {
|
|
ok = strings.Compare(value, gconv.String(fieldValue)) == 0
|
|
}
|
|
}
|
|
if !ok {
|
|
return errors.New(gstr.ReplaceByMap(in.Message, map[string]string{
|
|
"{field1}": fieldName,
|
|
"{value1}": gconv.String(fieldValue),
|
|
}))
|
|
}
|
|
return nil
|
|
}
|