conf.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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/sql"
  9. "go-common/library/log"
  10. bm "go-common/library/net/http/blademaster"
  11. "go-common/library/net/rpc"
  12. "go-common/library/net/trace"
  13. "go-common/library/queue/databus"
  14. "go-common/library/time"
  15. xtime "go-common/library/time"
  16. "go-common/library/net/rpc/warden"
  17. "github.com/BurntSushi/toml"
  18. )
  19. var (
  20. confPath string
  21. client *conf.Client
  22. // Conf represents a config for spy service.
  23. Conf = &Config{}
  24. )
  25. // Config def.
  26. type Config struct {
  27. Account string
  28. // tracer
  29. Tracer *trace.Config
  30. // http client
  31. HTTPClient *bm.ClientConfig
  32. // db
  33. DB *DB
  34. // rpc server2
  35. RPCServer *rpc.ServerConfig
  36. // memcache
  37. Memcache *Memcache
  38. // log
  39. Log *log.Config
  40. // rpc clients
  41. RPC *RPC
  42. // biz property.
  43. Property *Property
  44. // redis
  45. Redis *Redis
  46. // databus
  47. DBScoreChange *databus.Config
  48. // qcloud
  49. Qcloud *Qcloud
  50. // bm
  51. BM *bm.ServerConfig
  52. // grpc
  53. GRPC *warden.ServerConfig
  54. }
  55. // DB config.
  56. type DB struct {
  57. Spy *sql.Config
  58. }
  59. // Redis redis.
  60. type Redis struct {
  61. *redis.Config
  62. Expire xtime.Duration
  63. VerifyCdTimes xtime.Duration
  64. }
  65. // RPC clients config.
  66. type RPC struct {
  67. Account *rpc.ClientConfig
  68. }
  69. // Memcache config.
  70. type Memcache struct {
  71. User *memcache.Config
  72. UserExpire time.Duration
  73. }
  74. // Property config for biz logic.
  75. type Property struct {
  76. TelValidateURL string
  77. BlockAccountURL string
  78. SecurityLoginURL string
  79. TelInfoByMidURL string
  80. ProfileInfoByMidURL string
  81. UnicomGiftStateURL string
  82. LoadEventTick xtime.Duration
  83. DoubleCheckLevel int32
  84. ConfigLoadTick xtime.Duration
  85. UserInfoShard int64
  86. HistoryShard int64
  87. AutoBlockSwitch bool
  88. Score *struct {
  89. BaseInit int8
  90. EventInit int8
  91. }
  92. Punishment *struct {
  93. ScoreThreshold int8
  94. Times int8
  95. }
  96. Event *struct {
  97. ServiceName string
  98. InitEventID int64
  99. BindMailAndTelLowRisk string
  100. BindMailOnly string
  101. BindNothing string
  102. BindTelLowRiskOnly string
  103. BindTelMediumRisk string
  104. BindTelHighRisk string
  105. BindTelUnknownRisk string
  106. BindTelLowRiskAndIdenAuth string
  107. BindTelLowRiskAndIdenUnauth string
  108. BindTelUnknownRiskAndIdenAuth string
  109. BindTelMediumRiskAndIdenAuth string
  110. BindTelUnknownRiskAndIdenUnauth string
  111. BindTelMediumRiskAndIdenUnauth string
  112. BindMailAndIdenUnknown string
  113. BindTelHighRiskAndIdenAuth string
  114. BindNothingV2 string
  115. BindNothingAndIdenAuth string
  116. BindTelHighRiskAndIdenUnauth string
  117. }
  118. Block *struct {
  119. CycleTimes int64 // unit per seconds
  120. }
  121. White *struct {
  122. Tels []struct {
  123. From int64 // <= from
  124. To int64 // >= to
  125. }
  126. }
  127. }
  128. // Qcloud def.
  129. type Qcloud struct {
  130. Path string
  131. Region string
  132. SecretID string
  133. SecretKey string
  134. Charset string
  135. BaseURL string
  136. }
  137. func init() {
  138. flag.StringVar(&confPath, "conf", "", "config path")
  139. }
  140. // Init init conf.
  141. func Init() (err error) {
  142. if confPath == "" {
  143. return configCenter()
  144. }
  145. _, err = toml.DecodeFile(confPath, &Conf)
  146. return
  147. }
  148. func configCenter() (err error) {
  149. if client, err = conf.New(); err != nil {
  150. panic(err)
  151. }
  152. if err = load(); err != nil {
  153. return
  154. }
  155. go func() {
  156. for range client.Event() {
  157. log.Info("config reload")
  158. if load() != nil {
  159. log.Error("config reload error (%v)", err)
  160. }
  161. }
  162. }()
  163. return
  164. }
  165. func load() (err error) {
  166. var (
  167. s string
  168. ok bool
  169. tmpConf *Config
  170. )
  171. if s, ok = client.Toml2(); !ok {
  172. return errors.New("load config center error")
  173. }
  174. if _, err = toml.Decode(s, &tmpConf); err != nil {
  175. return errors.New("could not decode config")
  176. }
  177. *Conf = *tmpConf
  178. return
  179. }