conf.go 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. package conf
  2. import (
  3. "errors"
  4. "flag"
  5. vipverify "go-common/app/service/main/vip/verify"
  6. "go-common/library/cache/memcache"
  7. "go-common/library/cache/redis"
  8. "go-common/library/conf"
  9. ecode "go-common/library/ecode/tip"
  10. "go-common/library/log"
  11. bm "go-common/library/net/http/blademaster"
  12. "go-common/library/net/http/blademaster/middleware/antispam"
  13. "go-common/library/net/http/blademaster/middleware/auth"
  14. "go-common/library/net/http/blademaster/middleware/supervisor"
  15. "go-common/library/net/http/blademaster/middleware/verify"
  16. "go-common/library/net/rpc"
  17. "go-common/library/net/rpc/warden"
  18. "go-common/library/net/trace"
  19. "go-common/library/queue/databus"
  20. "go-common/library/time"
  21. "github.com/BurntSushi/toml"
  22. )
  23. // Conf global variable.
  24. var (
  25. Conf = &Config{}
  26. confPath string
  27. client *conf.Client
  28. )
  29. // Config struct of conf.
  30. type Config struct {
  31. Xlog *log.Config
  32. Tracer *trace.Config
  33. BM *HTTPServers
  34. AuthN *auth.Config
  35. Verify *verify.Config
  36. RPCClient2 *RPC
  37. HTTPClient *HTTPClient
  38. App *bm.App
  39. Ecode *ecode.Config
  40. Antispam *antispam.Config
  41. BatchRelAntispam *antispam.Config
  42. SMSAntispam *antispam.Config
  43. FaceAntispam *antispam.Config
  44. VIPAntispam *antispam.Config
  45. Host *Host
  46. BFS *BFS
  47. FaceBFS *BFS
  48. AccMemcache *memcache.Config
  49. AccRedis *redis.Config
  50. Realname *Realname
  51. Supervisor *supervisor.Config
  52. NickFreeAppKeys map[string]string
  53. Report *databus.Config
  54. Switch *Switch
  55. Vipproperty *VipProperty
  56. AccountNotify *databus.Config
  57. CardClient *warden.ClientConfig
  58. Geetest *Geetest
  59. Account *Account
  60. VipThirdVerifyConfig *vipverify.Config
  61. VipClient *warden.ClientConfig
  62. CouponClient *warden.ClientConfig
  63. }
  64. // Account is
  65. type Account struct {
  66. RemoveLoginLogCIDR []string
  67. }
  68. // Geetest is
  69. type Geetest struct {
  70. PC GeetestConfig
  71. H5 GeetestConfig
  72. }
  73. // GeetestConfig conf.
  74. type GeetestConfig struct {
  75. CaptchaID string
  76. PrivateKEY string
  77. }
  78. // VipProperty .
  79. type VipProperty struct {
  80. CodeOpenwhiteIPMap map[string][]string
  81. OfficialMid int64
  82. OAuthClient *bm.ClientConfig
  83. EleOAuthURI string
  84. EleConsumerKey string
  85. EleOAuthCallBackURI string
  86. ActivityURI string
  87. ActStartTime int64
  88. ActEndTime int64
  89. AssociateWhiteIPMap map[string][]string
  90. AssociateWhiteMidMap []int64
  91. AssociateWhiteOutOpenIDMap []string
  92. }
  93. // Realname .
  94. type Realname struct {
  95. DataDir string
  96. ImageExpire time.Duration
  97. AlipayAntispamTTL int32
  98. AlipayAntispamThreshold int
  99. Geetest *struct {
  100. RegisterURL string
  101. ValidateURL string
  102. CaptchaID string
  103. PrivateKey string
  104. }
  105. Alipay *struct {
  106. Gateway string
  107. AppID string
  108. }
  109. Channel []*struct {
  110. Name string
  111. Flag bool
  112. }
  113. }
  114. // RsaPub .
  115. func RsaPub() (key string) {
  116. if client == nil {
  117. return ""
  118. }
  119. key, _ = client.Value("realname.rsa.pub")
  120. return
  121. }
  122. // RsaPriv .
  123. func RsaPriv() (key string) {
  124. if client == nil {
  125. return ""
  126. }
  127. key, _ = client.Value("realname.rsa.priv")
  128. return
  129. }
  130. // AlipayPub .
  131. func AlipayPub() (key string) {
  132. if client == nil {
  133. return ""
  134. }
  135. key, _ = client.Value("realname.alipay.pub")
  136. return
  137. }
  138. // AlipayBiliPriv bilibili generate rsa private key
  139. func AlipayBiliPriv() (key string) {
  140. if client == nil {
  141. return ""
  142. }
  143. key, _ = client.Value("realname.alipay.bili.priv")
  144. return
  145. }
  146. // BFS bfs config
  147. type BFS struct {
  148. Timeout time.Duration
  149. MaxFileSize int
  150. URL string
  151. Method string
  152. Bucket string
  153. Key string
  154. Secret string
  155. }
  156. // HTTPServers Http Servers
  157. type HTTPServers struct {
  158. Inner *bm.ServerConfig
  159. // Local *bm.ServerConfig
  160. }
  161. // Host host.
  162. type Host struct {
  163. AccCom string
  164. AccCo string
  165. Passport string
  166. API string
  167. Vip string
  168. WWW string
  169. Search string
  170. CM string
  171. PassportCom string
  172. }
  173. // RPC config
  174. type RPC struct {
  175. Relation *rpc.ClientConfig
  176. Member *rpc.ClientConfig
  177. Account *rpc.ClientConfig
  178. Vip *rpc.ClientConfig
  179. Usersuit *rpc.ClientConfig
  180. Archive *rpc.ClientConfig
  181. UP *rpc.ClientConfig
  182. Article *rpc.ClientConfig
  183. PassPort *rpc.ClientConfig
  184. Coin *rpc.ClientConfig
  185. Location *rpc.ClientConfig
  186. Secure *rpc.ClientConfig
  187. Filter *rpc.ClientConfig
  188. Coupon *rpc.ClientConfig
  189. Point *rpc.ClientConfig
  190. Resource *rpc.ClientConfig
  191. }
  192. // HTTPClient conf.
  193. type HTTPClient struct {
  194. Normal *bm.ClientConfig
  195. Slow *bm.ClientConfig
  196. }
  197. // Switch is.
  198. type Switch struct {
  199. UpdatePropertyPhoneRequired bool
  200. }
  201. func configCenter() (err error) {
  202. if client, err = conf.New(); err != nil {
  203. panic(err)
  204. }
  205. if err = load(); err != nil {
  206. return
  207. }
  208. go func() {
  209. for range client.Event() {
  210. log.Info("config reload")
  211. if load() != nil {
  212. log.Error("config reload error (%v)", err)
  213. }
  214. }
  215. }()
  216. return
  217. }
  218. func load() (err error) {
  219. var (
  220. s string
  221. ok bool
  222. tmpConf *Config
  223. )
  224. if s, ok = client.Toml2(); !ok {
  225. return errors.New("load config center error")
  226. }
  227. if _, err = toml.Decode(s, &tmpConf); err != nil {
  228. return errors.New("could not decode config")
  229. }
  230. *Conf = *tmpConf
  231. return
  232. }
  233. func init() {
  234. flag.StringVar(&confPath, "conf", "", "config path")
  235. }
  236. // Init init conf.
  237. func Init() (err error) {
  238. if confPath == "" {
  239. return configCenter()
  240. }
  241. _, err = toml.DecodeFile(confPath, &Conf)
  242. return
  243. }