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

53 lines
1.2 KiB
Go
Raw Normal View History

2020-07-29 17:11:41 +08:00
package gogen
import (
"fmt"
"strconv"
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"
"github.com/tal-tech/go-zero/tools/goctl/util/format"
2020-07-29 17:11:41 +08:00
)
const (
defaultPort = 8888
etcDir = "etc"
etcTemplate = `Name: {{.serviceName}}
Host: {{.host}}
Port: {{.port}}
`
2020-07-29 17:11:41 +08:00
)
func genEtc(dir string, cfg *config.Config, api *spec.ApiSpec) error {
filename, err := format.FileNamingFormat(cfg.NamingFormat, api.Service.Name)
if err != nil {
return err
}
2020-07-29 17:11:41 +08:00
service := api.Service
host, ok := util.GetAnnotationValue(service.Groups[0].Annotations, "server", "host")
2020-07-29 17:11:41 +08:00
if !ok {
host = "0.0.0.0"
}
port, ok := util.GetAnnotationValue(service.Groups[0].Annotations, "server", "port")
2020-07-29 17:11:41 +08:00
if !ok {
port = strconv.Itoa(defaultPort)
}
2021-01-09 00:17:23 +08:00
return genFile(fileGenConfig{
dir: dir,
subdir: etcDir,
filename: fmt.Sprintf("%s.yaml", filename),
templateName: "etcTemplate",
category: category,
templateFile: etcTemplateFile,
builtinTemplate: etcTemplate,
data: map[string]string{
"serviceName": service.Name,
"host": host,
"port": port,
},
2020-07-29 17:11:41 +08:00
})
}