From eee04c1aedb83d3f35f8114ecb2f972fb035fca5 Mon Sep 17 00:00:00 2001 From: jaron Date: Mon, 6 Jan 2025 16:18:22 +0800 Subject: [PATCH] fix remote auth username env and env add SetEnvKeyReplacer (#176) * fix(jzero): fix remote auth username env and env add SetEnvKeyReplacer --- cmd/new.go | 8 +++++--- config/config.go | 24 ++++++++++++++---------- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/cmd/new.go b/cmd/new.go index 68102850..ee850a0e 100644 --- a/cmd/new.go +++ b/cmd/new.go @@ -69,8 +69,8 @@ var newCmd = &cobra.Command{ Depth: 0, ReferenceName: plumbing.ReferenceName("refs/heads/" + config.C.New.Branch), Auth: &http.BasicAuth{ - Username: os.Getenv("JZERO_REMOTE_USERNAME"), - Password: os.Getenv("JZERO_REMOTE_PASSWORD"), + Username: config.C.New.RemoteAuthUsername, + Password: config.C.New.RemoteAuthPassword, }, }) cobra.CheckErr(err) @@ -102,8 +102,10 @@ func init() { newCmd.Flags().StringP("module", "m", "", "set go module") newCmd.Flags().StringP("output", "o", "", "set output dir") newCmd.Flags().StringP("home", "", "", "use the specified template.") - newCmd.Flags().StringP("frame", "", "api", "frame") + newCmd.Flags().StringP("frame", "", "api", "set frame") newCmd.Flags().StringP("remote", "r", "https://github.com/jzero-io/templates", "remote templates repo") + newCmd.Flags().StringP("remote-auth-username", "", "", "remote templates repo auth username") + newCmd.Flags().StringP("remote-auth-password", "", "", "remote templates repo auth password") newCmd.Flags().StringP("branch", "b", "", "use remote template repo branch") newCmd.Flags().StringP("local", "", "", "use local template") newCmd.Flags().StringSliceP("features", "", []string{}, "select features") diff --git a/config/config.go b/config/config.go index 24e9b8bf..831569a9 100644 --- a/config/config.go +++ b/config/config.go @@ -3,6 +3,7 @@ package config import ( "fmt" "os" + "strings" "github.com/spf13/pflag" "github.com/spf13/viper" @@ -44,16 +45,18 @@ type Config struct { } type NewConfig struct { - Core bool `mapstructure:"core"` - Home string `mapstructure:"home"` // 新建项目使用的模板文件目录 - Module string `mapstructure:"module"` // 新建的项目的 go module - Mono bool `mapstructure:"mono"` // 是否是 mono 项目(即在一个mod项目之下, 但该项目本身无 go.mod 文件) - Output string `mapstructure:"output"` // 输出到的目录 - Remote string `mapstructure:"remote"` // 远程仓库地址 - Frame string `mapstructure:"frame"` // 使用 jzero 内置的框架 - Branch string `mapstructure:"branch"` // 使用远程模板仓库的某个分支 - Local string `mapstructure:"local"` // 使用本地模板与 branch 对应 - Features []string `mapstructure:"features"` // 新建项目使用哪些特性, 灵活构建模板 + Core bool `mapstructure:"core"` + Home string `mapstructure:"home"` // 新建项目使用的模板文件目录 + Module string `mapstructure:"module"` // 新建的项目的 go module + Mono bool `mapstructure:"mono"` // 是否是 mono 项目(即在一个mod项目之下, 但该项目本身无 go.mod 文件) + Output string `mapstructure:"output"` // 输出到的目录 + Remote string `mapstructure:"remote"` // 远程仓库地址 + RemoteAuthUsername string `mapstructure:"remote-auth-username"` // 远程仓库的认证用户名 + RemoteAuthPassword string `mapstructure:"remote-auth-password"` // 远程仓库的认证密码 + Frame string `mapstructure:"frame"` // 使用 jzero 内置的框架 + Branch string `mapstructure:"branch"` // 使用远程模板仓库的某个分支 + Local string `mapstructure:"local"` // 使用本地模板与 branch 对应 + Features []string `mapstructure:"features"` // 新建项目使用哪些特性, 灵活构建模板 } type GenConfig struct { @@ -243,6 +246,7 @@ func SetConfig(command string, flagSet *pflag.FlagSet) error { }) viper.SetEnvPrefix("JZERO") + viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_", "-", "_")) viper.AutomaticEnv() if err := viper.Unmarshal(&C); err != nil {