mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 03:07:45 +08:00
57 lines
1.2 KiB
Go
57 lines
1.2 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/internal/empty"
|
|
"github.com/gogf/gf/v2/util/gutil"
|
|
)
|
|
|
|
// RuleRequiredWith implements `required-with` rule:
|
|
// Required if any of given fields are not empty.
|
|
//
|
|
// Format: required-with:field1,field2,...
|
|
// Example: required-with:id,name
|
|
type RuleRequiredWith struct{}
|
|
|
|
func init() {
|
|
Register(RuleRequiredWith{})
|
|
}
|
|
|
|
func (r RuleRequiredWith) Name() string {
|
|
return "required-with"
|
|
}
|
|
|
|
func (r RuleRequiredWith) Message() string {
|
|
return "The {field} field is required"
|
|
}
|
|
|
|
func (r RuleRequiredWith) Run(in RunInput) error {
|
|
var (
|
|
required = false
|
|
array = strings.Split(in.RulePattern, ",")
|
|
foundValue interface{}
|
|
dataMap = in.Data.Map()
|
|
)
|
|
|
|
for i := 0; i < len(array); i++ {
|
|
_, foundValue = gutil.MapPossibleItemByKey(dataMap, array[i])
|
|
if !empty.IsEmpty(foundValue) {
|
|
required = true
|
|
break
|
|
}
|
|
}
|
|
|
|
if required && isRequiredEmpty(in.Value.Val()) {
|
|
return errors.New(in.Message)
|
|
}
|
|
return nil
|
|
}
|