You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/tools/goctl/api/gogen/genconfig.go

47 lines
873 B
Go

4 years ago
package gogen
import (
"bytes"
4 years ago
"fmt"
4 years ago
"text/template"
"github.com/tal-tech/go-zero/tools/goctl/api/util"
"github.com/tal-tech/go-zero/tools/goctl/vars"
4 years ago
)
const (
configFile = "config.go"
configTemplate = `package config
import {{.authImport}}
4 years ago
type Config struct {
rest.RestConf
4 years ago
}
`
)
4 years ago
func genConfig(dir string) error {
4 years ago
fp, created, err := util.MaybeCreateFile(dir, configDir, configFile)
if err != nil {
return err
}
if !created {
return nil
}
defer fp.Close()
4 years ago
var authImportStr = fmt.Sprintf("\"%s/rest\"", vars.ProjectOpenSourceUrl)
4 years ago
t := template.Must(template.New("configTemplate").Parse(configTemplate))
buffer := new(bytes.Buffer)
err = t.Execute(buffer, map[string]string{
"authImport": authImportStr,
})
if err != nil {
return nil
}
formatCode := formatCode(buffer.String())
_, err = fp.WriteString(formatCode)
return err
}