42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
package config
|
|
|
|
import (
|
|
"net"
|
|
|
|
"git.apinb.com/bsm-sdk/core/conf"
|
|
"git.apinb.com/bsm-sdk/core/crypto/encipher"
|
|
"git.apinb.com/bsm-sdk/core/env"
|
|
)
|
|
|
|
var (
|
|
Spec SrvConfig
|
|
)
|
|
|
|
type SrvConfig struct {
|
|
conf.Base `yaml:",inline"`
|
|
Databases *conf.DBConf `yaml:"Databases"`
|
|
MicroService *conf.MicroServiceConf `yaml:"MicroService"`
|
|
Rpc map[string]conf.RpcConf `yaml:"Rpc"`
|
|
Gateway *conf.GatewayConf `yaml:"Gateway"`
|
|
Apm *conf.ApmConf `yaml:"APM"`
|
|
Etcd *conf.EtcdConf `yaml:"Etcd"`
|
|
}
|
|
|
|
func New(srvKey string) {
|
|
// 初始化配置 创建一个新的配置实例,用于服务配置
|
|
conf.New(srvKey, &Spec)
|
|
|
|
// 配置校验 服务IP,端口; 端口如果不合规,则随机分配端口
|
|
Spec.Port = conf.CheckPort(Spec.Port)
|
|
Spec.BindIP = conf.CheckIP(Spec.BindIP)
|
|
Spec.Addr = net.JoinHostPort(Spec.BindIP, Spec.Port)
|
|
|
|
// 配置校验 服务名称地址及监听地址不能为空
|
|
conf.NotNil(Spec.Service, Spec.Cache)
|
|
|
|
// 初始化加密SecretKey
|
|
encipher.New(env.Runtime.JwtSecretKey)
|
|
|
|
conf.PrintInfo(Spec.Addr)
|
|
}
|