update goctl api (#1052)
* update goctl api * add LoadTemplate * update new api template * update
This commit is contained in:
@@ -59,7 +59,18 @@ func CreateServiceCommand(c *cli.Context) error {
|
||||
}
|
||||
|
||||
defer fp.Close()
|
||||
t := template.Must(template.New("template").Parse(apiTemplate))
|
||||
|
||||
home := c.String("home")
|
||||
if len(home) > 0 {
|
||||
util.RegisterGoctlHome(home)
|
||||
}
|
||||
|
||||
text, err := util.LoadTemplate(category, apiTemplateFile, apiTemplate)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
t := template.Must(template.New("template").Parse(text))
|
||||
if err := t.Execute(fp, map[string]string{
|
||||
"name": dirName,
|
||||
"handler": strings.Title(dirName),
|
||||
|
||||
51
tools/goctl/api/new/template.go
Normal file
51
tools/goctl/api/new/template.go
Normal file
@@ -0,0 +1,51 @@
|
||||
package new
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/tal-tech/go-zero/tools/goctl/util"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
const (
|
||||
category = "newapi"
|
||||
apiTemplateFile = "newtemplate.tpl"
|
||||
)
|
||||
|
||||
var templates = map[string]string{
|
||||
apiTemplateFile: apiTemplate,
|
||||
}
|
||||
|
||||
// Category returns the category of the api files.
|
||||
func Category() string {
|
||||
return category
|
||||
}
|
||||
|
||||
// Clean cleans the generated deployment files.
|
||||
func Clean() error {
|
||||
return util.Clean(category)
|
||||
}
|
||||
|
||||
// GenTemplates generates api template files.
|
||||
func GenTemplates(_ *cli.Context) error {
|
||||
return util.InitTemplates(category, templates)
|
||||
}
|
||||
|
||||
// RevertTemplate reverts the given template file to the default value.
|
||||
func RevertTemplate(name string) error {
|
||||
content, ok := templates[name]
|
||||
if !ok {
|
||||
return fmt.Errorf("%s: no such file name", name)
|
||||
}
|
||||
return util.CreateTemplate(category, name, content)
|
||||
}
|
||||
|
||||
// Update updates the template files to the templates built in current goctl.
|
||||
func Update() error {
|
||||
err := Clean()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return util.InitTemplates(category, templates)
|
||||
}
|
||||
Reference in New Issue
Block a user