go-zero/tools/goctl/api/validate/validate.go

31 lines
530 B
Go
Raw Normal View History

2020-07-29 17:11:41 +08:00
package validate
import (
"errors"
"fmt"
"github.com/logrusorgru/aurora"
"github.com/urfave/cli"
"github.com/zeromicro/go-zero/tools/goctl/api/parser"
2020-07-29 17:11:41 +08:00
)
// GoValidateApi verifies whether the api has a syntax error
2020-07-29 17:11:41 +08:00
func GoValidateApi(c *cli.Context) error {
apiFile := c.String("api")
if len(apiFile) == 0 {
return errors.New("missing -api")
}
spec, err := parser.Parse(apiFile)
if err != nil {
return err
}
err = spec.Validate()
2020-07-29 17:11:41 +08:00
if err == nil {
fmt.Println(aurora.Green("api format ok"))
}
return err
}