config.go 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. package utils
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/server/web"
  5. "github.com/rdlucklib/rdluck_tools/cache"
  6. )
  7. var (
  8. RunMode string //运行模式
  9. MYSQL_URL string //数据库连接
  10. MYSQL_URL_CYGX string //查研观向数据库连接
  11. MYSQL_URL_RDDP string //数据库连接
  12. MYSQL_URL_TACTICS string
  13. REDIS_CACHE string //缓存地址
  14. Rc *cache.Cache //redis缓存
  15. Re error //redis错误
  16. )
  17. // 微信配置信息
  18. var (
  19. WxId string //微信原始ID
  20. WxAppId string //查研观向小程序
  21. WxAppSecret string //查研观向小程序
  22. WxPublicAppId string //查研观向小助手公众号
  23. WxPublicAppSecret string //查研观向小助手公众号
  24. WxOpenAppId string //公众平台AppId
  25. WxOpenAppSecret string //公众平台AppSecret
  26. HeadimgurlDefault string //默认头像
  27. WxMsgTemplateIdApplyXzs string //申请待处理(小助手)
  28. WxMsgTemplateIdApplyCancelXzs string //预约取消提醒(小助手)
  29. WxMsgTemplateIdApply string //申请待处理
  30. WxMsgTemplateIdAskMsgMobile string //手机号用户【XXX】发送模板消息
  31. WxMsgTemplateIdAskMsgMobileAll string //手机号用户【XXX】发送模板消rm --
  32. WxMsgTemplateIdAskMsgXzs string //手机号用户【XXX】发送模板消息模板ID(小助手)
  33. IndexName string
  34. IndexNameComprehensive string //综合搜索Es索引
  35. WxMsgTemplateIdAskMsgMobilePublic string //手机号用户【XXX】发送模板消rm --
  36. WxMsgTemplateIdArticleUserRemind string //用户阅读报告通知-模板ID
  37. WxMsgTemplateIdYXSpecialReview string //王芳、葛琳和沈涛--
  38. ActSendMsgMobile string //活动带问发送模板消息接收者的手机号
  39. YiDongZhengTongYunUrl string //易董 证通云请求域名
  40. YiDongZhengTongYunAppid string //易董 证通云请求appid
  41. YiDongZhengTongYunSecret string //易董 证通云请求secret
  42. YiDongHuaWeiYunUrl string //易董 华为云请求域名
  43. YiDonggetOriginalLink string //易董 短连接转为长链接
  44. )
  45. // 模板消息推送
  46. var (
  47. SendWxTemplateMsgUrl string
  48. WxPlatform = 11 //注册平台,1:日度点评公众号,2:管理后台,3:pc端网站,4:查研观向小程序 ,11:买方研选网页版
  49. SendWxCategoryTemplateMsgUrl string
  50. // 类目模板
  51. WxCategoryMsgTemplateIdApplyXzs string //申请待处理(买方研选)
  52. WxCategoryMsgTemplateIdActivitySign string //买方研选活动签到通知-类目模板ID(买方研选)
  53. WxMsgCategoryTemplateIdCompanyApprovalMessageRai string //权益销售签约成功通知买方研选类目模版消息通知-类目模板ID
  54. WxMsgCategoryTemplateIdActivityPublishApply string //买方研选关注的产业下,单个活动/研选报告发布通知-类目模板ID
  55. )
  56. func init() {
  57. tmpRunMode, err := web.AppConfig.String("run_mode")
  58. if err != nil {
  59. panic("配置文件读取run_mode错误 " + err.Error())
  60. }
  61. RunMode = tmpRunMode
  62. if RunMode == "" {
  63. localIp, err := GetLocalIP()
  64. fmt.Println("localIp:", localIp)
  65. if localIp == "10.0.0.123" {
  66. RunMode = "debug"
  67. } else {
  68. RunMode = "release"
  69. }
  70. configPath := `/home/code/config/hongze_web_mfyx/conf/app.conf`
  71. err = web.LoadAppConfig("ini", configPath)
  72. if err != nil {
  73. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  74. }
  75. }
  76. config, err := web.AppConfig.GetSection(RunMode)
  77. if err != nil {
  78. panic("配置文件读取错误 " + err.Error())
  79. }
  80. fmt.Println(RunMode + " 模式")
  81. MYSQL_URL = config["mysql_url"]
  82. MYSQL_URL_CYGX = config["mysql_url_cygx"]
  83. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  84. REDIS_CACHE = config["beego_cache"]
  85. if len(REDIS_CACHE) <= 0 {
  86. panic("redis链接参数没有配置")
  87. }
  88. Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存
  89. if Re != nil {
  90. fmt.Println(Re)
  91. panic(Re)
  92. }
  93. WxAppId = "wxcc32b61f96720d2f"
  94. WxAppSecret = "06894933fafb24dafead7eaae09c08e0"
  95. WxMsgTemplateIdAskMsgMobileAll = "15557270714,18767183922,18621268829"
  96. WxMsgTemplateIdAskMsgMobilePublic = "15557270714,18767183922,18621268829"
  97. WxMsgTemplateIdYXSpecialReview = "18621268829,18258485832,18767183922" // 王芳、葛琳和沈涛
  98. if RunMode == "release" {
  99. WxPublicAppId = "wx2f85cdbe74585222" //买方研选公众号AppId
  100. WxPublicAppSecret = "98e4a09c9ba6a0b34e0df3192ba1aba3" //买方研选公众号AppSecret
  101. WxMsgTemplateIdApplyXzs = "IpS-yuNNQc8osCoy20jPHNkvBUyKRL1NGn7c0G9xmQA" //申请待处理(小助手)
  102. WxMsgTemplateIdApplyCancelXzs = "gCSCAWNNhjkzE2V1cjbIV_Ex68R_8LM_u25qDlSKWyM" ////预约取消提醒(小助手)
  103. WxMsgTemplateIdApply = "PaoDanHGlt1kFw5q-4_ipJSwO3FyZpxSSNg4rwB7YCk"
  104. WxMsgTemplateIdAskMsgMobile = "15557270714,17634786714,18767183922,17516315016"
  105. WxMsgTemplateIdAskMsgXzs = "IpS-yuNNQc8osCoy20jPHNkvBUyKRL1NGn7c0G9xmQA" //手机号用户【XXX】发送模板消息模板ID(小助手)
  106. WxMsgTemplateIdArticleUserRemind = "fxnlsjx-gm3dAZVJf6f3w27wA7anETl42kexXLP8FDs"
  107. WxOpenAppId = "wx005a32084fc70bf0" //公众平台AppId
  108. WxOpenAppSecret = "caf5bd02ef4b768872027ce01c4b114b" //公众平台AppSecret
  109. IndexName = "cygx_article_v03_23"
  110. IndexNameComprehensive = "cygx_comprehensive"
  111. ActSendMsgMobile = "15618524605"
  112. SendWxTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_template_msg"
  113. SendWxCategoryTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_category_template_msg"
  114. // 类目模版
  115. WxCategoryMsgTemplateIdApplyXzs = "HKD03oZfSv8LJgeoHz0pynai3G2Ls4h8zZ6BfOpZmIA"
  116. WxCategoryMsgTemplateIdActivitySign = "11rITVC5Gl8qwetxl92NqY887Uk14kg3nPtEA_i_zLo"
  117. WxMsgCategoryTemplateIdCompanyApprovalMessageRai = "t1CcxcOkoZkWZrDRs6zYUlceBGYMV3mhkBYUa8a6Mx0" //权益销售签约成功通知买方研选类目模版消息通知-类目模板ID
  118. WxMsgCategoryTemplateIdActivityPublishApply = "IBMqiE61lVgUfFM4rsH0XCH57R_G3PbWvRbnzg9JHPI"
  119. } else {
  120. WxPublicAppId = "wx9b5d7291e581233a" //弘则投研公众号 开发者ID(AppID)
  121. WxPublicAppSecret = "f4d52e34021eee262dce9682b31f8861" //弘则投研公众号秘钥
  122. WxMsgTemplateIdApplyXzs = "qfNuops-sKrfIkbA7U97A7gSrX03mUpoEpJksRUdloo" //申请待处理(小助手)
  123. WxMsgTemplateIdApplyCancelXzs = "UU_d7ks0XZBnWg2xFzxL9Heilm4kisX39K7dr4SDdO8" ////预约取消提醒(小助手)
  124. WxMsgTemplateIdApply = "qfNuops-sKrfIkbA7U97A7gSrX03mUpoEpJksRUdloo"
  125. WxMsgTemplateIdAskMsgMobile = "15557270714,17634786714,18767183922,17516315016"
  126. WxMsgTemplateIdAskMsgXzs = "qfNuops-sKrfIkbA7U97A7gSrX03mUpoEpJksRUdloo" //手机号用户【XXX】发送模板消息模板ID(小助手)
  127. WxMsgTemplateIdArticleUserRemind = "CB7bOl7f3viMG4s1uhRo7WM0Jbx3WvodKuIZ8A_z8fM"
  128. WxOpenAppId = "wx3c1f6106f5ecadf6" //公众平台AppId
  129. WxOpenAppSecret = "0b98982bdcb12d6f0828bb9f2fed9cab" //公众平台AppSecret
  130. IndexName = "cygx_article_v1"
  131. IndexNameComprehensive = "cygx_comprehensive_test"
  132. ActSendMsgMobile = "17634786714"
  133. SendWxTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_template_msg"
  134. SendWxCategoryTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_category_template_msg"
  135. //SendWxCategoryTemplateMsgUrl = "http://8.136.199.33:8086/v1/wechat/send_category_template_msg"
  136. // 类目模版
  137. WxCategoryMsgTemplateIdApplyXzs = "IemWOTzbnLBqJ2ozSiFqm13WjaotoC3V4uXaxTij08I"
  138. WxCategoryMsgTemplateIdActivitySign = "aczgUYZASO97UJiCD_nDmD1eNWZAWudzw3JYcvjJ2x4"
  139. WxMsgCategoryTemplateIdCompanyApprovalMessageRai = "wU4x_c5XruwuA44VZelyklRNOfq4XrU9ILckTtDs6hg" //权益销售签约成功通知买方研选类目模版消息通知-类目模板ID
  140. WxMsgCategoryTemplateIdActivityPublishApply = "wLeV7tVK4ZJBoAvsmfXkHveVW8yefGAkwnVKQWRi8uQ"
  141. }
  142. HeadimgurlDefault = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202202/20220225/XFBBOUmDC5AXkfxnHiuqKpPtoofH.png"
  143. //易董开放api配置
  144. YiDongApiConfig()
  145. }
  146. // YiDongApiConfig 易董开放api配置
  147. func YiDongApiConfig() {
  148. if RunMode == "release" {
  149. YiDongZhengTongYunUrl = "https://services.valueonline.cn/"
  150. YiDongZhengTongYunAppid = "ca86a257ebb46fce"
  151. YiDongZhengTongYunSecret = "338db2b2ca86a257ebb46fced9003f53"
  152. YiDongHuaWeiYunUrl = "https://achievement.valueonline.cn/"
  153. YiDonggetOriginalLink = "https://services.easy-board.com.cn/short-link/getOriginalLink?shortKey="
  154. } else {
  155. YiDongZhengTongYunUrl = "https://services-dev.valueonline.cn/"
  156. YiDongZhengTongYunAppid = "d9bfb79627ac30d0"
  157. YiDongZhengTongYunSecret = "96a61dd2d9bfb79627ac30d02188bbe2"
  158. YiDongHuaWeiYunUrl = "https://achievement-test.valueonline.cn/"
  159. YiDonggetOriginalLink = "https://services-dev.valueonline.cn/short-link/getOriginalLink?shortKey="
  160. }
  161. }
  162. //http://webapi.brilliantstart.cn/api/
  163. //http://webapi.brilliantstart.cn/swagger/
  164. //http://139.196.122.219:8603/swagger/