config.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. package utils
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "strconv"
  7. beeLogger "github.com/beego/bee/v2/logger"
  8. "github.com/beego/beego/v2/server/web"
  9. "github.com/go-redis/redis/v8"
  10. )
  11. // 数据库配置
  12. var (
  13. RunMode string
  14. MYSQL_URL_MASTER string
  15. MYSQL_URL_RDDP string
  16. MYSQL_URL string //数据库连接
  17. REDIS_CACHE string //缓存地址
  18. Redis *redis.Client //redis链接
  19. )
  20. // 日志配置
  21. var (
  22. LogPath string //调用过程中的日志存放地址
  23. LogFile string
  24. ApiLogPath string // 接口请求地址和接口返回值日志存放地址
  25. ApiLogFile string
  26. BinLogPath string // 数据库相关的日志存放地址
  27. BinLogFile string
  28. LogMaxDays int // 日志最大保留天数
  29. )
  30. var (
  31. SMS_TPLID string // 短信模板
  32. )
  33. var AlarmMsgUrl string // 报警地址
  34. // 微信相关
  35. var (
  36. WX_MINI_APPID string
  37. WX_MINI_APP_SECRET string
  38. DW_WX_Id string //微信原始ID
  39. DW_WX_APPID string // 东吴公众号appid
  40. DW_WX_APP_SECRET string
  41. TEMPLATE_ID_BY_PRODUCT string
  42. )
  43. // 桥接服务
  44. var (
  45. ETA_MINI_BRIDGE_URL string
  46. ETA_MINI_APPID string
  47. ETA_MINI_APP_SECRET string
  48. )
  49. var DesKey string // 接口返回加密KEY
  50. // 自定义的品种名称
  51. var (
  52. MINI_CUSTOM_PERMISSION_NAME string
  53. ZC_CUSTOM_PERMISSION_NAME string
  54. )
  55. func init() {
  56. tmpRunMode, err := web.AppConfig.String("run_mode")
  57. if err != nil {
  58. panic(any("配置文件读取run_mode错误 " + err.Error()))
  59. }
  60. RunMode = tmpRunMode
  61. fmt.Println("RunMode:", RunMode)
  62. if RunMode == "" {
  63. configPath := `/home/code/config/eta_mini_api/conf/app.conf`
  64. fmt.Println("configPath:", configPath)
  65. err = web.LoadAppConfig("ini", configPath)
  66. if err != nil {
  67. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  68. }
  69. tmpRunMode, _ := web.AppConfig.String("run_mode")
  70. RunMode = tmpRunMode
  71. }
  72. config, err := web.AppConfig.GetSection(RunMode)
  73. if err != nil {
  74. panic(any("配置文件读取错误 " + err.Error()))
  75. }
  76. beeLogger.Log.Info(RunMode + " 模式")
  77. MYSQL_URL = config["mysql_url"]
  78. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  79. MYSQL_URL_MASTER = config["mysql_url_master"]
  80. SMS_TPLID = config["sms_tplId"]
  81. DesKey = config["des_key"]
  82. WX_MINI_APPID = config["wx_mini_appid"]
  83. WX_MINI_APP_SECRET = config["wx_mini_app_secret"]
  84. DW_WX_Id = config["dw_wx_id"]
  85. DW_WX_APPID = config["dw_wx_appid"]
  86. DW_WX_APP_SECRET = config["dw_wx_app_secret"]
  87. TEMPLATE_ID_BY_PRODUCT = config["template_id_by_product"]
  88. ETA_MINI_BRIDGE_URL = config["eta_mini_bridge_url"]
  89. ETA_MINI_APPID = config["eta_mini_appid"]
  90. ETA_MINI_APP_SECRET = config["eta_mini_app_secret"]
  91. MINI_CUSTOM_PERMISSION_NAME = config["mini_custom_permission_name"]
  92. if MINI_CUSTOM_PERMISSION_NAME == "" {
  93. MINI_CUSTOM_PERMISSION_NAME = "PDF报告"
  94. }
  95. ZC_CUSTOM_PERMISSION_NAME = config["zc_custom_permission_name"]
  96. if ZC_CUSTOM_PERMISSION_NAME == "" {
  97. ZC_CUSTOM_PERMISSION_NAME = "PDF报告"
  98. }
  99. initRedis(config)
  100. }
  101. // initRedis 初始化redis配置
  102. func initRedis(config map[string]string) {
  103. REDIS_CACHE = config["beego_cache"]
  104. if len(REDIS_CACHE) <= 0 {
  105. panic("redis链接参数没有配置")
  106. }
  107. var redisConf map[string]string
  108. err := json.Unmarshal([]byte(REDIS_CACHE), &redisConf)
  109. if err != nil {
  110. panic("redis 配置异常失败:" + err.Error())
  111. }
  112. redisDb := 0 //默认使用redis的0库
  113. if dbStr, ok := redisConf["db"]; ok {
  114. redisDb, err = strconv.Atoi(dbStr)
  115. if err != nil {
  116. panic("redis 操作db库配置异常,db:" + dbStr)
  117. }
  118. }
  119. client := redis.NewClient(&redis.Options{
  120. Addr: redisConf["conn"],
  121. Password: redisConf["password"],
  122. DB: redisDb,
  123. //PoolSize: 10, //连接池最大socket连接数,默认为10倍CPU数, 10 * runtime.NumCPU(暂不配置)
  124. })
  125. _, err = client.Ping(context.TODO()).Result()
  126. if err != nil {
  127. panic("redis 链接失败:" + err.Error())
  128. }
  129. //全局赋值redis链接
  130. Redis = client
  131. }