config.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package utils
  2. import (
  3. "github.com/astaxie/beego"
  4. )
  5. var (
  6. RunMode string //运行模式
  7. MYSQL_URL string //数据库连接
  8. MYSQL_URL_RDDP string //数据库连接
  9. MYSQL_URL_EDB string
  10. )
  11. var (
  12. STATIC_DIR string
  13. )
  14. //微信配置信息
  15. var (
  16. WxId string //微信原始ID
  17. WxAppId string
  18. WxAppSecret string
  19. TemplateIdByProduct string //产品运行报告通知-模板ID
  20. TemplateRedirectUrl string //模板消息跳转地址
  21. WxPlatform int //用户来源,需要入库,用来保存该用户来自哪个平台,默认是:1
  22. )
  23. //pc端微信配置信息
  24. var (
  25. PcWxId string //微信原始ID
  26. PcWxAppId string
  27. PcWxAppSecret string
  28. PcTemplateIdByProduct string //产品运行报告通知-模板ID
  29. PcTemplateRedirectUrl string //模板消息跳转地址
  30. WxPcPlatform int //用户来源,需要入库,用来保存该用户来自哪个平台,默认是:3
  31. )
  32. func init() {
  33. RunMode = beego.AppConfig.String("run_mode")
  34. config, err := beego.AppConfig.GetSection(RunMode)
  35. if err != nil {
  36. panic("配置文件读取错误 " + err.Error())
  37. }
  38. beego.Info(RunMode + " 模式")
  39. MYSQL_URL = config["mysql_url"]
  40. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  41. MYSQL_URL_EDB = config["mysql_url_edb"]
  42. if RunMode == "release" {
  43. WxAppId = "wx4a844c734d8c8e56"
  44. WxAppSecret = "26c586e7ccb3c575433f0f37797b3eeb"
  45. WxId = "gh_b67e0049fb8c"
  46. TemplateIdByProduct = "Cp2wF8gvBtxyWV4DeYuI172oqwyYXVRSm3AyJO42d84"
  47. TemplateRedirectUrl = "https://ficc.hzinsights.com/reportdtl?id="
  48. WxPlatform = 1
  49. WxPcPlatform = 3
  50. PcWxAppId = "wx615472d6874eeb7f"
  51. PcWxAppSecret="97fe374fb0cc90ef58c4b49d431366f1"
  52. STATIC_DIR = "/home/static/imgs/"
  53. } else {
  54. WxAppId = "wx9b5d7291e581233a"
  55. WxAppSecret = "f4d52e34021eee262dce9682b31f8861"
  56. WxId = "gh_5dc508325c6f"
  57. TemplateIdByProduct = "-YjuPOB7Fqd-S3ilabYa6wvjDY9aXmeEfPN6DCiy-EY"
  58. TemplateRedirectUrl = "http://rddpweb.brilliantstart.cn/reportdtl?id="
  59. WxPlatform = 1
  60. WxPcPlatform = 3
  61. PcWxAppId = "wx7c8084f6e5b1d85a"
  62. PcWxAppSecret="9e4210cd5a363aa1f316b7c4b8898418"
  63. STATIC_DIR = "/home/static/imgs/"
  64. }
  65. }
  66. //http://webapi.brilliantstart.cn/api/
  67. //http://webapi.brilliantstart.cn/swagger/
  68. //http://139.196.122.219:8603/swagger/