config.go 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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. var ObjectStorageClient string // 目前有oss minio,默认oss
  16. // 阿里云配置
  17. var (
  18. Bucketname string
  19. Endpoint string
  20. Imghost string
  21. UploadDir string
  22. AccessKeyId string
  23. AccessKeySecret string
  24. )
  25. // MinIo配置
  26. var (
  27. MinIoBucketname string
  28. MinIoEndpoint string
  29. MinIoBackEndpoint string
  30. MinIoPdfhost string
  31. MinIoUploadDir string
  32. MinIoAccessKeyId string
  33. MinIoAccessKeySecret string
  34. MinIoUseSSL string
  35. MinIoPort string
  36. MinIoRegion string
  37. )
  38. // 阿里云oss前端上传用
  39. var (
  40. AliStsScheme string
  41. RegionId string
  42. RoleArn string
  43. RoleSessionName string
  44. RAMAccessKeyId string
  45. RAMAccessKeySecret string
  46. STSTokenCacheKey string
  47. )
  48. // 基础配置
  49. var (
  50. STATIC_DIR string
  51. RESOURCE_DIR string
  52. UPLOAD_PDF_SIZE string // 单位MB
  53. UPLOAD_IMG_SIZE string
  54. UPLOAD_AUDIO_SIZE string
  55. UPLOAD_VIDEO_SIZE string
  56. )
  57. // ES配置
  58. var (
  59. ES_URL string // ES服务器地址
  60. ES_USERNAME string // ES账号
  61. ES_PASSWORD string // ES密码
  62. )
  63. // ES索引配置
  64. var (
  65. MINI_REPORT_INDEX_NAME string // 小程序的pdf报告索引
  66. )
  67. var (
  68. LogPath string //调用过程中的日志存放地址
  69. LogFile string
  70. ApiLogPath string // 接口请求地址和接口返回值日志存放地址
  71. ApiLogFile string
  72. BinLogPath string // 数据库相关的日志存放地址
  73. BinLogFile string
  74. LogMaxDays int // 日志最大保留天数
  75. )
  76. var DesKey string // 接口返回加密KEY
  77. func init() {
  78. tmpRunMode, err := web.AppConfig.String("run_mode")
  79. if err != nil {
  80. panic(any("配置文件读取run_mode错误 " + err.Error()))
  81. }
  82. RunMode = tmpRunMode
  83. fmt.Println("RunMode:", RunMode)
  84. if RunMode == "" {
  85. configPath := `/home/code/config/eta_mini_crm/conf/app.conf`
  86. fmt.Println("configPath:", configPath)
  87. err = web.LoadAppConfig("ini", configPath)
  88. if err != nil {
  89. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  90. }
  91. tmpRunMode, _ := web.AppConfig.String("run_mode")
  92. RunMode = tmpRunMode
  93. }
  94. config, err := web.AppConfig.GetSection(RunMode)
  95. if err != nil {
  96. panic(any("配置文件读取错误 " + err.Error()))
  97. }
  98. beeLogger.Log.Info(RunMode + " 模式")
  99. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  100. MYSQL_URL_MASTER = config["mysql_url_master"]
  101. REDIS_CACHE = config["beego_cache"]
  102. if len(REDIS_CACHE) <= 0 {
  103. panic(any("redis链接参数没有配置"))
  104. }
  105. // 接口返回加密KEY
  106. DesKey = config["des_key"]
  107. // 对象存储客户端
  108. ObjectStorageClient = config["object_storage_client"]
  109. if ObjectStorageClient == "" {
  110. ObjectStorageClient = "oss"
  111. }
  112. // OSS相关
  113. {
  114. Endpoint = config["endpoint"]
  115. Bucketname = config["bucket_name"]
  116. Imghost = config["img_host"]
  117. UploadDir = config["upload_dir"]
  118. AccessKeyId = config["access_key_id"]
  119. AccessKeySecret = config["access_key_secret"]
  120. }
  121. // MinIo相关
  122. {
  123. MinIoEndpoint = config["minio_endpoint"]
  124. MinIoBackEndpoint = config["minio_back_endpoint"]
  125. MinIoBucketname = config["minio_bucket_name"]
  126. MinIoPdfhost = config["minio_pdf_host"]
  127. MinIoUploadDir = config["minio_upload_dir"]
  128. MinIoAccessKeyId = config["minio_access_key_id"]
  129. MinIoAccessKeySecret = config["minio_access_key_secret"]
  130. MinIoUseSSL = config["minio_use_ssl"]
  131. MinIoPort = config["minio_port"]
  132. MinIoRegion = config["minio_region"]
  133. }
  134. // OSS相关(前端使用)
  135. {
  136. AliStsScheme = config["ali_sts_scheme"]
  137. RegionId = config["region_id"]
  138. RoleArn = config["role_arn"]
  139. RoleSessionName = config["role_session_name"]
  140. RAMAccessKeyId = config["ram_access_key_id"]
  141. RAMAccessKeySecret = config["ram_access_key_secret"]
  142. STSTokenCacheKey = config["sts_token_cache_key"]
  143. }
  144. // ES配置
  145. {
  146. ES_URL = config["es_url"]
  147. ES_USERNAME = config["es_username"]
  148. ES_PASSWORD = config["es_password"]
  149. }
  150. // ES 索引
  151. {
  152. MINI_REPORT_INDEX_NAME = config["mini_report_index_name"]
  153. }
  154. // 初始化ES
  155. initEs()
  156. // 静态文件目录
  157. STATIC_DIR = config["static_dir"]
  158. if STATIC_DIR == "" {
  159. STATIC_DIR = "./static"
  160. }
  161. RESOURCE_DIR = config["resource_dir"]
  162. if RESOURCE_DIR == "" {
  163. RESOURCE_DIR = "ht/"
  164. }
  165. UPLOAD_PDF_SIZE = config["upload_pdf_size"]
  166. if UPLOAD_PDF_SIZE == "" {
  167. UPLOAD_PDF_SIZE = "15"
  168. }
  169. UPLOAD_IMG_SIZE = config["upload_img_size"]
  170. if UPLOAD_IMG_SIZE == "" {
  171. UPLOAD_IMG_SIZE = "200"
  172. }
  173. UPLOAD_AUDIO_SIZE = config["upload_audio_size"]
  174. if UPLOAD_AUDIO_SIZE == "" {
  175. UPLOAD_AUDIO_SIZE = "100"
  176. }
  177. UPLOAD_VIDEO_SIZE = config["upload_video_size"]
  178. if UPLOAD_VIDEO_SIZE == "" {
  179. UPLOAD_VIDEO_SIZE = "1000"
  180. }
  181. // 初始化缓存
  182. redisClient, err := initRedis(config["redis_type"], config["beego_cache"])
  183. if err != nil {
  184. fmt.Println("redis链接异常:", err)
  185. panic(any("redis链接参数没有配置"))
  186. }
  187. Rc = redisClient
  188. }