config.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package utils
  2. import (
  3. "fmt"
  4. beeLogger "github.com/beego/bee/v2/logger"
  5. "github.com/beego/beego/v2/server/web"
  6. )
  7. // 数据库配置
  8. var (
  9. RunMode string // 运行模式
  10. MYSQL_URL_MASTER string // 数据库地址
  11. MYSQL_URL_RDDP string // 数据库地址
  12. REDIS_CACHE string //缓存地址
  13. Rc RedisClient //redis缓存
  14. )
  15. // 阿里云配置
  16. var (
  17. Bucketname string
  18. Endpoint string
  19. Imghost string
  20. UploadDir string
  21. Upload_Audio_Dir string
  22. AccessKeyId string
  23. AccessKeySecret string
  24. )
  25. // 阿里云oss前端上传用
  26. var (
  27. AliStsScheme string
  28. RegionId string
  29. RoleArn string
  30. RoleSessionName string
  31. RAMAccessKeyId string
  32. RAMAccessKeySecret string
  33. STSTokenCacheKey string
  34. )
  35. var (
  36. LogPath string //调用过程中的日志存放地址
  37. LogFile string
  38. ApiLogPath string // 接口请求地址和接口返回值日志存放地址
  39. ApiLogFile string
  40. BinLogPath string // 数据库相关的日志存放地址
  41. BinLogFile string
  42. LogMaxDays int // 日志最大保留天数
  43. )
  44. var DesKey string // 接口返回加密KEY
  45. func init() {
  46. tmpRunMode, err := web.AppConfig.String("run_mode")
  47. if err != nil {
  48. panic(any("配置文件读取run_mode错误 " + err.Error()))
  49. }
  50. RunMode = tmpRunMode
  51. fmt.Println("RunMode:", RunMode)
  52. if RunMode == "" {
  53. configPath := `/home/code/config/eta_mini_crm/conf/app.conf`
  54. fmt.Println("configPath:", configPath)
  55. err = web.LoadAppConfig("ini", configPath)
  56. if err != nil {
  57. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  58. }
  59. tmpRunMode, _ := web.AppConfig.String("run_mode")
  60. RunMode = tmpRunMode
  61. }
  62. config, err := web.AppConfig.GetSection(RunMode)
  63. if err != nil {
  64. panic(any("配置文件读取错误 " + err.Error()))
  65. }
  66. beeLogger.Log.Info(RunMode + " 模式")
  67. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  68. MYSQL_URL_MASTER = config["mysql_url_master"]
  69. REDIS_CACHE = config["beego_cache"]
  70. if len(REDIS_CACHE) <= 0 {
  71. panic(any("redis链接参数没有配置"))
  72. }
  73. // 接口返回加密KEY
  74. DesKey = config["des_key"]
  75. // OSS相关
  76. {
  77. Endpoint = config["endpoint"]
  78. Bucketname = config["bucket_name"]
  79. Imghost = config["img_host"]
  80. UploadDir = config["upload_dir"]
  81. Upload_Audio_Dir = config["upload_audio_dir"]
  82. AccessKeyId = config["access_key_id"]
  83. AccessKeySecret = config["access_key_secret"]
  84. }
  85. // OSS相关(前端使用)
  86. {
  87. AliStsScheme = config["ali_sts_scheme"]
  88. RegionId = config["region_id"]
  89. RoleArn = config["role_arn"]
  90. RoleSessionName = config["role_session_name"]
  91. RAMAccessKeyId = config["ram_access_key_id"]
  92. RAMAccessKeySecret = config["ram_access_key_secret"]
  93. STSTokenCacheKey = config["sts_token_cache_key"]
  94. }
  95. // 初始化缓存
  96. redisClient, err := initRedis(config["redis_type"], config["beego_cache"])
  97. if err != nil {
  98. fmt.Println("redis链接异常:", err)
  99. panic(any("redis链接参数没有配置"))
  100. }
  101. Rc = redisClient
  102. }