1 Star 0 Fork 0

dpnogo/iam

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config.go 1.62 KB
一键复制 编辑 原始数据 按行查看 历史
dpnogo 提交于 2022-03-07 11:57 . 基础架构包
package app
import (
"fmt"
"github.com/marmotedu/component-base/pkg/util/homedir"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
"github.com/spf13/viper"
"os"
"path/filepath"
"strings"
)
const configFlagName = "config"
var cfgFile string
func init() {
// 通过命令行得到配置文件
pflag.StringVarP(&cfgFile, "config", "c", cfgFile, "Read configuration from specified `FILE`, "+
"support JSON, TOML, YAML, HCL, or Java properties formats.")
}
//
func addConfigFlag(basename string, fs *pflag.FlagSet) {
// 将config 参数到 global组中
fs.AddFlag(pflag.Lookup(configFlagName)) // 将config参数写到默认组中
viper.AutomaticEnv() // 读取环境变量
//设置环境变量前缀为basename(大写)
viper.SetEnvPrefix(strings.Replace(strings.ToUpper(basename), "-", "_", -1))
// 将.和-替换为_
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_", "-", "_"))
//判断是否使用文件配置 若无则使用配置文件
cobra.OnInitialize(func() { // 执行运行命令之前,需要做的初始化工作: 得到配置文件
if cfgFile != "" { // 使用配置文件路径进行查找
viper.SetConfigFile(cfgFile)
} else { // 在本地进行查找
viper.AddConfigPath(".")
if names := strings.Split(basename, "-"); len(names) > 1 {
viper.AddConfigPath(filepath.Join(homedir.HomeDir(), "."+names[0]))
}
viper.SetConfigName(basename) // 找到那个文件名的配置
}
// 判断是否找到配置文件的位置
if err := viper.ReadInConfig(); err != nil {
_, _ = fmt.Fprintf(os.Stderr, "Error: failed to read configuration file(%s): %v\n", cfgFile, err)
os.Exit(1)
}
})
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/GomiTo/iam.git
git@gitee.com:GomiTo/iam.git
GomiTo
iam
iam
455e706b39fb

搜索帮助