conf.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. package conf
  2. import (
  3. "errors"
  4. "flag"
  5. "image/color"
  6. "go-common/library/cache/memcache"
  7. "go-common/library/conf"
  8. ecode "go-common/library/ecode/tip"
  9. "go-common/library/log"
  10. bm "go-common/library/net/http/blademaster"
  11. "go-common/library/net/http/blademaster/middleware/rate"
  12. "go-common/library/net/http/blademaster/middleware/verify"
  13. "go-common/library/net/trace"
  14. "go-common/library/time"
  15. "github.com/BurntSushi/toml"
  16. )
  17. var (
  18. confPath string
  19. // Conf .
  20. Conf = &Config{}
  21. )
  22. // Config captcha service config struct.
  23. type Config struct {
  24. XLog *log.Config
  25. Tracer *trace.Config
  26. Ecode *ecode.Config
  27. BM *HTTPServers
  28. Verify *verify.Config
  29. Rate *rate.Config
  30. Memcache *Memcache
  31. Captcha *Captcha
  32. Business []*Business
  33. }
  34. // Memcache represent mc conf
  35. type Memcache struct {
  36. *memcache.Config
  37. Expire time.Duration
  38. }
  39. // HTTPServers Http Servers
  40. type HTTPServers struct {
  41. Outer *bm.ServerConfig
  42. }
  43. // Business third business confs.
  44. type Business struct {
  45. BusinessID string
  46. LenStart int
  47. LenEnd int
  48. Width int
  49. Length int
  50. TTL time.Duration
  51. }
  52. // Captcha captcha service conf.
  53. type Captcha struct {
  54. OuterHost string
  55. Capacity int
  56. DisturbLevel int // 4 normal, 8 medium, 16 high
  57. Ext string // jpeg
  58. Fonts []string
  59. BkgColors []color.RGBA
  60. FrontColors []color.RGBA
  61. Interval time.Duration
  62. }
  63. func init() {
  64. flag.StringVar(&confPath, "conf", "", "config path")
  65. }
  66. // Init captcha service init.
  67. func Init() (err error) {
  68. if confPath == "" {
  69. return configCenter()
  70. }
  71. _, err = toml.DecodeFile(confPath, &Conf)
  72. return
  73. }
  74. // configCenter connect to config center, get configs.
  75. func configCenter() (err error) {
  76. var (
  77. client *conf.Client
  78. value string
  79. ok bool
  80. )
  81. if client, err = conf.New(); err != nil {
  82. return
  83. }
  84. if value, ok = client.Toml2(); !ok {
  85. return errors.New("load config center error")
  86. }
  87. _, err = toml.Decode(value, &Conf)
  88. return
  89. }