conf.go 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. package conf
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "flag"
  6. "strconv"
  7. "go-common/app/interface/main/creative/model/academy"
  8. appMdl "go-common/app/interface/main/creative/model/app"
  9. "go-common/library/cache/memcache"
  10. "go-common/library/cache/redis"
  11. "go-common/library/conf"
  12. "go-common/library/database/sql"
  13. ecode "go-common/library/ecode/tip"
  14. "go-common/library/log"
  15. bm "go-common/library/net/http/blademaster"
  16. "go-common/library/net/http/blademaster/middleware/antispam"
  17. "go-common/library/net/rpc"
  18. "go-common/library/net/trace"
  19. "go-common/library/queue/databus"
  20. "go-common/library/time"
  21. "go-common/library/net/rpc/warden"
  22. "github.com/BurntSushi/toml"
  23. "go-common/library/database/hbase.v2"
  24. )
  25. // Conf info.
  26. var (
  27. ConfPath string
  28. Conf = &Config{}
  29. client *conf.Client
  30. )
  31. // Config struct.
  32. type Config struct {
  33. // db
  34. DB *DB
  35. // base
  36. // ecode
  37. Ecode *ecode.Config
  38. // log
  39. Log *log.Config
  40. // app
  41. App *bm.App
  42. // HTTPClient
  43. HTTPClient *HTTPClient
  44. // BM
  45. BM *HTTPServers
  46. // rpc client2
  47. ArchiveRPC *rpc.ClientConfig
  48. ArticleRPC *rpc.ClientConfig
  49. ResourceRPC *rpc.ClientConfig
  50. RelationRPC *rpc.ClientConfig
  51. UPRPC *rpc.ClientConfig
  52. SubRPC *rpc.ClientConfig
  53. // mc
  54. Memcache *Memcache
  55. // redis
  56. Redis *Redis
  57. // tracer
  58. Tracer *trace.Config
  59. //nhbase
  60. HBase *HBaseConfig
  61. HBaseOld *HBaseConfig
  62. // white list
  63. WhiteAccessKey string
  64. WhiteMid int64
  65. // host
  66. Host *Host
  67. H5Page *H5Page
  68. // geetest
  69. Geetest *Geetest
  70. // whitelist
  71. Whitelist *Whitelist
  72. // ArchStatus
  73. ArchStatus map[string]string
  74. RouterAntispam *antispam.Config
  75. DmAntispam *antispam.Config
  76. // BFS
  77. BFS *BFS
  78. AppealTag int64
  79. // databus sub
  80. UserInfoSub *databus.Config
  81. TaskPub *databus.Config
  82. // WaterMark
  83. WaterMark *WaterMark
  84. Game *Game
  85. Growup *Growup
  86. StatCacheOn bool
  87. AppIcon *AppIcon
  88. UgcPay *UgcPay
  89. //academy
  90. Coefficient *Coefficient
  91. // academy
  92. Academy *Academy
  93. AcaRecommend *AcaRecommend
  94. //ManagerReport 行为日志平台
  95. ManagerReport *databus.Config
  96. // rpc server
  97. WardenServer *warden.ServerConfig
  98. WardenClient *warden.ClientConfig
  99. CoinClient *warden.ClientConfig
  100. AccClient *warden.ClientConfig
  101. UpClient *warden.ClientConfig
  102. // task condition
  103. TaskCondition *TaskCondition
  104. //联合投稿配置
  105. StaffConf *StaffConf
  106. // honor weekly degrade switch
  107. HonorDegradeSwitch bool
  108. }
  109. // TaskCondition task condition
  110. type TaskCondition struct {
  111. Fans int64
  112. ReceiveMsg string
  113. ReceiveMsgPendant string
  114. WhiteSwitch bool
  115. AppIndexSwitch bool
  116. }
  117. // StaffConf 联合投稿配置
  118. type StaffConf struct {
  119. IsGray bool `json:"is_gray"`
  120. TypeList []*StaffTypeConf `json:"typelist"`
  121. }
  122. // StaffTypeConf 联合投稿的分区配置
  123. type StaffTypeConf struct {
  124. TypeID int16 `json:"typeid"`
  125. MaxStaff int `json:"max_staff"`
  126. }
  127. // UgcPay str
  128. type UgcPay struct {
  129. ProtocolID string
  130. AllowDeleteDays int
  131. AllowEditDays int
  132. }
  133. // Coefficient str
  134. type Coefficient struct {
  135. ActHeat float64
  136. }
  137. // AppIcon str
  138. type AppIcon struct {
  139. CameraInput *appMdl.Icon `json:"camera_input"`
  140. CameraCoo *appMdl.Icon `json:"camera_coo"`
  141. }
  142. // Game str Conf
  143. type Game struct {
  144. OpenHost string
  145. App *bm.App
  146. }
  147. // Growup str
  148. type Growup struct {
  149. LimitFanCnt int64 // LimitFanCnt 一万粉
  150. LimitTotalClick int64 // LimitTotalClick 五十万点击量
  151. }
  152. // DB conf.
  153. type DB struct {
  154. // archive db
  155. Creative *sql.Config
  156. Archive *sql.Config
  157. }
  158. // Thrift conf.
  159. type Thrift struct {
  160. Addr string
  161. Idle int
  162. DialTimeout, ReadTimeout time.Duration
  163. }
  164. // HTTPServers Http Servers
  165. type HTTPServers struct {
  166. Outer *bm.ServerConfig
  167. Local *bm.ServerConfig
  168. }
  169. // HTTPClient conf.
  170. type HTTPClient struct {
  171. Normal *bm.ClientConfig
  172. Slow *bm.ClientConfig
  173. UpMng *bm.ClientConfig
  174. Fast *bm.ClientConfig
  175. Chaodian *bm.ClientConfig
  176. }
  177. // Memcache conf.
  178. type Memcache struct {
  179. Data struct {
  180. *memcache.Config
  181. DataExpire time.Duration
  182. IndexExpire time.Duration
  183. }
  184. Archive struct {
  185. *memcache.Config
  186. TplExpire time.Duration
  187. }
  188. Honor struct {
  189. *memcache.Config
  190. HonorExpire time.Duration
  191. ClickExpire time.Duration
  192. }
  193. }
  194. // Redis conf.
  195. type Redis struct {
  196. Antispam *struct {
  197. *redis.Config
  198. Expire time.Duration
  199. }
  200. Cover *struct {
  201. *redis.Config
  202. Expire time.Duration
  203. }
  204. }
  205. // Host conf.
  206. type Host struct {
  207. Passport string
  208. Archive string
  209. Search string
  210. API string
  211. Data string
  212. Member string
  213. Act string
  214. Activity string
  215. Videoup string
  216. Tag string
  217. Geetest string
  218. Account string
  219. UpMng string
  220. Elec string
  221. Live string
  222. Monitor string
  223. Coverrec string
  224. Growup string
  225. Matsuri string
  226. ArcTip string
  227. Message string
  228. HelpAPI string
  229. MainSearch string
  230. Dynamic string
  231. Mall string //会员购
  232. BPay string //B币券
  233. Pendant string //挂件
  234. BigMember string //大会员
  235. Profit string //激励计划
  236. Notify string //消息通知
  237. Chaodian string //超电
  238. }
  239. // H5Page conf.
  240. type H5Page struct {
  241. FAQVideoEditor string
  242. CreativeCollege string
  243. HotAct string
  244. Draft string
  245. Passport string
  246. Mission string
  247. Cooperate string
  248. }
  249. // Geetest geetest id & key
  250. type Geetest struct {
  251. CaptchaID string
  252. MCaptchaID string
  253. PrivateKEY string
  254. MPrivateKEY string
  255. }
  256. // Whitelist str
  257. type Whitelist struct {
  258. DataMids []int64
  259. ArcMids []int64
  260. ForbidVideoupMids []int64
  261. }
  262. // BFS bfs config
  263. type BFS struct {
  264. Timeout time.Duration
  265. MaxFileSize int
  266. Bucket string
  267. URL string
  268. Method string
  269. Key string
  270. Secret string
  271. }
  272. // WaterMark config
  273. type WaterMark struct {
  274. UnameMark string
  275. UIDMark string
  276. SaveImg string
  277. FontFile string
  278. FontSize int
  279. Consume bool
  280. }
  281. // HBaseConfig for new hbase client.
  282. type HBaseConfig struct {
  283. *hbase.Config
  284. WriteTimeout time.Duration
  285. ReadTimeout time.Duration
  286. }
  287. //Academy for academy h5 conf
  288. type Academy struct {
  289. academy.H5Conf
  290. }
  291. //AcaRecommend for h5 rec conf
  292. type AcaRecommend struct {
  293. academy.Recommend
  294. }
  295. func init() {
  296. flag.StringVar(&ConfPath, "conf", "", "default config path")
  297. }
  298. // Init conf.
  299. func Init() (err error) {
  300. if ConfPath != "" {
  301. return local()
  302. }
  303. return remote()
  304. }
  305. func local() (err error) {
  306. _, err = toml.DecodeFile(ConfPath, &Conf)
  307. //bs, err := ioutil.ReadFile("academy.json")
  308. //if err != nil {
  309. // return err
  310. //}
  311. //if err = json.Unmarshal([]byte(bs), &Conf.AcaRecommend); err != nil {
  312. // return errors.New("could not decode json config")
  313. //}
  314. return
  315. }
  316. func remote() (err error) {
  317. if client, err = conf.New(); err != nil {
  318. return
  319. }
  320. if err = load(); err != nil {
  321. return
  322. }
  323. go func() {
  324. for range client.Event() {
  325. log.Info("config reload")
  326. if load() != nil {
  327. log.Error("config reload error (%v)", err)
  328. }
  329. }
  330. }()
  331. return
  332. }
  333. func load() (err error) {
  334. var (
  335. tomlStr string
  336. jsonStr, acaStr string
  337. ok bool
  338. tmpConf *Config
  339. archStatus map[string]string
  340. )
  341. if tomlStr, ok = client.Toml2(); !ok {
  342. return errors.New("load config center error")
  343. }
  344. if _, err = toml.Decode(tomlStr, &tmpConf); err != nil {
  345. return errors.New("could not decode toml config")
  346. }
  347. if jsonStr, ok = client.Value("archStatus.json"); !ok {
  348. return errors.New("load config center error")
  349. }
  350. if err = json.Unmarshal([]byte(jsonStr), &archStatus); err != nil {
  351. return errors.New("could not decode json config")
  352. }
  353. if acaStr, ok = client.Value("academy.json"); !ok {
  354. return errors.New("load config center error")
  355. }
  356. if err = json.Unmarshal([]byte(acaStr), &tmpConf.AcaRecommend); err != nil {
  357. return errors.New("could not decode json config")
  358. }
  359. tmpConf.ArchStatus = archStatus
  360. *Conf = *tmpConf
  361. return
  362. }
  363. // StatDesc define
  364. func (c *Config) StatDesc(state int) (desc string) {
  365. statusStr := strconv.Itoa(state)
  366. if v, ok := c.ArchStatus[statusStr]; !ok {
  367. desc = statusStr
  368. } else {
  369. desc = v
  370. }
  371. return
  372. }