conf.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. package conf
  2. import (
  3. "errors"
  4. "flag"
  5. "go-common/library/cache/redis"
  6. "go-common/library/conf"
  7. "go-common/library/database/sql"
  8. "go-common/library/log"
  9. "go-common/library/net/http/blademaster"
  10. "go-common/library/net/http/blademaster/middleware/antispam"
  11. "go-common/library/net/http/blademaster/middleware/auth"
  12. "go-common/library/net/http/blademaster/middleware/verify"
  13. "go-common/library/net/rpc"
  14. "go-common/library/net/rpc/warden"
  15. "go-common/library/net/trace"
  16. "go-common/library/queue/databus"
  17. xtime "go-common/library/time"
  18. "go-common/library/database/hbase.v2"
  19. "github.com/BurntSushi/toml"
  20. )
  21. // global var
  22. var (
  23. confPath string
  24. client *conf.Client
  25. // Conf config
  26. Conf = &Config{}
  27. )
  28. // Config config set
  29. type Config struct {
  30. Log *log.Config
  31. HTTPClient *blademaster.ClientConfig
  32. Tracer *trace.Config
  33. Auth *auth.Config
  34. Verify *verify.Config
  35. // Wechat wechat config
  36. Wechat *wechat
  37. // HBase for fans
  38. HBase *hbaseConf
  39. // FansHBase for attention groups + active time
  40. FansHBase *hbaseConf
  41. Redis *redis.Config
  42. // MySQL
  43. MySQL *sql.Config
  44. AccountRPC *rpc.ClientConfig
  45. // ArchiveSub archive_result databus consumer
  46. ArchiveSub *databus.Config
  47. // RelationSub relation_xxx databus consumer
  48. RelationSub *databus.Config
  49. Push *push
  50. // ArcPush archive push settings
  51. ArcPush *arcPush
  52. PushRPC *warden.ClientConfig
  53. // Anti antispam
  54. Anti *antispam.Config
  55. Bm *blademaster.ServerConfig
  56. Abtest *abtest
  57. }
  58. type abtest struct {
  59. HbaseBlacklistTable string
  60. HbaseBlacklistFamily []string
  61. HbaseeWhitelistTable string
  62. HbaseWhitelistFamily []string
  63. TestGroup []int
  64. ComparisonGroup []int
  65. TestMids []int64
  66. }
  67. type hbaseConf struct {
  68. hbase.Config
  69. ReadTimeout xtime.Duration
  70. ReadsTimeout xtime.Duration
  71. WriteTimeout xtime.Duration
  72. WritesTimeout xtime.Duration
  73. }
  74. /**
  75. * 配置规则:
  76. PushStatisticsKeepDays 推送数据保留天数
  77. PushStatisticsClearTim 每日推送数据删除的时间点
  78. Order 分组优先级,元素=类型#组名,优先级只针对同一类型下有效,没配置优先级的分组不可用
  79. ActiveTime 默认活跃时间(24小时制),过滤粉丝是否在活跃时间段内;未配置则不过滤;若希望过滤活跃时间但不提供默认活跃时间,配置成[0]
  80. ForbidTimes 固定免推送时间段组
  81. Proportions 灰度策略,粉丝尾号100内, 起始点+step
  82. FanGroup 分组具体信息
  83. */
  84. // arcPush 稿件更新的推送设置
  85. type arcPush struct {
  86. PushStatisticsKeepDays int
  87. PushStatisticsClearTime string
  88. Order []string
  89. ActiveTime []int
  90. ForbidTimes []ForbidTime
  91. Proportions []Proportion
  92. FanGroup []*fanGroup
  93. UpperLimitExpire xtime.Duration
  94. }
  95. // ForbidTime 禁止时间范围
  96. type ForbidTime struct {
  97. PushForbidStartTime string
  98. PushForbidEndTime string
  99. }
  100. // Proportion 灰度uid范围
  101. type Proportion struct {
  102. ProportionStartFrom string
  103. Proportion string //必须是2位小数,比如:1.00, 0.05
  104. }
  105. // fanGroup 关注up主的粉丝分组
  106. type fanGroup struct {
  107. Name string
  108. Desc string
  109. RelationType int
  110. Hitby string //命中分组规则,default=全部命中,hbase=hbase表过滤
  111. Limit int
  112. PerUpperLimit int
  113. LimitExpire xtime.Duration
  114. HBaseTable string
  115. HBaseFamily []string
  116. MsgTemplateDesc string
  117. MsgTemplate string
  118. }
  119. type wechat struct {
  120. UserName, Token, Secret string
  121. }
  122. type push struct {
  123. ProdSwitch bool
  124. AddAPI string
  125. MultiAPI string
  126. BusinessID int
  127. BusinessToken string
  128. BusinessSpecialID int
  129. BusinessSpecialToken string
  130. LoadSettingsInterval xtime.Duration
  131. }
  132. func init() {
  133. flag.StringVar(&confPath, "conf", "", "default config path")
  134. }
  135. // Init init conf
  136. func Init() error {
  137. if confPath != "" {
  138. return local()
  139. }
  140. return remote()
  141. }
  142. func local() (err error) {
  143. _, err = toml.DecodeFile(confPath, &Conf)
  144. return
  145. }
  146. func remote() (err error) {
  147. if client, err = conf.New(); err != nil {
  148. return
  149. }
  150. if err = load(); err != nil {
  151. return
  152. }
  153. go func() {
  154. for range client.Event() {
  155. log.Info("config reload")
  156. if load() != nil {
  157. log.Error("config reload error (%v)", err)
  158. }
  159. }
  160. }()
  161. return
  162. }
  163. func load() (err error) {
  164. var (
  165. s string
  166. ok bool
  167. tmpConf *Config
  168. )
  169. if s, ok = client.Toml2(); !ok {
  170. return errors.New("load config center error")
  171. }
  172. if _, err = toml.Decode(s, &tmpConf); err != nil {
  173. return errors.New("could not decode config")
  174. }
  175. *Conf = *tmpConf
  176. return
  177. }