conf.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. package conf
  2. import (
  3. "errors"
  4. "flag"
  5. "go-common/library/cache/memcache"
  6. "go-common/library/cache/redis"
  7. "go-common/library/conf"
  8. "go-common/library/database/elastic"
  9. "go-common/library/database/sql"
  10. ecode "go-common/library/ecode/tip"
  11. "go-common/library/log"
  12. bm "go-common/library/net/http/blademaster"
  13. "go-common/library/net/http/blademaster/middleware/auth"
  14. "go-common/library/net/rpc"
  15. "go-common/library/net/trace"
  16. "go-common/library/time"
  17. "github.com/BurntSushi/toml"
  18. )
  19. var (
  20. confPath string
  21. client *conf.Client
  22. // Conf config
  23. Conf = &Config{}
  24. )
  25. // Config .
  26. type Config struct {
  27. Log *log.Config
  28. BM *bm.ServerConfig
  29. Tracer *trace.Config
  30. Memcache *memcache.Config
  31. Ecode *ecode.Config
  32. // ArchiveRPC
  33. ArchiveRPC *rpc.ClientConfig
  34. TagRPC *rpc.ClientConfig
  35. SuitRPC *rpc.ClientConfig
  36. AccountRPC *rpc.ClientConfig
  37. // auth
  38. Auth *auth.Config
  39. // Mysql
  40. DB *DB
  41. // Redis
  42. Redis *Redis
  43. // http client
  44. HTTPClient *bm.ClientConfig
  45. SearchClient *bm.ClientConfig
  46. // Rule
  47. Rule *Rule
  48. // Pendants
  49. Pendants []*Pendant
  50. // Host
  51. Host host
  52. Wechat wechat
  53. Es *elastic.Config
  54. OutSearch OutSearch
  55. Recruit *Recruit
  56. }
  57. // Recruit .
  58. type Recruit struct {
  59. MokaURI string
  60. Orgid string
  61. }
  62. // OutSearch search out .
  63. type OutSearch struct {
  64. Rspan int64
  65. AcPgcFull []string
  66. AcPgcIncre []string
  67. AcUgcFull []string
  68. AcUgcIncre []string
  69. DealCommFull int32
  70. DealLikeFull int32
  71. }
  72. // Redis redis struct .
  73. type Redis struct {
  74. *redis.Config
  75. }
  76. // Rule .
  77. type Rule struct {
  78. Gid int64
  79. ChCardInterval time.Duration
  80. }
  81. // Pendant .
  82. type Pendant struct {
  83. Pid int64
  84. Level int64
  85. }
  86. // DB .
  87. type DB struct {
  88. Goblin *sql.Config
  89. Show *sql.Config
  90. }
  91. type host struct {
  92. Wechat string
  93. PgcURI string
  94. }
  95. type wechat struct {
  96. AppID string
  97. Secret string
  98. }
  99. func init() {
  100. flag.StringVar(&confPath, "conf", "", "default config path")
  101. }
  102. // Init init conf .
  103. func Init() error {
  104. if confPath != "" {
  105. return local()
  106. }
  107. return remote()
  108. }
  109. func local() (err error) {
  110. _, err = toml.DecodeFile(confPath, &Conf)
  111. return
  112. }
  113. func remote() (err error) {
  114. if client, err = conf.New(); err != nil {
  115. return
  116. }
  117. if err = load(); err != nil {
  118. return
  119. }
  120. go func() {
  121. for range client.Event() {
  122. log.Info("config reload")
  123. if load() != nil {
  124. log.Error("config reload error (%v)", err)
  125. }
  126. }
  127. }()
  128. return
  129. }
  130. func load() (err error) {
  131. var (
  132. s string
  133. ok bool
  134. tmpConf *Config
  135. )
  136. if s, ok = client.Toml2(); !ok {
  137. return errors.New("load config center error")
  138. }
  139. if _, err = toml.Decode(s, &tmpConf); err != nil {
  140. return errors.New("could not decode config")
  141. }
  142. *Conf = *tmpConf
  143. return
  144. }