mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 04:30:13 +08:00
37 lines
741 B
Go
37 lines
741 B
Go
package rules
|
|
|
|
import (
|
|
"github.com/goravel/framework/contracts/validation"
|
|
"github.com/spf13/cast"
|
|
"panel/pkg/tools"
|
|
)
|
|
|
|
type PathExists struct {
|
|
}
|
|
|
|
// Signature The name of the rule.
|
|
func (receiver *PathExists) Signature() string {
|
|
return "path_exists"
|
|
}
|
|
|
|
// Passes Determine if the validation rule passes.
|
|
func (receiver *PathExists) Passes(_ validation.Data, val any, options ...any) bool {
|
|
// 用户请求过来的数据
|
|
requestValue, err := cast.ToStringE(val)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
|
|
// 判断是否为空
|
|
if len(requestValue) == 0 {
|
|
return false
|
|
}
|
|
|
|
return tools.Exists(requestValue)
|
|
}
|
|
|
|
// Message Get the validation error message.
|
|
func (receiver *PathExists) Message() string {
|
|
return "路径 %v 不存在"
|
|
}
|