config.go 5.8 KB

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