|
|
|
package gogen
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"path"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/api/spec"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/config"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/internal/version"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/util"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/util/format"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/vars"
|
|
|
|
)
|
|
|
|
|
|
|
|
const handlerTemplate = `package handler
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
{{if .After1_1_10}}"github.com/tal-tech/go-zero/rest/httpx"{{end}}
|
|
|
|
{{.ImportPackages}}
|
|
|
|
)
|
|
|
|
|
|
|
|
func {{.HandlerName}}(ctx *svc.ServiceContext) http.HandlerFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
{{if .HasRequest}}var req types.{{.RequestType}}
|
|
|
|
if err := httpx.Parse(r, &req); err != nil {
|
|
|
|
httpx.Error(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
{{end}}l := logic.New{{.LogicType}}(r.Context(), ctx)
|
|
|
|
{{if .HasResp}}resp, {{end}}err := l.{{.Call}}({{if .HasRequest}}req{{end}})
|
|
|
|
if err != nil {
|
|
|
|
httpx.Error(w, err)
|
|
|
|
} else {
|
|
|
|
{{if .HasResp}}httpx.OkJson(w, resp){{else}}httpx.Ok(w){{end}}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
type handlerInfo struct {
|
|
|
|
ImportPackages string
|
|
|
|
HandlerName string
|
|
|
|
RequestType string
|
|
|
|
LogicType string
|
|
|
|
Call string
|
|
|
|
HasResp bool
|
|
|
|
HasRequest bool
|
|
|
|
After1_1_10 bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func genHandler(dir, rootPkg string, cfg *config.Config, group spec.Group, route spec.Route) error {
|
|
|
|
handler := getHandlerName(route)
|
|
|
|
if getHandlerFolderPath(group, route) != handlerDir {
|
|
|
|
handler = strings.Title(handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
goctlVersion := version.GetGoctlVersion()
|
|
|
|
// todo(anqiansong): This will be removed after a certain number of production versions of goctl (probably 5)
|
|
|
|
after1_1_10 := version.IsVersionGreaterThan(goctlVersion, "1.1.10")
|
|
|
|
return doGenToFile(dir, handler, cfg, group, route, handlerInfo{
|
|
|
|
ImportPackages: genHandlerImports(group, route, rootPkg),
|
|
|
|
HandlerName: handler,
|
|
|
|
After1_1_10: after1_1_10,
|
|
|
|
RequestType: util.Title(route.RequestTypeName()),
|
|
|
|
LogicType: strings.Title(getLogicName(route)),
|
|
|
|
Call: strings.Title(strings.TrimSuffix(handler, "Handler")),
|
|
|
|
HasResp: len(route.ResponseTypeName()) > 0,
|
|
|
|
HasRequest: len(route.RequestTypeName()) > 0,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func doGenToFile(dir, handler string, cfg *config.Config, group spec.Group,
|
|
|
|
route spec.Route, handleObj handlerInfo) error {
|
|
|
|
filename, err := format.FileNamingFormat(cfg.NamingFormat, handler)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return genFile(fileGenConfig{
|
|
|
|
dir: dir,
|
|
|
|
subdir: getHandlerFolderPath(group, route),
|
|
|
|
filename: filename + ".go",
|
|
|
|
templateName: "handlerTemplate",
|
|
|
|
category: category,
|
|
|
|
templateFile: handlerTemplateFile,
|
|
|
|
builtinTemplate: handlerTemplate,
|
|
|
|
data: handleObj,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func genHandlers(dir, rootPkg string, cfg *config.Config, api *spec.ApiSpec) error {
|
|
|
|
for _, group := range api.Service.Groups {
|
|
|
|
for _, route := range group.Routes {
|
|
|
|
if err := genHandler(dir, rootPkg, cfg, group, route); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func genHandlerImports(group spec.Group, route spec.Route, parentPkg string) string {
|
|
|
|
var imports []string
|
|
|
|
imports = append(imports, fmt.Sprintf("\"%s\"",
|
|
|
|
util.JoinPackages(parentPkg, getLogicFolderPath(group, route))))
|
|
|
|
imports = append(imports, fmt.Sprintf("\"%s\"", util.JoinPackages(parentPkg, contextDir)))
|
|
|
|
if len(route.RequestTypeName()) > 0 {
|
|
|
|
imports = append(imports, fmt.Sprintf("\"%s\"\n", util.JoinPackages(parentPkg, typesDir)))
|
|
|
|
}
|
|
|
|
|
|
|
|
currentVersion := version.GetGoctlVersion()
|
|
|
|
// todo(anqiansong): This will be removed after a certain number of production versions of goctl (probably 5)
|
|
|
|
if !version.IsVersionGreaterThan(currentVersion, "1.1.10") {
|
|
|
|
imports = append(imports, fmt.Sprintf("\"%s/rest/httpx\"", vars.ProjectOpenSourceURL))
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.Join(imports, "\n\t")
|
|
|
|
}
|
|
|
|
|
|
|
|
func getHandlerBaseName(route spec.Route) (string, error) {
|
|
|
|
handler := route.Handler
|
|
|
|
handler = strings.TrimSpace(handler)
|
|
|
|
handler = strings.TrimSuffix(handler, "handler")
|
|
|
|
handler = strings.TrimSuffix(handler, "Handler")
|
|
|
|
return handler, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getHandlerFolderPath(group spec.Group, route spec.Route) string {
|
|
|
|
folder := route.GetAnnotation(groupProperty)
|
|
|
|
if len(folder) == 0 {
|
|
|
|
folder = group.GetAnnotation(groupProperty)
|
|
|
|
if len(folder) == 0 {
|
|
|
|
return handlerDir
|
|
|
|
}
|
|
|
|
}
|
|
|
|
folder = strings.TrimPrefix(folder, "/")
|
|
|
|
folder = strings.TrimSuffix(folder, "/")
|
|
|
|
return path.Join(handlerDir, folder)
|
|
|
|
}
|
|
|
|
|
|
|
|
func getHandlerName(route spec.Route) string {
|
|
|
|
handler, err := getHandlerBaseName(route)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return handler + "Handler"
|
|
|
|
}
|
|
|
|
|
|
|
|
func getLogicName(route spec.Route) string {
|
|
|
|
handler, err := getHandlerBaseName(route)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return handler + "Logic"
|
|
|
|
}
|