copy.go
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package command
import (
"fmt"
"gitlab.fjmaimaimai.com/allied-creation/character-library-metadata-bastion/pkg/domain"
"reflect"
"strings"
"github.com/beego/beego/v2/core/validation"
)
type CopyCommand struct {
// Schema:方案 SubProcess:子过程
Type string `cname:"类型" json:"type" valid:"Required"`
// 父级ID
ParentId int `cname:"父级ID" json:"parentId" valid:"Required"`
// 名称
Name string `cname:"名称" json:"name" valid:"Required"`
// 查询集合ID
QuerySetId int `cname:"查询集合ID" json:"querySetId" valid:"Required"`
}
func (cmd *CopyCommand) Valid(validation *validation.Validation) {
if err := domain.ValidQuerySetType(cmd.Type); err != nil {
validation.Error(err.Error())
return
}
}
func (cmd *CopyCommand) ValidateCommand() error {
valid := validation.Validation{}
b, err := valid.Valid(cmd)
if err != nil {
return err
}
if !b {
elem := reflect.TypeOf(cmd).Elem()
for _, validErr := range valid.Errors {
field, isExist := elem.FieldByName(validErr.Field)
if isExist {
return fmt.Errorf(strings.Replace(validErr.Message, validErr.Field, field.Tag.Get("cname"), -1))
} else {
return fmt.Errorf(validErr.Message)
}
}
}
return nil
}