go-zero/tools/goctl/api/gogen/genlogic.go

125 lines
3.3 KiB
Go
Raw Normal View History

2020-07-29 17:11:41 +08:00
package gogen
import (
"fmt"
"path"
"strings"
2020-08-08 16:40:10 +08:00
"github.com/tal-tech/go-zero/tools/goctl/api/spec"
"github.com/tal-tech/go-zero/tools/goctl/api/util"
"github.com/tal-tech/go-zero/tools/goctl/config"
2020-08-10 17:26:47 +08:00
ctlutil "github.com/tal-tech/go-zero/tools/goctl/util"
"github.com/tal-tech/go-zero/tools/goctl/util/format"
2020-08-08 16:40:10 +08:00
"github.com/tal-tech/go-zero/tools/goctl/vars"
2020-07-29 17:11:41 +08:00
)
const logicTemplate = `package logic
import (
{{.imports}}
)
type {{.logic}} struct {
2020-09-03 10:15:14 +08:00
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
2020-07-29 17:11:41 +08:00
}
func New{{.logic}}(ctx context.Context, svcCtx *svc.ServiceContext) {{.logic}} {
return {{.logic}}{
2020-09-03 10:15:14 +08:00
Logger: logx.WithContext(ctx),
2020-07-29 17:11:41 +08:00
ctx: ctx,
svcCtx: svcCtx,
2020-07-29 17:11:41 +08:00
}
}
func (l *{{.logic}}) {{.function}}({{.request}}) {{.responseType}} {
2020-08-31 20:52:29 +08:00
// todo: add your logic here and delete this line
2020-07-29 17:11:41 +08:00
{{.returnString}}
}
`
func genLogic(dir string, cfg *config.Config, api *spec.ApiSpec) error {
2020-07-29 17:11:41 +08:00
for _, g := range api.Service.Groups {
for _, r := range g.Routes {
err := genLogicByRoute(dir, cfg, g, r)
2020-07-29 17:11:41 +08:00
if err != nil {
return err
}
}
}
return nil
}
func genLogicByRoute(dir string, cfg *config.Config, group spec.Group, route spec.Route) error {
logic := getLogicName(route)
goFile, err := format.FileNamingFormat(cfg.NamingFormat, logic)
if err != nil {
return err
2020-07-29 17:11:41 +08:00
}
2020-09-03 14:00:09 +08:00
2020-07-29 17:11:41 +08:00
parentPkg, err := getParentPackage(dir)
if err != nil {
return err
}
2020-09-03 14:00:09 +08:00
imports := genLogicImports(route, parentPkg)
var responseString string
var returnString string
var requestString string
2020-07-29 17:11:41 +08:00
if len(route.ResponseType.Name) > 0 {
resp := strings.Title(route.ResponseType.Name)
responseString = "(*types." + resp + ", error)"
returnString = fmt.Sprintf("return &types.%s{}, nil", resp)
2020-07-29 17:11:41 +08:00
} else {
responseString = "error"
returnString = "return nil"
}
if len(route.RequestType.Name) > 0 {
requestString = "req " + "types." + strings.Title(route.RequestType.Name)
}
2021-01-09 00:17:23 +08:00
return genFile(fileGenConfig{
dir: dir,
subdir: getLogicFolderPath(group, route),
filename: goFile + ".go",
templateName: "logicTemplate",
category: category,
templateFile: logicTemplateFile,
builtinTemplate: logicTemplate,
data: map[string]string{
"imports": imports,
"logic": strings.Title(logic),
"function": strings.Title(strings.TrimSuffix(logic, "Logic")),
"responseType": responseString,
"returnString": returnString,
"request": requestString,
},
2020-07-29 17:11:41 +08:00
})
}
func getLogicFolderPath(group spec.Group, route spec.Route) string {
folder, ok := util.GetAnnotationValue(route.Annotations, "server", groupProperty)
2020-07-29 17:11:41 +08:00
if !ok {
folder, ok = util.GetAnnotationValue(group.Annotations, "server", groupProperty)
2020-07-29 17:11:41 +08:00
if !ok {
return logicDir
}
}
folder = strings.TrimPrefix(folder, "/")
folder = strings.TrimSuffix(folder, "/")
return path.Join(logicDir, folder)
}
func genLogicImports(route spec.Route, parentPkg string) string {
var imports []string
imports = append(imports, `"context"`+"\n")
2020-08-27 14:40:05 +08:00
imports = append(imports, fmt.Sprintf("\"%s\"", ctlutil.JoinPackages(parentPkg, contextDir)))
2020-07-29 17:11:41 +08:00
if len(route.ResponseType.Name) > 0 || len(route.RequestType.Name) > 0 {
2020-08-27 14:40:05 +08:00
imports = append(imports, fmt.Sprintf("\"%s\"\n", ctlutil.JoinPackages(parentPkg, typesDir)))
2020-07-29 17:11:41 +08:00
}
2020-08-27 14:40:05 +08:00
imports = append(imports, fmt.Sprintf("\"%s/core/logx\"", vars.ProjectOpenSourceUrl))
2020-07-29 17:11:41 +08:00
return strings.Join(imports, "\n\t")
}