|
|
|
package gogen
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
goformat "go/format"
|
|
|
|
"io"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/tal-tech/go-zero/core/collection"
|
|
|
|
"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/util/ctx"
|
|
|
|
)
|
|
|
|
|
|
|
|
func getParentPackage(dir string) (string, error) {
|
|
|
|
abs, err := filepath.Abs(dir)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
projectCtx, err := ctx.Prepare(abs)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return filepath.ToSlash(filepath.Join(projectCtx.Path, strings.TrimPrefix(projectCtx.WorkDir, projectCtx.Dir))), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func writeProperty(writer io.Writer, name, tp, tag, comment string, indent int) error {
|
|
|
|
util.WriteIndent(writer, indent)
|
|
|
|
var err error
|
|
|
|
if len(comment) > 0 {
|
|
|
|
comment = strings.TrimPrefix(comment, "//")
|
|
|
|
comment = "//" + comment
|
|
|
|
_, err = fmt.Fprintf(writer, "%s %s %s %s\n", strings.Title(name), tp, tag, comment)
|
|
|
|
} else {
|
|
|
|
_, err = fmt.Fprintf(writer, "%s %s %s\n", strings.Title(name), tp, tag)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func getAuths(api *spec.ApiSpec) []string {
|
|
|
|
authNames := collection.NewSet()
|
|
|
|
for _, g := range api.Service.Groups {
|
|
|
|
if value, ok := util.GetAnnotationValue(g.Annotations, "server", "jwt"); ok {
|
|
|
|
authNames.Add(value)
|
|
|
|
}
|
|
|
|
if value, ok := util.GetAnnotationValue(g.Annotations, "server", "signature"); ok {
|
|
|
|
authNames.Add(value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return authNames.KeysStr()
|
|
|
|
}
|
|
|
|
|
|
|
|
func getMiddleware(api *spec.ApiSpec) []string {
|
|
|
|
result := collection.NewSet()
|
|
|
|
for _, g := range api.Service.Groups {
|
|
|
|
if value, ok := util.GetAnnotationValue(g.Annotations, "server", "middleware"); ok {
|
|
|
|
for _, item := range strings.Split(value, ",") {
|
|
|
|
result.Add(strings.TrimSpace(item))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result.KeysStr()
|
|
|
|
}
|
|
|
|
|
|
|
|
func formatCode(code string) string {
|
|
|
|
ret, err := goformat.Source([]byte(code))
|
|
|
|
if err != nil {
|
|
|
|
return code
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(ret)
|
|
|
|
}
|