conf.go 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. bm "go-common/library/net/http/blademaster"
  10. xtime "go-common/library/time"
  11. "github.com/BurntSushi/toml"
  12. )
  13. // Conf global variable.
  14. var (
  15. Conf = &Config{}
  16. client *conf.Client
  17. confPath string
  18. )
  19. // Config struct of conf.
  20. type Config struct {
  21. // base
  22. // log
  23. Log *log.Config
  24. // db
  25. DB *DB
  26. // redis
  27. Redis *Redis
  28. // HTTPClient
  29. HTTPClient *HTTPClient
  30. // limit
  31. Limit *Limit
  32. // geetest
  33. Geetest *Geetest
  34. // rule
  35. Rule map[string]*Limit
  36. // url
  37. URL *URL
  38. // base
  39. Base *Base
  40. }
  41. // URL .
  42. type URL struct {
  43. Shield string
  44. }
  45. // Base .
  46. type Base struct {
  47. ShieldListTime int64
  48. }
  49. //Limit 限制
  50. type Limit struct {
  51. Name string
  52. SaleTimeOut int64
  53. MIDCreateTimeOut int64
  54. MIDCreateMax int64
  55. IPCreateTimeOut int64
  56. IPCreateMax int64
  57. IPChangeInterval int64
  58. IPWhiteList []string
  59. }
  60. //Geetest 极验
  61. type Geetest struct {
  62. Count int64
  63. }
  64. // DB db config.
  65. type DB struct {
  66. AntiFraud *sql.Config
  67. PayShield *sql.Config
  68. }
  69. // Redis conf.
  70. type Redis struct {
  71. *redis.Config
  72. Expire xtime.Duration
  73. VerifyCdTimes xtime.Duration
  74. }
  75. // HTTPClient config
  76. type HTTPClient struct {
  77. Read *bm.ClientConfig
  78. Write *bm.ClientConfig
  79. }
  80. func outer() (err error) {
  81. _, err = toml.DecodeFile(confPath, &Conf)
  82. return
  83. }
  84. func remote() (err error) {
  85. if client, err = conf.New(); err != nil {
  86. return
  87. }
  88. if err = load(); err != nil {
  89. return
  90. }
  91. go func() {
  92. for range client.Event() {
  93. log.Info("config event")
  94. }
  95. }()
  96. return
  97. }
  98. func load() (err error) {
  99. var (
  100. s string
  101. ok bool
  102. tmpConf *Config
  103. )
  104. if s, ok = client.Value("anti-fraud.toml"); !ok {
  105. return errors.New("load config center error")
  106. }
  107. if _, err = toml.Decode(s, &tmpConf); err != nil {
  108. return errors.New("could not decode config")
  109. }
  110. *Conf = *tmpConf
  111. return
  112. }
  113. func init() {
  114. flag.StringVar(&confPath, "conf", "", "default config path")
  115. }
  116. // Init int config
  117. func Init() error {
  118. if confPath != "" {
  119. return outer()
  120. }
  121. return remote()
  122. }