conf.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. package conf
  2. import (
  3. "errors"
  4. "flag"
  5. xtime "time"
  6. "go-common/app/interface/main/activity/model/bnj"
  7. "go-common/library/cache/memcache"
  8. "go-common/library/cache/redis"
  9. "go-common/library/conf"
  10. "go-common/library/database/elastic"
  11. "go-common/library/database/sql"
  12. ecode "go-common/library/ecode/tip"
  13. "go-common/library/log"
  14. "go-common/library/net/http/blademaster"
  15. "go-common/library/net/http/blademaster/middleware/auth"
  16. "go-common/library/net/http/blademaster/middleware/verify"
  17. "go-common/library/net/rpc"
  18. "go-common/library/net/rpc/warden"
  19. "go-common/library/net/trace"
  20. "go-common/library/queue/databus"
  21. "go-common/library/stat/prom"
  22. "go-common/library/time"
  23. "go-common/library/database/hbase.v2"
  24. "github.com/BurntSushi/toml"
  25. )
  26. var (
  27. confPath string
  28. client *conf.Client
  29. // Conf is global config
  30. Conf = &Config{}
  31. )
  32. // Config service config
  33. type Config struct {
  34. Static string
  35. // reload
  36. Reload ReloadInterval
  37. // auth
  38. Auth *auth.Config
  39. // verify
  40. Verify *verify.Config
  41. // HTTPServer
  42. HTTPServer *blademaster.ServerConfig
  43. // tracer
  44. Tracer *trace.Config
  45. // db
  46. MySQL *MySQL
  47. // rpc
  48. RPCClient2 *RPCClient2
  49. // grpc
  50. TagClient *warden.ClientConfig
  51. // acc client
  52. AccClient *warden.ClientConfig
  53. // httpClient
  54. HTTPClient *blademaster.ClientConfig
  55. // HTTPClientSports
  56. HTTPClientSports *blademaster.ClientConfig
  57. // HTTPClientBnj
  58. HTTPClientBnj *blademaster.ClientConfig
  59. // HTTPClientKfc
  60. HTTPClientKfc *blademaster.ClientConfig
  61. // Rule
  62. Rule *Rule
  63. // Host
  64. Host Host
  65. // Log
  66. Log *log.Config
  67. // ecode
  68. Ecode *ecode.Config
  69. // ip
  70. IPFile string
  71. // mc
  72. Memcache *Memcache
  73. TimeMc *tmMC
  74. // redis
  75. Redis *Redis
  76. // hbase
  77. Hbase *hbase.Config
  78. RPCServer *rpc.ServerConfig
  79. // interval
  80. Interval *Interval
  81. // Elastic
  82. Elastic *elastic.Config
  83. // ArcClient
  84. ArcClient *warden.ClientConfig
  85. // Time machine conf
  86. Timemachine *timemachine
  87. // Bnj
  88. Bnj2019 *bnj2019
  89. // databus
  90. Databus *Databus
  91. }
  92. // Host remote host.
  93. type Host struct {
  94. Sports string
  95. QqNews string
  96. Activity string
  97. APICo string
  98. Mall string
  99. LiveCo string
  100. }
  101. // Rule rule config.
  102. type Rule struct {
  103. GuessCount int
  104. MaxGuessCoin int64
  105. SuitPids []int64
  106. SuitExpire int64
  107. TickQq time.Duration
  108. QqTryCount int
  109. DTimeout time.Duration
  110. QqStartTime string
  111. QqEndTime string
  112. QqYear string
  113. PlayerYear string
  114. BwsMids []int64
  115. BwsAwardMids []int64
  116. BwsLotteryMids []int64
  117. BwsLotteryAids []int64
  118. BwsSuitExpire int64
  119. NeedInitAchieve bool
  120. DialectTags []int64
  121. DialectRegions []int16
  122. DialectSid int64
  123. SpecialSids []int64
  124. Spylike int64
  125. LotteryActID int64
  126. MatchLotteryID int64
  127. S8Sid int64
  128. S8ArcSid int64
  129. S8ArtSid int64
  130. KingStorySid int64
  131. TmMids []int64
  132. }
  133. // Interval .
  134. type Interval struct {
  135. NewestSubTsInterval time.Duration
  136. PullArcTypeInterval time.Duration
  137. ActSourceInterval time.Duration
  138. TmInternal time.Duration
  139. }
  140. // Prom prom .
  141. type Prom struct {
  142. LIBClient *prom.Prom
  143. LIBClientState *prom.Prom
  144. APIClient *prom.Prom
  145. HTTPServer *prom.Prom
  146. }
  147. // MySQL define MySQL config
  148. type MySQL struct {
  149. Like *sql.Config
  150. }
  151. // ReloadInterval define reolad config
  152. type ReloadInterval struct {
  153. Jobs time.Duration
  154. Notice time.Duration
  155. Ad time.Duration
  156. }
  157. // RPCClient2 define RPC client config
  158. type RPCClient2 struct {
  159. Archive *rpc.ClientConfig
  160. Coin *rpc.ClientConfig
  161. Suit *rpc.ClientConfig
  162. Spy *rpc.ClientConfig
  163. Tag *rpc.ClientConfig
  164. Thumbup *rpc.ClientConfig
  165. Article *rpc.ClientConfig
  166. }
  167. // Redis struct
  168. type Redis struct {
  169. *redis.Config
  170. Expire time.Duration
  171. MatchExpire time.Duration
  172. FollowExpire time.Duration
  173. UserAchExpire time.Duration
  174. UserPointExpire time.Duration
  175. AchCntExpire time.Duration
  176. HotDotExpire time.Duration
  177. RandomExpire time.Duration
  178. ResetExpire time.Duration
  179. RewardExpire time.Duration
  180. }
  181. // Memcache struct
  182. type Memcache struct {
  183. Like *memcache.Config
  184. LikeExpire time.Duration
  185. LikeIPExpire time.Duration
  186. PerpetualExpire time.Duration
  187. ItemExpire time.Duration
  188. SubStatExpire time.Duration
  189. ViewRankExpire time.Duration
  190. SourceItemExpire time.Duration
  191. QqExpire time.Duration
  192. BwsExpire time.Duration
  193. ProtocolExpire time.Duration
  194. KfcExpire time.Duration
  195. KfcCodeExpire time.Duration
  196. }
  197. type tmMC struct {
  198. Timemachine *memcache.Config
  199. TmExpire time.Duration
  200. }
  201. type timemachine struct {
  202. TagDescID int64
  203. TagRegionDescID int64
  204. RegionDescID int64
  205. }
  206. type bnj2019 struct {
  207. ActID int64
  208. SubID int64
  209. GameCancel int64
  210. AdminCheck int64
  211. Admins []int64
  212. TimelinePic string
  213. H5TimelinePic string
  214. Start xtime.Time
  215. Reward []*bnj.Reward
  216. Info []*struct {
  217. Nav string
  218. Pic string
  219. H5Pic string
  220. Aid int64
  221. Detail string
  222. H5Detail string
  223. Nickname string
  224. Publish xtime.Time
  225. }
  226. }
  227. // Databus .
  228. type Databus struct {
  229. Bnj *databus.Config
  230. }
  231. func init() {
  232. flag.StringVar(&confPath, "conf", "", "config path")
  233. }
  234. func local() (err error) {
  235. _, err = toml.DecodeFile(confPath, &Conf)
  236. return
  237. }
  238. // Init conf.
  239. func Init() error {
  240. if confPath != "" {
  241. return local()
  242. }
  243. return remote()
  244. }
  245. func remote() (err error) {
  246. if client, err = conf.New(); err != nil {
  247. return
  248. }
  249. if err = load(); err != nil {
  250. return
  251. }
  252. client.Watch("activity.toml")
  253. go func() {
  254. for range client.Event() {
  255. log.Info("config reload")
  256. if load() != nil {
  257. log.Error("config reload error (%v)", err)
  258. }
  259. }
  260. }()
  261. return
  262. }
  263. func load() (err error) {
  264. var (
  265. s string
  266. ok bool
  267. tmpConf *Config
  268. )
  269. if s, ok = client.Toml2(); !ok {
  270. return errors.New("load config center error")
  271. }
  272. if _, err = toml.Decode(s, &tmpConf); err != nil {
  273. return errors.New("could not decode config")
  274. }
  275. *Conf = *tmpConf
  276. return
  277. }