conf.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package conf
  2. import (
  3. "flag"
  4. "go-common/library/conf"
  5. "go-common/library/log"
  6. "go-common/library/log/infoc"
  7. bm "go-common/library/net/http/blademaster"
  8. "go-common/library/net/http/blademaster/middleware/auth"
  9. "go-common/library/net/http/blademaster/middleware/verify"
  10. "go-common/library/net/rpc"
  11. "go-common/library/net/trace"
  12. "go-common/library/queue/databus"
  13. "github.com/BurntSushi/toml"
  14. )
  15. const (
  16. configKey = "report-click.toml"
  17. )
  18. // global conf
  19. var (
  20. confPath string
  21. Conf *Config
  22. )
  23. // Infoc2 Infoc2.
  24. type Infoc2 struct {
  25. RealTime *infoc.Config
  26. Statistics *infoc.Config
  27. }
  28. // Config config .
  29. type Config struct {
  30. Infoc2 *Infoc2
  31. Env string
  32. Tracer *trace.Config
  33. Xlog *log.Config
  34. App *bm.App
  35. BM *bm.ServerConfig
  36. Auth *auth.Config
  37. Verify *verify.Config
  38. AccRPC *rpc.ClientConfig
  39. HisRPC *rpc.ClientConfig
  40. DataBus *Databus
  41. Click *Click
  42. }
  43. // Databus .
  44. type Databus struct {
  45. Merge *databus.Config
  46. }
  47. // Click click config.
  48. type Click struct {
  49. WebSecret string
  50. OutSecret string
  51. // aes
  52. AesKey string
  53. AesIv string
  54. AesSalt string
  55. // aes2
  56. AesKey2 string
  57. AesIv2 string
  58. AesSalt2 string
  59. From []int64
  60. FromInline []int64
  61. InlineDuration int64 // inline play duration line, 10s
  62. }
  63. func init() {
  64. flag.StringVar(&confPath, "conf", "", "config path")
  65. }
  66. // Init init conf
  67. func Init() (err error) {
  68. if confPath == "" {
  69. return configCenter()
  70. }
  71. _, err = toml.DecodeFile(confPath, &Conf)
  72. return
  73. }
  74. func configCenter() (err error) {
  75. var (
  76. ok bool
  77. value string
  78. client *conf.Client
  79. )
  80. if client, err = conf.New(); err != nil {
  81. return
  82. }
  83. if value, ok = client.Value(configKey); !ok {
  84. panic(err)
  85. }
  86. _, err = toml.Decode(value, &Conf)
  87. return
  88. }