implement validator interface for config.parameter
This commit is contained in:
parent
54705b7472
commit
dac9aa4298
|
@ -2,8 +2,8 @@ package config
|
|||
|
||||
import "git.xdrm.io/go/aicra/datatype"
|
||||
|
||||
func (param *Parameter) checkAndFormat() error {
|
||||
|
||||
// Validate implements the validator interface
|
||||
func (param *Parameter) Validate(datatypes ...datatype.T) error {
|
||||
// missing description
|
||||
if len(param.Description) < 1 {
|
||||
return ErrMissingParamDesc
|
||||
|
@ -14,7 +14,7 @@ func (param *Parameter) checkAndFormat() error {
|
|||
return ErrMissingParamType
|
||||
}
|
||||
|
||||
// set optional + type
|
||||
// optional type transform
|
||||
if param.Type[0] == '?' {
|
||||
param.Optional = true
|
||||
param.Type = param.Type[1:]
|
||||
|
@ -22,14 +22,3 @@ func (param *Parameter) checkAndFormat() error {
|
|||
|
||||
return nil
|
||||
}
|
||||
|
||||
// assigns the first matching data type from the type definition
|
||||
func (param *Parameter) assignDataType(types []datatype.T) bool {
|
||||
for _, dtype := range types {
|
||||
param.Validator = dtype.Build(param.Type, types...)
|
||||
if param.Validator != nil {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue