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.
36 lines
694 B
Go
36 lines
694 B
Go
package dartgen
|
|
|
|
import (
|
|
"errors"
|
|
"strings"
|
|
|
|
"github.com/tal-tech/go-zero/core/logx"
|
|
"github.com/tal-tech/go-zero/tools/goctl/api/parser"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
func DartCommand(c *cli.Context) error {
|
|
apiFile := c.String("api")
|
|
dir := c.String("dir")
|
|
if len(apiFile) == 0 {
|
|
return errors.New("missing -api")
|
|
}
|
|
if len(dir) == 0 {
|
|
return errors.New("missing -dir")
|
|
}
|
|
|
|
api, err := parser.Parse(apiFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !strings.HasSuffix(dir, "/") {
|
|
dir = dir + "/"
|
|
}
|
|
api.Info.Title = strings.Replace(apiFile, ".api", "", -1)
|
|
logx.Must(genData(dir+"data/", api))
|
|
logx.Must(genApi(dir+"api/", api))
|
|
logx.Must(genVars(dir + "vars/"))
|
|
return nil
|
|
}
|