config.go 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. package utils
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "github.com/beego/beego/v2/core/logs"
  7. "github.com/beego/beego/v2/server/web"
  8. "github.com/go-redis/redis/v8"
  9. "strconv"
  10. "strings"
  11. )
  12. var (
  13. RunMode string //运行模式
  14. MYSQL_URL string //数据库连接
  15. MYSQL_URL_RDDP string //数据库连接
  16. MYSQL_URL_EDB string
  17. REDIS_CACHE string //缓存地址
  18. Redis *redis.Client //redis链接
  19. )
  20. var (
  21. STATIC_DIR string
  22. )
  23. //微信配置信息
  24. var (
  25. WxId string //微信原始ID
  26. WxAppId string
  27. WxAppSecret string
  28. TemplateIdByProduct string //产品运行报告通知-模板ID
  29. TemplateRedirectUrl string //模板消息跳转地址
  30. WxPlatform int //用户来源,需要入库,用来保存该用户来自哪个平台,默认是:1
  31. )
  32. //pc端微信配置信息
  33. var (
  34. PcWxId string //微信原始ID
  35. PcWxAppId string
  36. PcWxAppSecret string
  37. PcTemplateIdByProduct string //产品运行报告通知-模板ID
  38. PcTemplateRedirectUrl string //模板消息跳转地址
  39. WxPcPlatform int //用户来源,需要入库,用来保存该用户来自哪个平台,默认是:3
  40. )
  41. var (
  42. ClassifyArr []string
  43. ReportNameArr []string
  44. )
  45. func init() {
  46. tmpRunMode, err := web.AppConfig.String("run_mode")
  47. if err != nil {
  48. panic("配置文件读取run_mode错误 " + err.Error())
  49. }
  50. RunMode = tmpRunMode
  51. if RunMode == "" {
  52. localIp, err := GetLocalIP()
  53. fmt.Println("localIp:", localIp)
  54. if localIp == "10.0.0.123" {
  55. RunMode = "debug"
  56. } else {
  57. RunMode = "release"
  58. }
  59. fmt.Println("RunMode:", RunMode)
  60. configPath := `/home/code/config/hongze_api/conf/app.conf`
  61. fmt.Println("configPath:", configPath)
  62. err = web.LoadAppConfig("ini", configPath)
  63. if err != nil {
  64. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  65. }
  66. //RunMode = "release"
  67. //configPath := `/home/code/config/hongze_api/conf/app.conf`
  68. //err := web.LoadAppConfig("ini", configPath)
  69. //if err != nil {
  70. // fmt.Println("web.LoadAppConfig Err:" + err.Error())
  71. //}
  72. }
  73. config, err := web.AppConfig.GetSection(RunMode)
  74. if err != nil {
  75. panic("配置文件读取错误 " + err.Error())
  76. }
  77. logs.Info(RunMode + " 模式")
  78. MYSQL_URL = config["mysql_url"]
  79. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  80. MYSQL_URL_EDB = config["mysql_url_edb"]
  81. if RunMode == "release" {
  82. WxAppId = "wx4a844c734d8c8e56"
  83. WxAppSecret = "26c586e7ccb3c575433f0f37797b3eeb"
  84. WxId = "gh_b67e0049fb8c"
  85. TemplateIdByProduct = "Cp2wF8gvBtxyWV4DeYuI172oqwyYXVRSm3AyJO42d84"
  86. TemplateRedirectUrl = "https://ficc.hzinsights.com/reportdtl?id="
  87. WxPlatform = 1
  88. WxPcPlatform = 3
  89. PcWxAppId = "wx615472d6874eeb7f"
  90. PcWxAppSecret = "97fe374fb0cc90ef58c4b49d431366f1"
  91. STATIC_DIR = "/home/static/imgs/"
  92. } else {
  93. WxAppId = "wx9b5d7291e581233a"
  94. WxAppSecret = "f4d52e34021eee262dce9682b31f8861"
  95. WxId = "gh_5dc508325c6f"
  96. TemplateIdByProduct = "-YjuPOB7Fqd-S3ilabYa6wvjDY9aXmeEfPN6DCiy-EY"
  97. TemplateRedirectUrl = "http://rddpweb.brilliantstart.cn/reportdtl?id="
  98. WxPlatform = 1
  99. WxPcPlatform = 3
  100. PcWxAppId = "wx7c8084f6e5b1d85a"
  101. PcWxAppSecret = "9e4210cd5a363aa1f316b7c4b8898418"
  102. STATIC_DIR = "/home/static/imgs/"
  103. }
  104. // 初始化redis缓存
  105. initRedis(config)
  106. initAutoReply()
  107. }
  108. // initRedis 初始化redis配置
  109. func initRedis(config map[string]string) {
  110. REDIS_CACHE = config["beego_cache"]
  111. if len(REDIS_CACHE) <= 0 {
  112. panic("redis链接参数没有配置")
  113. }
  114. var redisConf map[string]string
  115. err := json.Unmarshal([]byte(REDIS_CACHE), &redisConf)
  116. if err != nil {
  117. panic("redis 配置异常失败:" + err.Error())
  118. }
  119. redisDb := 0 //默认使用redis的0库
  120. if dbStr, ok := redisConf["db"]; ok {
  121. redisDb, err = strconv.Atoi(dbStr)
  122. if err != nil {
  123. panic("redis 操作db库配置异常,db:" + dbStr)
  124. }
  125. }
  126. client := redis.NewClient(&redis.Options{
  127. Addr: redisConf["conn"],
  128. Password: redisConf["password"],
  129. DB: redisDb,
  130. //PoolSize: 10, //连接池最大socket连接数,默认为10倍CPU数, 10 * runtime.NumCPU(暂不配置)
  131. })
  132. _, err = client.Ping(context.TODO()).Result()
  133. if err != nil {
  134. panic("redis 链接失败:" + err.Error())
  135. }
  136. //全局赋值redis链接
  137. Redis = client
  138. }
  139. //自动回复
  140. func initAutoReply() {
  141. keyWord := `宏观经济、利率债、原油、PTA、MEG、织造终端、甲醇、聚烯烃、沥青、苯乙烯、聚酯、钢材、铁矿、玻璃纯碱、PVC、双焦、铜/铝、镍/不锈钢、锌、钴锂、策略`
  142. ClassifyArr = strings.Split(keyWord, "、")
  143. reportNameStr := `比如晨报、周报、宏观报告、从宏观看商品、大宗商品、数据点评、知白守黑日评、有声有色日评、化里化外日评、股债日评、草根调研`
  144. ReportNameArr = strings.Split(reportNameStr, "、")
  145. }
  146. //http://webapi.brilliantstart.cn/api/
  147. //http://webapi.brilliantstart.cn/swagger/
  148. //http://139.196.122.219:8603/swagger/