reply.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. package conf
  2. import (
  3. "flag"
  4. "go-common/library/cache/memcache"
  5. "go-common/library/cache/redis"
  6. "go-common/library/conf"
  7. "go-common/library/database/elastic"
  8. "go-common/library/database/sql"
  9. ecode "go-common/library/ecode/tip"
  10. "go-common/library/log"
  11. "go-common/library/log/infoc"
  12. bm "go-common/library/net/http/blademaster"
  13. "go-common/library/net/http/blademaster/middleware/auth"
  14. "go-common/library/net/http/blademaster/middleware/verify"
  15. "go-common/library/net/rpc"
  16. "go-common/library/net/rpc/warden"
  17. "go-common/library/net/trace"
  18. "go-common/library/queue/databus"
  19. "go-common/library/time"
  20. "github.com/BurntSushi/toml"
  21. )
  22. // global var
  23. var (
  24. ConfPath string
  25. Conf *Config
  26. )
  27. // Config represent service conf
  28. type Config struct {
  29. BM *bm.ServerConfig
  30. //reply
  31. Reply *Reply
  32. // HTTPClinet
  33. HTTPClient *bm.ClientConfig
  34. DrawyooHTTPClient *bm.ClientConfig
  35. FilterGRPCClient *warden.ClientConfig
  36. FeedGRPCClient *warden.ClientConfig
  37. AccountGRPCClient *warden.ClientConfig
  38. // rpc
  39. RPCClient2 *RPCClient2
  40. // mysql
  41. MySQL *MySQL
  42. // redis
  43. Redis *Redis
  44. // mc
  45. Memcache *Memcache
  46. // seq conf
  47. Seq *Seq
  48. // kafka
  49. Databus *databus.Config
  50. // tracer
  51. Tracer *trace.Config
  52. // XLog
  53. XLog *log.Config
  54. // auth
  55. Auth *auth.Config
  56. // verify
  57. Verify *verify.Config
  58. // ecode
  59. Ecode *ecode.Config
  60. Host *Host
  61. // appkey type
  62. AppkeyType map[string][]int8
  63. // supervision conf
  64. Supervision *Supervision
  65. AssistConfig *AssistConfig
  66. Identification *Identification
  67. ReportAgent *log.AgentConfig
  68. UserReport *databus.Config
  69. // es config
  70. Es *elastic.Config
  71. // info config
  72. Infoc *infoc.Config
  73. }
  74. //Seq Conf
  75. type Seq struct {
  76. BusinessID int64
  77. Token string
  78. }
  79. // Reply represents reply conf
  80. type Reply struct {
  81. HotReply int
  82. MaxPageSize int
  83. MinConLen int
  84. MaxConLen int
  85. SecondDefSize int
  86. SecondDefPageNum int
  87. EmojiExpire time.Duration
  88. MaxEmoji int
  89. BigdataFilter bool
  90. // url
  91. BigdataURL string
  92. AiTopicURL string
  93. VipURL string
  94. FansReceivedListURL string
  95. BlockStatusURL string
  96. CaptchaTokenURL string
  97. CaptchaVerifyURL string
  98. CreditUserURL string
  99. ReplyLogSearchURL string
  100. AidWhiteList []int64
  101. ForbidList []int64
  102. BnjAidList []int64
  103. // 默认排序开关
  104. SortByHotOids map[string]int8
  105. SortByTimeOids map[string]int8
  106. HideFloorOids map[string]int8
  107. // 拜年祭的一些视频默认热评数目需要调整到N个
  108. HotReplyConfig map[string]map[string]int
  109. }
  110. // Host host.
  111. type Host struct {
  112. API string
  113. Search string
  114. }
  115. // MySQL represent mysql conf
  116. type MySQL struct {
  117. Reply *sql.Config
  118. ReplySlave *sql.Config
  119. }
  120. // Redis represent redis conf
  121. type Redis struct {
  122. *redis.Config
  123. IndexExpire time.Duration
  124. ReportExpire time.Duration
  125. UserCntExpire time.Duration
  126. UserActExpire time.Duration
  127. }
  128. // Memcache represent mc conf
  129. type Memcache struct {
  130. *memcache.Config
  131. Expire time.Duration
  132. EmptyExpire time.Duration
  133. }
  134. // RPCClient2 represent rpc conf
  135. type RPCClient2 struct {
  136. Account *rpc.ClientConfig
  137. Filter *rpc.ClientConfig
  138. Location *rpc.ClientConfig
  139. Assist *rpc.ClientConfig
  140. Figure *rpc.ClientConfig
  141. Seq *rpc.ClientConfig
  142. Thumbup *rpc.ClientConfig
  143. Archive *rpc.ClientConfig
  144. Article *rpc.ClientConfig
  145. }
  146. func init() {
  147. flag.StringVar(&ConfPath, "conf", "", "config path")
  148. }
  149. // Supervision supervision .
  150. type Supervision struct {
  151. StartTime string
  152. EndTime string
  153. Completed bool
  154. Location string
  155. ReportAgent *log.AgentConfig
  156. }
  157. // AssistConfig Assist configurations .
  158. type AssistConfig struct {
  159. StartTime string
  160. }
  161. // Identification identification configurations.
  162. type Identification struct {
  163. SwitchOn bool
  164. }
  165. // Init init conf
  166. func Init() (err error) {
  167. if ConfPath == "" {
  168. return configCenter()
  169. }
  170. _, err = toml.DecodeFile(ConfPath, &Conf)
  171. return
  172. }
  173. func configCenter() (err error) {
  174. var (
  175. ok bool
  176. value string
  177. client *conf.Client
  178. )
  179. if client, err = conf.New(); err != nil {
  180. return
  181. }
  182. if value, ok = client.Toml2(); !ok {
  183. panic(err)
  184. }
  185. _, err = toml.Decode(value, &Conf)
  186. return
  187. }