config.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. package utils
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/core/logs"
  5. "github.com/beego/beego/v2/server/web"
  6. "github.com/rdlucklib/rdluck_tools/cache"
  7. )
  8. var (
  9. RunMode string //运行模式
  10. MYSQL_URL string //数据库连接
  11. MYSQL_URL_RDDP string //数据库连接
  12. MYSQL_URL_EDB string
  13. REDIS_CACHE string //缓存地址
  14. Rc *cache.Cache //redis缓存
  15. Re error //redis错误
  16. )
  17. var (
  18. STATIC_DIR string
  19. )
  20. //微信配置信息
  21. var (
  22. WxId string //微信原始ID
  23. WxAppId string
  24. WxAppSecret string
  25. TemplateIdByProduct string //产品运行报告通知-模板ID
  26. TemplateRedirectUrl string //模板消息跳转地址
  27. WxPlatform int //用户来源,需要入库,用来保存该用户来自哪个平台,默认是:1
  28. )
  29. //pc端微信配置信息
  30. var (
  31. PcWxId string //微信原始ID
  32. PcWxAppId string
  33. PcWxAppSecret string
  34. PcTemplateIdByProduct string //产品运行报告通知-模板ID
  35. PcTemplateRedirectUrl string //模板消息跳转地址
  36. WxPcPlatform int //用户来源,需要入库,用来保存该用户来自哪个平台,默认是:3
  37. )
  38. func init() {
  39. tmpRunMode, err := web.AppConfig.String("run_mode")
  40. if err != nil {
  41. panic("配置文件读取run_mode错误 " + err.Error())
  42. }
  43. RunMode = tmpRunMode
  44. if RunMode == "" {
  45. RunMode = "release"
  46. configPath := `/home/code/config/hongze_api/conf/app.conf`
  47. err := web.LoadAppConfig("ini", configPath)
  48. if err != nil {
  49. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  50. }
  51. }
  52. config, err := web.AppConfig.GetSection(RunMode)
  53. if err != nil {
  54. panic("配置文件读取错误 " + err.Error())
  55. }
  56. logs.Info(RunMode + " 模式")
  57. MYSQL_URL = config["mysql_url"]
  58. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  59. MYSQL_URL_EDB = config["mysql_url_edb"]
  60. REDIS_CACHE = config["beego_cache"]
  61. if len(REDIS_CACHE) <= 0 {
  62. panic("redis链接参数没有配置")
  63. }
  64. Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存
  65. if Re != nil {
  66. fmt.Println(Re)
  67. panic(Re)
  68. }
  69. if RunMode == "release" {
  70. WxAppId = "wx4a844c734d8c8e56"
  71. WxAppSecret = "26c586e7ccb3c575433f0f37797b3eeb"
  72. WxId = "gh_b67e0049fb8c"
  73. TemplateIdByProduct = "Cp2wF8gvBtxyWV4DeYuI172oqwyYXVRSm3AyJO42d84"
  74. TemplateRedirectUrl = "https://ficc.hzinsights.com/reportdtl?id="
  75. WxPlatform = 1
  76. WxPcPlatform = 3
  77. PcWxAppId = "wx615472d6874eeb7f"
  78. PcWxAppSecret = "97fe374fb0cc90ef58c4b49d431366f1"
  79. STATIC_DIR = "/home/static/imgs/"
  80. } else {
  81. WxAppId = "wx9b5d7291e581233a"
  82. WxAppSecret = "f4d52e34021eee262dce9682b31f8861"
  83. WxId = "gh_5dc508325c6f"
  84. TemplateIdByProduct = "-YjuPOB7Fqd-S3ilabYa6wvjDY9aXmeEfPN6DCiy-EY"
  85. TemplateRedirectUrl = "http://rddpweb.brilliantstart.cn/reportdtl?id="
  86. WxPlatform = 1
  87. WxPcPlatform = 3
  88. PcWxAppId = "wx7c8084f6e5b1d85a"
  89. PcWxAppSecret = "9e4210cd5a363aa1f316b7c4b8898418"
  90. STATIC_DIR = "/home/static/imgs/"
  91. }
  92. }
  93. //http://webapi.brilliantstart.cn/api/
  94. //http://webapi.brilliantstart.cn/swagger/
  95. //http://139.196.122.219:8603/swagger/