config.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. package utils
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/server/web"
  5. "github.com/rdlucklib/rdluck_tools/cache"
  6. "strconv"
  7. )
  8. var (
  9. RunMode string //运行模式
  10. MYSQL_URL string //数据库连接
  11. MYSQL_URL_CYGX string //查研观向数据库连接
  12. MYSQL_URL_RDDP string //数据库连接
  13. MYSQL_URL_TACTICS string
  14. MYSQL_URL_COMEIN_DATA string // 路演记录数据库
  15. REDIS_CACHE string //缓存地址
  16. Rc *cache.Cache //redis缓存
  17. Re error //redis错误
  18. )
  19. // 微信配置信息
  20. var (
  21. WxId string //微信原始ID
  22. WxAppId string //买方研选小程序
  23. WxAppSecret string //买方研选小程序
  24. WxPublicIdXzs string //查研观向小助手公众号
  25. WxPublicSecretXzs string //查研观向小助手公众号
  26. WxMsgTemplateIdApply string //申请待处理
  27. WxMsgTemplateIdApplyXzs string //申请待处理(小助手)
  28. WxMsgTemplateIdApplyCancel string //预约取消提醒
  29. WxMsgTemplateIdApplyCancelXzs string //预约取消提醒(小助手)
  30. WxMsgTemplateIdPermissionApply string //预约取消提醒
  31. WxMsgTemplateIdActivityApply string //活动预约消息提醒
  32. WxMsgTemplateIdActivityApplyXzs string //活动预约消息提醒(小助手)
  33. WxMsgTemplateIdActivityChange string //活动预约变更提醒
  34. WxMsgTemplateIdAskMsg string //手机号用户【XXX】发送模板消息模板ID
  35. WxMsgTemplateIdAskMsgXzs string //手机号用户【XXX】发送模板消息模板ID(小助手)
  36. WxMsgTemplateIdAskMsgMobile string //手机号用户【XXX】发送模板消息
  37. WxMsgTemplateIdAskMsgMobileAll string //手机号用户【XXX】发送模板消rm --
  38. WxMsgTemplateIdAskMsgMobilePublic string //手机号用户【XXX】发送模板消rm --
  39. WxMsgTemplateIdYXSpecialReview string //王芳、葛琳和沈涛--
  40. TemplateIdByProductXzs string //产品运行报告通知-模板ID(小助手)
  41. WxMsgTemplateIdArticleUserRemind string //用户阅读报告通知-模板ID
  42. WxMsgCategoryTemplateIdArticleUserRemind string //用户阅读报告通知-类目模板ID
  43. WxMsgTemplateIdArticleUserRemindXzs string //用户阅读报告通知-模板ID(小助手)
  44. WxMsgTemplateIdActivityChangeApplyXzs string //查研观向活动变更通知-模板ID(小助手)
  45. WxMsgTemplateIdActivitySign string //查研观向活动签到通知-模板ID(小助手)
  46. // 类目模板
  47. WxCategoryMsgTemplateIdApplyXzs string //申请待处理(买方研选)
  48. WxCategoryMsgTemplateIdActivitySign string //买方研选活动签到通知-类目模板ID(买方研选)
  49. WxMsgCategoryTemplateIdCompanyApprovalMessageRai string //权益销售签约成功通知买方研选类目模版消息通知-类目模板ID
  50. WxMsgCategoryTemplateIdActivityPublishApply string //买方研选关注的产业下,单个活动/研选报告发布通知-类目模板ID
  51. WxMsgCategoryTemplateIdAddMessage string //专栏文章留言-类目模板ID
  52. //权益内容组手机号
  53. RAI_MOBILE_GAO_YI_WEN string // 权益高亦文手机号
  54. RAI_MOBILE_DONG_HENG string // 权益董衡手机号
  55. RAI_MOBILE_WU_ANG_DI string // 权益吴昂迪手机号
  56. RAI_MOBILE_GE_LIN string // 权益葛琳手机号
  57. )
  58. // 微信公众号配置信息
  59. var (
  60. WxPublicId string //微信原始ID
  61. WxPublicAppId string
  62. WxPublicAppSecret string
  63. WxPlatform = 10 //注册平台,1:日度点评公众号,2:管理后台,3:pc端网站,4:查研观向小程序
  64. WxPayJsapiNotifyUrl string //微信小程序支付下单回调接口
  65. )
  66. var (
  67. IndexName string
  68. IndexNameArticleHistory string //文章阅读记录Es索引
  69. IndexNameComprehensive string //综合搜索Es索引
  70. OnlineTime string
  71. SummaryArticleId int
  72. YanxSummaryPermissionId int //研选纪要分类ID
  73. YanxViewpointPermissionId int //研选观点分类ID
  74. EmailTechnology string //科技行业专家邮箱
  75. EmailMedicine string //医药行业专家邮箱
  76. EmailConsumption string //消费行业专家邮箱
  77. EmailZhizao string //智造行业专家邮箱
  78. EmailStrategy string //策略行业专家邮箱
  79. EmailExpert string //研选行业专家邮箱
  80. EmaiWhiteUserList string //白名单邮箱
  81. IsTask bool //是否执行定时任务
  82. HtgjDefaultSaleName string //海通默认销售名称
  83. HtgjSalt string //海通加密使用的盐
  84. HtgjName string //海通国际名称
  85. HtgjPublicMobile string //海通国际公共请求的手机号
  86. ActSendMsgMobile string //研选活动带问发送模板消息接收者的手机号 (汪洋手机号)
  87. StrategyPlatform string //策略品台跳转链接地址
  88. ArticleTaskClassMobile string //策略平台报告自动归类消息通知对象
  89. YiDongZhengTongYunUrl string //易董 证通云请求域名
  90. YiDongZhengTongYunAppid string //易董 证通云请求appid
  91. YiDongZhengTongYunSecret string //易董 证通云请求secret
  92. YiDongHuaWeiYunUrl string //易董 华为云请求域名
  93. YiDonggetOriginalLink string //易董 短连接转为长链接
  94. ShangHaiCrmApiLink string //上海CRM用户同步api调用地址
  95. )
  96. // 模板消息推送
  97. var (
  98. SendWxTemplateMsgUrl string
  99. SendWxCategoryTemplateMsgUrl string
  100. )
  101. // 日志配置
  102. var (
  103. LogPath string //调用过程中的日志存放地址
  104. LogFile string
  105. LogDataPath string //调用过程中图表相关的日志存放地址
  106. LogDataFile string
  107. BinLogPath string //数据库相关的日志存放地址
  108. BinLogFile string
  109. ApiLogPath string //接口请求地址和接口返回值日志存放地址
  110. ApiLogFile string
  111. LogMaxDays int //日志最大保留天数
  112. )
  113. func init() {
  114. tmpRunMode, err := web.AppConfig.String("run_mode")
  115. if err != nil {
  116. panic("配置文件读取run_mode错误 " + err.Error())
  117. }
  118. fmt.Println("line 80:", tmpRunMode, err)
  119. RunMode = tmpRunMode
  120. fmt.Println("RunMode:", RunMode)
  121. if RunMode == "" {
  122. localIp, err := GetLocalIP()
  123. fmt.Println("localIp:", localIp)
  124. if localIp == "10.0.0.123" {
  125. RunMode = "debug"
  126. } else {
  127. RunMode = "release"
  128. }
  129. fmt.Println("RunMode:", RunMode)
  130. configPath := `/home/code/config/hongze_mfyx/conf/app.conf`
  131. fmt.Println("configPath:", configPath)
  132. err = web.LoadAppConfig("ini", configPath)
  133. if err != nil {
  134. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  135. }
  136. }
  137. config, err := web.AppConfig.GetSection(RunMode)
  138. if err != nil {
  139. panic("配置文件读取错误 " + err.Error())
  140. }
  141. //beego.Info(RunMode + " 模式")
  142. MYSQL_URL = config["mysql_url"]
  143. MYSQL_URL_CYGX = config["mysql_url_cygx"]
  144. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  145. MYSQL_URL_TACTICS = config["mysql_url_tactics"]
  146. MYSQL_URL_COMEIN_DATA = config["mysql_url_comein_data"]
  147. REDIS_CACHE = config["beego_cache"]
  148. if len(REDIS_CACHE) <= 0 {
  149. panic("redis链接参数没有配置")
  150. }
  151. Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存
  152. if Re != nil {
  153. fmt.Println(Re)
  154. panic(Re)
  155. }
  156. IsTask, err = web.AppConfig.Bool("IsTask")
  157. if err != nil {
  158. panic("定时任务配置文件读取错误 " + err.Error())
  159. }
  160. fmt.Println("IsTask:", IsTask)
  161. OnlineTime = "2021-06-01 00:00:01" //上线时间
  162. SummaryArticleId = 1000000 //手动添加的纪要库开始ID
  163. YanxSummaryPermissionId = 1001 //研选纪要分类ID
  164. YanxViewpointPermissionId = 1002 //研选观点分类ID
  165. WxMsgTemplateIdAskMsgMobileAll = "15557270714,18767183922,18621268829,17758061174"
  166. WxMsgTemplateIdAskMsgMobilePublic = "15557270714,18767183922,18621268829" // 王芳沈涛张传星
  167. WxMsgTemplateIdYXSpecialReview = "18621268829,18258485832,18767183922" // 王芳、葛琳和沈涛
  168. HtgjDefaultSaleName = "王芳"
  169. HtgjSalt = "HTGJ&HZ"
  170. HtgjName = "海通国际"
  171. HtgjPublicMobile = "18767183955"
  172. StrategyPlatform = "https://vmp.hzinsights.com/v2/articles/"
  173. if RunMode == "release" {
  174. WxAppId = "wx5e3240ab90c247ac"
  175. WxAppSecret = "6b1316b46dc9c63429f5c1df6f51b4ac"
  176. WxId = "gh_1959b919b204"
  177. //模板消息ID
  178. WxMsgTemplateIdApply = "PaoDanHGlt1kFw5q-4_ipJSwO3FyZpxSSNg4rwB7YCk"
  179. WxMsgTemplateIdApplyCancel = "iEi4YRHwcPbc2PSEF1pptc39H4NsAJPrUIPEk2ynwiA"
  180. WxMsgTemplateIdPermissionApply = "PaoDanHGlt1kFw5q-4_ipJSwO3FyZpxSSNg4rwB7YCk"
  181. WxMsgTemplateIdActivityApply = "MwZ5wxfd0O1Yt0Pkf6OkfWP4USQzZbiEo5SkZ26735s"
  182. WxPublicAppId = "wx4a844c734d8c8e56"
  183. WxPublicAppSecret = "26c586e7ccb3c575433f0f37797b3eeb"
  184. WxPublicId = "gh_b67e0049fb8c"
  185. IndexName = "cygx_article_v03_23"
  186. IndexNameArticleHistory = "cygx_article_history_v07_08"
  187. IndexNameComprehensive = "cygx_comprehensive"
  188. //接收附件邮箱
  189. EmailTechnology = "mlluo@hzinsights.com;jxu@hzinsights.com;tshen@hzinsights.com;cxzhang@hzinsights.com;hwang@hzinsights.com;rli@hzinsights.com" //科技行业专家邮箱
  190. EmailMedicine = "xlzheng@hzinsights.com;tshen@hzinsights.com;cxzhang@hzinsights.com;yxyan@hzinsights.com;ppwang@hzinsights.com" //医药行业专家邮箱
  191. EmailConsumption = "yrhuang@hzinsights.com;tshen@hzinsights.com;cxzhang@hzinsights.com;jxu@hzinsights.com;hychen@hzinsights.com;lwang@hzinsights.com" //消费行业专家邮箱
  192. EmailZhizao = "xfma@hzinsights.com;agne@hzinsights.com;tshen@hzinsights.com;cxzhang@hzinsights.com" //智造行业专家邮箱
  193. EmailStrategy = "experts@hzinsights.com;tshen@hzinsights.com;cxzhang@hzinsights.com" //策略行业专家邮箱
  194. EmailExpert = "experts@hzinsights.com;tshen@hzinsights.com;cxzhang@hzinsights.com" //研选行业专家邮箱
  195. EmaiWhiteUserList = "tshen@hzinsights.com;cxzhang@hzinsights.com;yyli@hzinsights.com" //白名单邮箱
  196. WxMsgTemplateIdAskMsg = "PaoDanHGlt1kFw5q-4_ipJSwO3FyZpxSSNg4rwB7YCk"
  197. WxMsgTemplateIdArticleUserRemind = "fxnlsjx-gm3dAZVJf6f3w27wA7anETl42kexXLP8FDs"
  198. WxMsgCategoryTemplateIdArticleUserRemind = "4fwzgJ-YQndzH5OJWLkd0grvftgqhvP285t_oXUboi7DaaIhMI"
  199. WxMsgTemplateIdAskMsgMobile = ""
  200. //ActSendMsgMobile = "15618524605"
  201. ActSendMsgMobile = "15557270714" // 汪洋手机号
  202. ArticleTaskClassMobile = "15557270714,18767183922,15216736473,15000123056,18701809782,17706316791,18652179672"
  203. ShangHaiCrmApiLink = "https://crm.hzinsights.com/"
  204. SendWxTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_template_msg"
  205. SendWxCategoryTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_category_template_msg"
  206. WxPayJsapiNotifyUrl = "https://mfyx.hzinsights.com/api/wechat/wxpay/notify"
  207. } else {
  208. WxAppId = "wx5e3240ab90c247ac"
  209. WxAppSecret = "6b1316b46dc9c63429f5c1df6f51b4ac"
  210. WxId = "gh_1959b919b204"
  211. //模板消息ID
  212. WxMsgTemplateIdApply = "qfNuops-sKrfIkbA7U97A7gSrX03mUpoEpJksRUdloo"
  213. WxMsgTemplateIdApplyCancel = "UU_d7ks0XZBnWg2xFzxL9Heilm4kisX39K7dr4SDdO8"
  214. WxMsgTemplateIdPermissionApply = "qfNuops-sKrfIkbA7U97A7gSrX03mUpoEpJksRUdloo"
  215. WxMsgTemplateIdActivityApply = "Y59n_AHg-RLCKaz293geW76KDHpGL1qOnE7eF_lxelY"
  216. WxMsgTemplateIdActivityChange = "qfNuops-CB7bOl7f3viMG4s1uhRo7WM0Jbx3WvodKuIZ8A_z8fM"
  217. WxMsgTemplateIdArticleUserRemind = "CB7bOl7f3viMG4s1uhRo7WM0Jbx3WvodKuIZ8A_z8fM"
  218. WxMsgCategoryTemplateIdArticleUserRemind = "4fwzgJ-2xUiyQqNkFCPd8vsGpOnNWWE2inZO4BXjfio"
  219. WxPublicAppId = "wx9b5d7291e581233a"
  220. WxPublicAppSecret = "f4d52e34021eee262dce9682b31f8861"
  221. WxPublicId = "gh_5dc508325c6f"
  222. IndexName = "cygx_article_v1"
  223. IndexNameArticleHistory = "cygx_article_history_v1"
  224. IndexNameComprehensive = "cygx_comprehensive_test"
  225. //接收附件邮箱
  226. EmailTechnology = "jhwang@hzinsights.com;cxzhang@hzinsights.com" //科技行业专家邮箱
  227. EmailMedicine = "jhwang@hzinsights.com;cxzhang@hzinsights.com" //医药行业专家邮箱
  228. EmailConsumption = "jhwang@hzinsights.com;cxzhang@hzinsights.com" //消费行业专家邮箱
  229. EmailZhizao = "jhwang@hzinsights.com;cxzhang@hzinsights.com" //智造行业专家邮箱
  230. EmailStrategy = "jhwang@hzinsights.com;cxzhang@hzinsights.com" //策略行业专家邮箱
  231. EmailExpert = "jhwang@hzinsights.com;cxzhang@hzinsights.com" //研选行业专家邮箱
  232. EmaiWhiteUserList = "cxzhang@hzinsights.com"
  233. WxMsgTemplateIdAskMsg = "qfNuops-sKrfIkbA7U97A7gSrX03mUpoEpJksRUdloo"
  234. WxMsgTemplateIdAskMsgMobile = "15557270714,17634786714,18767183922,17516315016,17758061174"
  235. ActSendMsgMobile = "15557270714"
  236. ArticleTaskClassMobile = "15557270714,18767183922,17706316791,17758061174"
  237. ShangHaiCrmApiLink = "http://106.15.192.100:8100/"
  238. SendWxTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_template_msg"
  239. SendWxCategoryTemplateMsgUrl = "http://127.0.0.1:8086/v1/wechat/send_category_template_msg"
  240. //SendWxCategoryTemplateMsgUrl = "http://8.136.199.33:8086/v1/wechat/send_category_template_msg"
  241. WxPayJsapiNotifyUrl = "https://testmfyx.hzinsights.com/api/wechat/wxpay/notify"
  242. }
  243. //查研观向小助手
  244. if RunMode != "release" {
  245. //原有的模板ID
  246. WxPublicIdXzs = "wx5e3240ab90c247ac" //查研观向小助手
  247. WxPublicSecretXzs = "f4d52e34021eee262dce9682b31f8861" //查研观向小助手
  248. WxMsgTemplateIdActivityApplyXzs = "U3su--7d6xsCDcP6Tya0N0wWpKn_uI0zO1cutRK52cc" //活动预约消息提醒(小助手)
  249. WxMsgTemplateIdAskMsgXzs = "qfNuops-sKrfIkbA7U97A7gSrX03mUpoEpJksRUdloo" //手机号用户【XXX】发送模板消息模板ID(小助手)
  250. WxMsgTemplateIdApplyXzs = "qfNuops-sKrfIkbA7U97A7gSrX03mUpoEpJksRUdloo" //申请待处理(小助手)
  251. WxMsgTemplateIdApplyCancelXzs = "UU_d7ks0XZBnWg2xFzxL9Heilm4kisX39K7dr4SDdO8" ////预约取消提醒(小助手)
  252. TemplateIdByProductXzs = "-YjuPOB7Fqd-S3ilabYa6wvjDY9aXmeEfPN6DCiy-EY" //产品运行报告通知-模板ID(小助手)
  253. WxMsgTemplateIdActivityChangeApplyXzs = "CB7bOl7f3viMG4s1uhRo7WM0Jbx3WvodKuIZ8A_z8fM" //查研观向活动变更通知-模板ID(小助手)
  254. WxMsgTemplateIdActivitySign = "3l5cxpqH6c9kkLe9ow7qzqd0uYEOdY3A_PB8wRWkiHk" //查研观向活动签到通知-模板ID(小助手)
  255. // 类目模版
  256. WxCategoryMsgTemplateIdApplyXzs = "IemWOTzbnLBqJ2ozSiFqm13WjaotoC3V4uXaxTij08I"
  257. WxCategoryMsgTemplateIdActivitySign = "aczgUYZASO97UJiCD_nDmD1eNWZAWudzw3JYcvjJ2x4"
  258. WxMsgCategoryTemplateIdCompanyApprovalMessageRai = "wU4x_c5XruwuA44VZelyklRNOfq4XrU9ILckTtDs6hg" //权益销售签约成功通知买方研选类目模版消息通知-类目模板ID
  259. WxMsgCategoryTemplateIdActivityPublishApply = "wLeV7tVK4ZJBoAvsmfXkHveVW8yefGAkwnVKQWRi8uQ"
  260. WxMsgCategoryTemplateIdAddMessage = "Ery3Y-cBtPqdpXJd07jKqbZdxkcTpK_74wAQNWYDOvY"
  261. //权益内容组手机号测试环境没什么用,配合测试切换他们的手机号
  262. RAI_MOBILE_GAO_YI_WEN = "17706316791" //权益高亦文手机号
  263. RAI_MOBILE_DONG_HENG = "15557270714" // 权益董衡手机号
  264. RAI_MOBILE_WU_ANG_DI = "15557270714" // 权益吴昂迪手机号
  265. RAI_MOBILE_GE_LIN = "15557270714" // 权益葛琳手机号
  266. } else {
  267. //新的模板ID
  268. WxPublicIdXzs = "wxb7cb8a15abad5b8e" //查研观向小助手
  269. WxPublicSecretXzs = "f425ba2863084249722af1e2a5cfffd3" //查研观向小助手
  270. WxMsgTemplateIdActivityApplyXzs = "mItHdTF6swcunM4P36lOjnLknGbHaLqYdbOsRKscBq4" //活动预约消息提醒(小助手)
  271. WxMsgTemplateIdAskMsgXzs = "IpS-yuNNQc8osCoy20jPHNkvBUyKRL1NGn7c0G9xmQA" //手机号用户【XXX】发送模板消息模板ID(小助手)
  272. WxMsgTemplateIdApplyXzs = "IpS-yuNNQc8osCoy20jPHNkvBUyKRL1NGn7c0G9xmQA" //申请待处理(小助手)
  273. WxMsgTemplateIdApplyCancelXzs = "gCSCAWNNhjkzE2V1cjbIV_Ex68R_8LM_u25qDlSKWyM" ////预约取消提醒(小助手)
  274. TemplateIdByProductXzs = "tNcCUiK_uUkuxaFF7M9NP2RwLkw8uHFjG-TDIxGUKxo" //产品运行报告通知-模板ID(小助手)
  275. WxMsgTemplateIdActivityChangeApplyXzs = "7qe3i4MrGxAIPhJeMgoqqw6j0A_foUB65DLSmxKe05s" //查研观向活动变更通知-模板ID(小助手)
  276. WxMsgTemplateIdActivitySign = "GIcOqewJql4rQ_dvhUna2knWIVogKulaqRxtZKnWZeo" //查研观向活动签到通知-模板ID(小助手)
  277. // 类目模版
  278. WxCategoryMsgTemplateIdApplyXzs = "HKD03oZfSv8LJgeoHz0pynai3G2Ls4h8zZ6BfOpZmIA"
  279. WxCategoryMsgTemplateIdActivitySign = "11rITVC5Gl8qwetxl92NqY887Uk14kg3nPtEA_i_zLo"
  280. WxMsgCategoryTemplateIdCompanyApprovalMessageRai = "t1CcxcOkoZkWZrDRs6zYUlceBGYMV3mhkBYUa8a6Mx0" //权益销售签约成功通知买方研选类目模版消息通知-类目模板ID
  281. WxMsgCategoryTemplateIdActivityPublishApply = "IBMqiE61lVgUfFM4rsH0XCH57R_G3PbWvRbnzg9JHPI"
  282. WxMsgCategoryTemplateIdAddMessage = "_SzJRvXmlIp4Uh7Xbyem9G2pOqMDsHRsL0BQkCPFslk"
  283. //权益内容组手机号
  284. RAI_MOBILE_GAO_YI_WEN = "15000123056" //权益高亦文手机号
  285. RAI_MOBILE_DONG_HENG = "15216736473" // 权益董衡手机号
  286. RAI_MOBILE_WU_ANG_DI = "18701809782" // 权益吴昂迪手机号
  287. RAI_MOBILE_GE_LIN = "18258485832" // 权益葛琳手机号
  288. }
  289. //日志配置
  290. {
  291. LogPath = config["log_path"]
  292. LogFile = config["log_file"]
  293. LogDataPath = config["log_data_path"]
  294. LogDataFile = config["log_data_file"]
  295. BinLogPath = config["binlog_path"]
  296. BinLogFile = config["binlog_file"]
  297. ApiLogPath = config["apilog_path"]
  298. ApiLogFile = config["apilog_file"]
  299. logMaxDaysStr := config["log_max_day"]
  300. LogMaxDays, _ = strconv.Atoi(logMaxDaysStr)
  301. }
  302. //易董开放api配置
  303. YiDongApiConfig()
  304. }
  305. // YiDongApiConfig 易董开放api配置
  306. func YiDongApiConfig() {
  307. if RunMode == "release" {
  308. YiDongZhengTongYunUrl = "https://services.valueonline.cn/"
  309. YiDongZhengTongYunAppid = "ca86a257ebb46fce"
  310. YiDongZhengTongYunSecret = "338db2b2ca86a257ebb46fced9003f53"
  311. YiDongHuaWeiYunUrl = "https://achievement.valueonline.cn/"
  312. YiDonggetOriginalLink = "https://services.easy-board.com.cn/short-link/getOriginalLink?shortKey="
  313. } else {
  314. YiDongZhengTongYunUrl = "https://services-dev.valueonline.cn/"
  315. YiDongZhengTongYunAppid = "d9bfb79627ac30d0"
  316. YiDongZhengTongYunSecret = "96a61dd2d9bfb79627ac30d02188bbe2"
  317. YiDongHuaWeiYunUrl = "https://achievement-test.valueonline.cn/"
  318. YiDonggetOriginalLink = "https://services-dev.valueonline.cn/short-link/getOriginalLink?shortKey="
  319. }
  320. }
  321. //
  322. //YiDongZhengTongYunUrl string //易董 证通云请求域名
  323. //YiDongZhengTongYunAppid string //易董 证通云请求appid
  324. //YiDongZhengTongYunSecret string //易董 证通云请求secret
  325. //YiDongHuaWeiYunUrl string //易董 华为云请求域名
  326. //http://webapi.brilliantstart.cn/api/
  327. //http://webapi.brilliantstart.cn/swagger/
  328. //http://139.196.122.219:8603/swagger/