conf.go 950 Bytes
Newer Older
kzkzzzz's avatar
kzkzzzz committed
1 2 3 4
package conf

import (
	"flag"
kzkzzzz's avatar
kzkzzzz committed
5 6 7 8 9
	"hilo/common/conf"
	"hilo/common/env"
	"hilo/common/logz"
	"hilo/common/mysql"
	"hilo/common/redis"
kzkzzzz's avatar
kzkzzzz committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
)

var (
	confPath string
	Conf     = &Config{}
)

func init() {
	flag.StringVar(&confPath, "conf", "config/config.yaml", "指定配置文件 eg: -conf config.yaml")
}

type Config struct {
	Server *Server
	Data   *Data
	Log    *logz.Config
	Consul *Consul
	Jaeger *Jaeger
}

type Consul struct {
	Addr string
}

type Jaeger struct {
	Url string
}

type Data struct {
	Mysql *mysql.Config
	Redis *redis.Config
}

type Server struct {
	Name    string
kzkzzzz's avatar
kzkzzzz committed
44
	Mode    string
kzkzzzz's avatar
kzkzzzz committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58
	Version string
	Grpc    struct {
		Addr    string
		Timeout int
	}
	Http struct {
		Addr    string
		Timeout int
	}
}

func LoadConfig() {
	conf.LoadFromYaml(confPath, &Conf)
}
kzkzzzz's avatar
kzkzzzz committed
59 60 61 62 63 64 65 66 67 68 69 70

func GetMode() string {
	return Conf.Server.Mode
}

func AppIsRelease() bool {
	return GetMode() == env.RELEASE
}

func AppIsLocal() bool {
	return GetMode() == env.LOCAL
}