You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/tools/goctl/api/tsgen/gen.go

41 lines
842 B
Go

4 years ago
package tsgen
import (
"errors"
"fmt"
"github.com/logrusorgru/aurora"
"github.com/tal-tech/go-zero/core/logx"
"github.com/tal-tech/go-zero/tools/goctl/api/parser"
"github.com/tal-tech/go-zero/tools/goctl/util"
4 years ago
"github.com/urfave/cli"
)
func TsCommand(c *cli.Context) error {
apiFile := c.String("api")
dir := c.String("dir")
webApi := c.String("webapi")
caller := c.String("caller")
unwrapApi := c.Bool("unwrap")
if len(apiFile) == 0 {
return errors.New("missing -api")
}
4 years ago
if len(dir) == 0 {
return errors.New("missing -dir")
}
api, err := parser.Parse(apiFile)
4 years ago
if err != nil {
fmt.Println(aurora.Red("Failed"))
return err
}
logx.Must(util.MkdirIfNotExist(dir))
logx.Must(genHandler(dir, webApi, caller, api, unwrapApi))
logx.Must(genComponents(dir, api))
4 years ago
fmt.Println(aurora.Green("Done."))
return nil
}