config.go 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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. WxPayJsapiNotifyUrl string //微信小程序支付下单回调接口
  51. // 类目模板
  52. WxCategoryMsgTemplateIdApplyXzs string //申请待处理(买方研选)
  53. WxCategoryMsgTemplateIdActivitySign string //买方研选活动签到通知-类目模板ID(买方研选)
  54. WxMsgCategoryTemplateIdCompanyApprovalMessageRai string //权益销售签约成功通知买方研选类目模版消息通知-类目模板ID
  55. WxMsgCategoryTemplateIdActivityPublishApply string //买方研选关注的产业下,单个活动/研选报告发布通知-类目模板ID
  56. )
  57. func init() {
  58. tmpRunMode, err := web.AppConfig.String("run_mode")
  59. if err != nil {
  60. panic("配置文件读取run_mode错误 " + err.Error())
  61. }
  62. RunMode = tmpRunMode
  63. if RunMode == "" {
  64. localIp, err := GetLocalIP()
  65. fmt.Println("localIp:", localIp)
  66. if localIp == "10.0.0.123" {
  67. RunMode = "debug"
  68. } else {
  69. RunMode = "release"
  70. }
  71. configPath := `/home/code/config/hongze_web_mfyx/conf/app.conf`
  72. err = web.LoadAppConfig("ini", configPath)
  73. if err != nil {
  74. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  75. }
  76. }
  77. config, err := web.AppConfig.GetSection(RunMode)
  78. if err != nil {
  79. panic("配置文件读取错误 " + err.Error())
  80. }
  81. fmt.Println(RunMode + " 模式")
  82. MYSQL_URL = config["mysql_url"]
  83. MYSQL_URL_CYGX = config["mysql_url_cygx"]
  84. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  85. REDIS_CACHE = config["beego_cache"]
  86. if len(REDIS_CACHE) <= 0 {
  87. panic("redis链接参数没有配置")
  88. }
  89. Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存
  90. if Re != nil {
  91. fmt.Println(Re)
  92. panic(Re)
  93. }
  94. WxAppId = "wxcc32b61f96720d2f"
  95. WxAppSecret = "06894933fafb24dafead7eaae09c08e0"
  96. WxMsgTemplateIdAskMsgMobileAll = "15557270714,18767183922,18621268829"
  97. WxMsgTemplateIdAskMsgMobilePublic = "15557270714,18767183922,18621268829"
  98. WxMsgTemplateIdYXSpecialReview = "18621268829,18258485832,18767183922" // 王芳、葛琳和沈涛
  99. if RunMode == "release" {
  100. WxPublicAppId = "wx2f85cdbe74585222" //买方研选公众号AppId
  101. WxPublicAppSecret = "98e4a09c9ba6a0b34e0df3192ba1aba3" //买方研选公众号AppSecret
  102. WxMsgTemplateIdApplyXzs = "IpS-yuNNQc8osCoy20jPHNkvBUyKRL1NGn7c0G9xmQA" //申请待处理(小助手)
  103. WxMsgTemplateIdApplyCancelXzs = "gCSCAWNNhjkzE2V1cjbIV_Ex68R_8LM_u25qDlSKWyM" ////预约取消提醒(小助手)
  104. WxMsgTemplateIdApply = "PaoDanHGlt1kFw5q-4_ipJSwO3FyZpxSSNg4rwB7YCk"
  105. WxMsgTemplateIdAskMsgMobile = "15557270714,17634786714,18767183922,17516315016"
  106. WxMsgTemplateIdAskMsgXzs = "IpS-yuNNQc8osCoy20jPHNkvBUyKRL1NGn7c0G9xmQA" //手机号用户【XXX】发送模板消息模板ID(小助手)
  107. WxMsgTemplateIdArticleUserRemind = "fxnlsjx-gm3dAZVJf6f3w27wA7anETl42kexXLP8FDs"
  108. WxOpenAppId = "wx005a32084fc70bf0" //公众平台AppId
  109. WxOpenAppSecret = "caf5bd02ef4b768872027ce01c4b114b" //公众平台AppSecret
  110. IndexName = "cygx_article_v03_23"
  111. IndexNameComprehensive = "cygx_comprehensive"
  112. ActSendMsgMobile = "15618524605"
  113. WxPayJsapiNotifyUrl = "https://mfyx.hzinsights.com/api/wechat/wxpay/notify"
  114. SendWxTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_template_msg"
  115. SendWxCategoryTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_category_template_msg"
  116. // 类目模版
  117. WxCategoryMsgTemplateIdApplyXzs = "HKD03oZfSv8LJgeoHz0pynai3G2Ls4h8zZ6BfOpZmIA"
  118. WxCategoryMsgTemplateIdActivitySign = "11rITVC5Gl8qwetxl92NqY887Uk14kg3nPtEA_i_zLo"
  119. WxMsgCategoryTemplateIdCompanyApprovalMessageRai = "t1CcxcOkoZkWZrDRs6zYUlceBGYMV3mhkBYUa8a6Mx0" //权益销售签约成功通知买方研选类目模版消息通知-类目模板ID
  120. WxMsgCategoryTemplateIdActivityPublishApply = "IBMqiE61lVgUfFM4rsH0XCH57R_G3PbWvRbnzg9JHPI"
  121. } else {
  122. WxPublicAppId = "wx9b5d7291e581233a" //弘则投研公众号 开发者ID(AppID)
  123. WxPublicAppSecret = "f4d52e34021eee262dce9682b31f8861" //弘则投研公众号秘钥
  124. WxMsgTemplateIdApplyXzs = "qfNuops-sKrfIkbA7U97A7gSrX03mUpoEpJksRUdloo" //申请待处理(小助手)
  125. WxMsgTemplateIdApplyCancelXzs = "UU_d7ks0XZBnWg2xFzxL9Heilm4kisX39K7dr4SDdO8" ////预约取消提醒(小助手)
  126. WxMsgTemplateIdApply = "qfNuops-sKrfIkbA7U97A7gSrX03mUpoEpJksRUdloo"
  127. WxMsgTemplateIdAskMsgMobile = "15557270714,17634786714,18767183922,17516315016"
  128. WxMsgTemplateIdAskMsgXzs = "qfNuops-sKrfIkbA7U97A7gSrX03mUpoEpJksRUdloo" //手机号用户【XXX】发送模板消息模板ID(小助手)
  129. WxMsgTemplateIdArticleUserRemind = "CB7bOl7f3viMG4s1uhRo7WM0Jbx3WvodKuIZ8A_z8fM"
  130. WxOpenAppId = "wx3c1f6106f5ecadf6" //公众平台AppId
  131. WxOpenAppSecret = "0b98982bdcb12d6f0828bb9f2fed9cab" //公众平台AppSecret
  132. IndexName = "cygx_article_v1"
  133. IndexNameComprehensive = "cygx_comprehensive_test"
  134. ActSendMsgMobile = "17634786714"
  135. WxPayJsapiNotifyUrl = "https://testmfyx.hzinsights.com/api/wechat/wxpay/notify"
  136. SendWxTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_template_msg"
  137. SendWxCategoryTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_category_template_msg"
  138. //SendWxCategoryTemplateMsgUrl = "http://8.136.199.33:8086/v1/wechat/send_category_template_msg"
  139. // 类目模版
  140. WxCategoryMsgTemplateIdApplyXzs = "IemWOTzbnLBqJ2ozSiFqm13WjaotoC3V4uXaxTij08I"
  141. WxCategoryMsgTemplateIdActivitySign = "aczgUYZASO97UJiCD_nDmD1eNWZAWudzw3JYcvjJ2x4"
  142. WxMsgCategoryTemplateIdCompanyApprovalMessageRai = "wU4x_c5XruwuA44VZelyklRNOfq4XrU9ILckTtDs6hg" //权益销售签约成功通知买方研选类目模版消息通知-类目模板ID
  143. WxMsgCategoryTemplateIdActivityPublishApply = "wLeV7tVK4ZJBoAvsmfXkHveVW8yefGAkwnVKQWRi8uQ"
  144. }
  145. HeadimgurlDefault = "https://hongze.oss-cn-shanghai.aliyuncs.com/static/images/202202/20220225/XFBBOUmDC5AXkfxnHiuqKpPtoofH.png"
  146. //易董开放api配置
  147. YiDongApiConfig()
  148. }
  149. // YiDongApiConfig 易董开放api配置
  150. func YiDongApiConfig() {
  151. if RunMode == "release" {
  152. YiDongZhengTongYunUrl = "https://services.valueonline.cn/"
  153. YiDongZhengTongYunAppid = "ca86a257ebb46fce"
  154. YiDongZhengTongYunSecret = "338db2b2ca86a257ebb46fced9003f53"
  155. YiDongHuaWeiYunUrl = "https://achievement.valueonline.cn/"
  156. YiDonggetOriginalLink = "https://services.easy-board.com.cn/short-link/getOriginalLink?shortKey="
  157. } else {
  158. YiDongZhengTongYunUrl = "https://services-dev.valueonline.cn/"
  159. YiDongZhengTongYunAppid = "d9bfb79627ac30d0"
  160. YiDongZhengTongYunSecret = "96a61dd2d9bfb79627ac30d02188bbe2"
  161. YiDongHuaWeiYunUrl = "https://achievement-test.valueonline.cn/"
  162. YiDonggetOriginalLink = "https://services-dev.valueonline.cn/short-link/getOriginalLink?shortKey="
  163. }
  164. }
  165. //http://webapi.brilliantstart.cn/api/
  166. //http://webapi.brilliantstart.cn/swagger/
  167. //http://139.196.122.219:8603/swagger/