123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- package conf
- import (
- "errors"
- "flag"
- xtime "time"
- "go-common/app/interface/main/activity/model/bnj"
- "go-common/library/cache/memcache"
- "go-common/library/cache/redis"
- "go-common/library/conf"
- "go-common/library/database/elastic"
- "go-common/library/database/sql"
- ecode "go-common/library/ecode/tip"
- "go-common/library/log"
- "go-common/library/net/http/blademaster"
- "go-common/library/net/http/blademaster/middleware/auth"
- "go-common/library/net/http/blademaster/middleware/verify"
- "go-common/library/net/rpc"
- "go-common/library/net/rpc/warden"
- "go-common/library/net/trace"
- "go-common/library/queue/databus"
- "go-common/library/stat/prom"
- "go-common/library/time"
- "go-common/library/database/hbase.v2"
- "github.com/BurntSushi/toml"
- )
- var (
- confPath string
- client *conf.Client
- // Conf is global config
- Conf = &Config{}
- )
- // Config service config
- type Config struct {
- Static string
- // reload
- Reload ReloadInterval
- // auth
- Auth *auth.Config
- // verify
- Verify *verify.Config
- // HTTPServer
- HTTPServer *blademaster.ServerConfig
- // tracer
- Tracer *trace.Config
- // db
- MySQL *MySQL
- // rpc
- RPCClient2 *RPCClient2
- // grpc
- TagClient *warden.ClientConfig
- // acc client
- AccClient *warden.ClientConfig
- // httpClient
- HTTPClient *blademaster.ClientConfig
- // HTTPClientSports
- HTTPClientSports *blademaster.ClientConfig
- // HTTPClientBnj
- HTTPClientBnj *blademaster.ClientConfig
- // HTTPClientKfc
- HTTPClientKfc *blademaster.ClientConfig
- // Rule
- Rule *Rule
- // Host
- Host Host
- // Log
- Log *log.Config
- // ecode
- Ecode *ecode.Config
- // ip
- IPFile string
- // mc
- Memcache *Memcache
- TimeMc *tmMC
- // redis
- Redis *Redis
- // hbase
- Hbase *hbase.Config
- RPCServer *rpc.ServerConfig
- // interval
- Interval *Interval
- // Elastic
- Elastic *elastic.Config
- // ArcClient
- ArcClient *warden.ClientConfig
- // Time machine conf
- Timemachine *timemachine
- // Bnj
- Bnj2019 *bnj2019
- // databus
- Databus *Databus
- }
- // Host remote host.
- type Host struct {
- Sports string
- QqNews string
- Activity string
- APICo string
- Mall string
- LiveCo string
- }
- // Rule rule config.
- type Rule struct {
- GuessCount int
- MaxGuessCoin int64
- SuitPids []int64
- SuitExpire int64
- TickQq time.Duration
- QqTryCount int
- DTimeout time.Duration
- QqStartTime string
- QqEndTime string
- QqYear string
- PlayerYear string
- BwsMids []int64
- BwsAwardMids []int64
- BwsLotteryMids []int64
- BwsLotteryAids []int64
- BwsSuitExpire int64
- NeedInitAchieve bool
- DialectTags []int64
- DialectRegions []int16
- DialectSid int64
- SpecialSids []int64
- Spylike int64
- LotteryActID int64
- MatchLotteryID int64
- S8Sid int64
- S8ArcSid int64
- S8ArtSid int64
- KingStorySid int64
- TmMids []int64
- }
- // Interval .
- type Interval struct {
- NewestSubTsInterval time.Duration
- PullArcTypeInterval time.Duration
- ActSourceInterval time.Duration
- TmInternal time.Duration
- }
- // Prom prom .
- type Prom struct {
- LIBClient *prom.Prom
- LIBClientState *prom.Prom
- APIClient *prom.Prom
- HTTPServer *prom.Prom
- }
- // MySQL define MySQL config
- type MySQL struct {
- Like *sql.Config
- }
- // ReloadInterval define reolad config
- type ReloadInterval struct {
- Jobs time.Duration
- Notice time.Duration
- Ad time.Duration
- }
- // RPCClient2 define RPC client config
- type RPCClient2 struct {
- Archive *rpc.ClientConfig
- Coin *rpc.ClientConfig
- Suit *rpc.ClientConfig
- Spy *rpc.ClientConfig
- Tag *rpc.ClientConfig
- Thumbup *rpc.ClientConfig
- Article *rpc.ClientConfig
- }
- // Redis struct
- type Redis struct {
- *redis.Config
- Expire time.Duration
- MatchExpire time.Duration
- FollowExpire time.Duration
- UserAchExpire time.Duration
- UserPointExpire time.Duration
- AchCntExpire time.Duration
- HotDotExpire time.Duration
- RandomExpire time.Duration
- ResetExpire time.Duration
- RewardExpire time.Duration
- }
- // Memcache struct
- type Memcache struct {
- Like *memcache.Config
- LikeExpire time.Duration
- LikeIPExpire time.Duration
- PerpetualExpire time.Duration
- ItemExpire time.Duration
- SubStatExpire time.Duration
- ViewRankExpire time.Duration
- SourceItemExpire time.Duration
- QqExpire time.Duration
- BwsExpire time.Duration
- ProtocolExpire time.Duration
- KfcExpire time.Duration
- KfcCodeExpire time.Duration
- }
- type tmMC struct {
- Timemachine *memcache.Config
- TmExpire time.Duration
- }
- type timemachine struct {
- TagDescID int64
- TagRegionDescID int64
- RegionDescID int64
- }
- type bnj2019 struct {
- ActID int64
- SubID int64
- GameCancel int64
- AdminCheck int64
- Admins []int64
- TimelinePic string
- H5TimelinePic string
- Start xtime.Time
- Reward []*bnj.Reward
- Info []*struct {
- Nav string
- Pic string
- H5Pic string
- Aid int64
- Detail string
- H5Detail string
- Nickname string
- Publish xtime.Time
- }
- }
- // Databus .
- type Databus struct {
- Bnj *databus.Config
- }
- func init() {
- flag.StringVar(&confPath, "conf", "", "config path")
- }
- func local() (err error) {
- _, err = toml.DecodeFile(confPath, &Conf)
- return
- }
- // Init conf.
- func Init() error {
- if confPath != "" {
- return local()
- }
- return remote()
- }
- func remote() (err error) {
- if client, err = conf.New(); err != nil {
- return
- }
- if err = load(); err != nil {
- return
- }
- client.Watch("activity.toml")
- go func() {
- for range client.Event() {
- log.Info("config reload")
- if load() != nil {
- log.Error("config reload error (%v)", err)
- }
- }
- }()
- return
- }
- func load() (err error) {
- var (
- s string
- ok bool
- tmpConf *Config
- )
- if s, ok = client.Toml2(); !ok {
- return errors.New("load config center error")
- }
- if _, err = toml.Decode(s, &tmpConf); err != nil {
- return errors.New("could not decode config")
- }
- *Conf = *tmpConf
- return
- }
|