12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package new
- import (
- _ "embed"
- "errors"
- "html/template"
- "os"
- "path/filepath"
- "strings"
- "github.com/spf13/cobra"
- "github.com/wuntsong-org/go-zero-plus/tools/goctlwt/api/gogen"
- conf "github.com/wuntsong-org/go-zero-plus/tools/goctlwt/config"
- "github.com/wuntsong-org/go-zero-plus/tools/goctlwt/util"
- "github.com/wuntsong-org/go-zero-plus/tools/goctlwt/util/pathx"
- )
- //go:embed api.tpl
- var apiTemplate string
- var (
- // VarStringHome describes the goctl home.
- VarStringHome string
- // VarStringRemote describes the remote git repository.
- VarStringRemote string
- // VarStringBranch describes the git branch.
- VarStringBranch string
- // VarStringStyle describes the style of output files.
- VarStringStyle string
- )
- // CreateServiceCommand fast create service
- func CreateServiceCommand(_ *cobra.Command, args []string) error {
- dirName := args[0]
- if len(VarStringStyle) == 0 {
- VarStringStyle = conf.DefaultFormat
- }
- if strings.Contains(dirName, "-") {
- return errors.New("api new command service name not support strikethrough, because this will used by function name")
- }
- abs, err := filepath.Abs(dirName)
- if err != nil {
- return err
- }
- err = pathx.MkdirIfNotExist(abs)
- if err != nil {
- return err
- }
- dirName = filepath.Base(filepath.Clean(abs))
- filename := dirName + ".api"
- apiFilePath := filepath.Join(abs, filename)
- fp, err := os.Create(apiFilePath)
- if err != nil {
- return err
- }
- defer fp.Close()
- if len(VarStringRemote) > 0 {
- repo, _ := util.CloneIntoGitHome(VarStringRemote, VarStringBranch)
- if len(repo) > 0 {
- VarStringHome = repo
- }
- }
- if len(VarStringHome) > 0 {
- pathx.RegisterGoctlHome(VarStringHome)
- }
- text, err := pathx.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),
- }); err != nil {
- return err
- }
- err = gogen.DoGenProject(apiFilePath, abs, VarStringStyle)
- return err
- }
|