conf.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. package conf
  2. import (
  3. "errors"
  4. "flag"
  5. "go-common/library/conf"
  6. ecode "go-common/library/ecode/tip"
  7. "go-common/library/log"
  8. bm "go-common/library/net/http/blademaster"
  9. "go-common/library/net/trace"
  10. "github.com/BurntSushi/toml"
  11. )
  12. // global var
  13. var (
  14. confPath string
  15. client *conf.Client
  16. // Conf config
  17. Conf = &Config{}
  18. )
  19. // Config config set
  20. type Config struct {
  21. // elk
  22. Log *log.Config
  23. // http
  24. BM *bm.ServerConfig
  25. // tracer
  26. Tracer *trace.Config
  27. // ecode
  28. Ecode *ecode.Config
  29. // http client
  30. HTTPClient *bm.ClientConfig
  31. Businesses []*Business
  32. Spread *Spread
  33. }
  34. // Spread .
  35. type Spread struct {
  36. BangumiContentURL string
  37. BangumiOffURL string
  38. }
  39. // Business .
  40. type Business struct {
  41. Appkey string
  42. AppSecret string
  43. }
  44. func init() {
  45. flag.StringVar(&confPath, "conf", "", "default config path")
  46. }
  47. // Init init conf
  48. func Init() error {
  49. if confPath != "" {
  50. return local()
  51. }
  52. return remote()
  53. }
  54. func local() (err error) {
  55. _, err = toml.DecodeFile(confPath, &Conf)
  56. return
  57. }
  58. func remote() (err error) {
  59. if client, err = conf.New(); err != nil {
  60. return
  61. }
  62. if err = load(); err != nil {
  63. return
  64. }
  65. go func() {
  66. for range client.Event() {
  67. log.Info("config reload")
  68. if load() != nil {
  69. log.Error("config reload error (%v)", err)
  70. }
  71. }
  72. }()
  73. return
  74. }
  75. func load() (err error) {
  76. var (
  77. s string
  78. ok bool
  79. tmpConf *Config
  80. )
  81. if s, ok = client.Toml2(); !ok {
  82. return errors.New("load config center error")
  83. }
  84. if _, err = toml.Decode(s, &tmpConf); err != nil {
  85. return errors.New("could not decode config")
  86. }
  87. *Conf = *tmpConf
  88. return
  89. }