config.go 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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. UPLOAD_MULTI_VIDEO_SIZE string
  63. )
  64. // ES配置
  65. var (
  66. ES_URL string // ES服务器地址
  67. ES_USERNAME string // ES账号
  68. ES_PASSWORD string // ES密码
  69. MEDIA_INDEX string
  70. )
  71. var (
  72. HT_WX_APP_SECRET string
  73. HT_WX_APPID string
  74. HT_MINI_APPID string
  75. TEMPLATE_ID_BY_PRODUCT string
  76. RESOURCE string
  77. )
  78. var (
  79. ENABLE_TASK string
  80. )
  81. // ES索引配置
  82. var (
  83. MINI_REPORT_INDEX_NAME string // 小程序的pdf报告索引
  84. )
  85. var (
  86. LogPath string //调用过程中的日志存放地址
  87. LogFile string
  88. ApiLogPath string // 接口请求地址和接口返回值日志存放地址
  89. ApiLogFile string
  90. BinLogPath string // 数据库相关的日志存放地址
  91. BinLogFile string
  92. LogMaxDays int // 日志最大保留天数
  93. )
  94. // 钢联一期地址
  95. var (
  96. HT_ADDRESS string
  97. ETA_ADDRESS string
  98. )
  99. // etahub 签名
  100. var (
  101. APP_ID string
  102. SECRET string
  103. )
  104. // SSO登录
  105. var (
  106. SSO_URL string
  107. )
  108. var DesKey string // 接口返回加密KEY
  109. func init() {
  110. tmpRunMode, err := web.AppConfig.String("run_mode")
  111. if err != nil {
  112. panic(any("配置文件读取run_mode错误 " + err.Error()))
  113. }
  114. RunMode = tmpRunMode
  115. fmt.Println("RunMode:", RunMode)
  116. if RunMode == "" {
  117. configPath := `/home/code/config/eta_mini_crm_ht/conf/app.conf`
  118. fmt.Println("configPath:", configPath)
  119. err = web.LoadAppConfig("ini", configPath)
  120. if err != nil {
  121. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  122. }
  123. tmpRunMode, _ := web.AppConfig.String("run_mode")
  124. RunMode = tmpRunMode
  125. }
  126. config, err := web.AppConfig.GetSection(RunMode)
  127. if err != nil {
  128. panic(any("配置文件读取错误 " + err.Error()))
  129. }
  130. beeLogger.Log.Info(RunMode + " 模式")
  131. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  132. MYSQL_URL_MASTER = config["mysql_url_master"]
  133. REDIS_CACHE = config["beego_cache"]
  134. if len(REDIS_CACHE) <= 0 {
  135. panic(any("redis链接参数没有配置"))
  136. }
  137. // 接口返回加密KEY
  138. DesKey = config["des_key"]
  139. // 对象存储客户端
  140. ObjectStorageClient = config["object_storage_client"]
  141. if ObjectStorageClient == "" {
  142. ObjectStorageClient = "oss"
  143. }
  144. // OSS相关
  145. {
  146. Endpoint = config["endpoint"]
  147. Bucketname = config["bucket_name"]
  148. Imghost = config["img_host"]
  149. UploadDir = config["upload_dir"]
  150. AccessKeyId = config["access_key_id"]
  151. AccessKeySecret = config["access_key_secret"]
  152. }
  153. // MinIo相关
  154. {
  155. MinIoEndpoint = config["minio_endpoint"]
  156. MinIoBackEndpoint = config["minio_back_endpoint"]
  157. MinIoBucketname = config["minio_bucket_name"]
  158. MinIoPdfhost = config["minio_pdf_host"]
  159. MinIoUploadDir = config["minio_upload_dir"]
  160. MinIoAccessKeyId = config["minio_access_key_id"]
  161. MinIoAccessKeySecret = config["minio_access_key_secret"]
  162. MinIoUseSSL = config["minio_use_ssl"]
  163. MinIoPort = config["minio_port"]
  164. MinIoRegion = config["minio_region"]
  165. }
  166. // OSS相关(前端使用)
  167. {
  168. AliStsScheme = config["ali_sts_scheme"]
  169. RegionId = config["region_id"]
  170. RoleArn = config["role_arn"]
  171. RoleSessionName = config["role_session_name"]
  172. RAMAccessKeyId = config["ram_access_key_id"]
  173. RAMAccessKeySecret = config["ram_access_key_secret"]
  174. STSTokenCacheKey = config["sts_token_cache_key"]
  175. }
  176. //推送模版消息
  177. {
  178. ETA_PUB_URL = config["eta_pub_url"]
  179. ETA_PUB_TOKEN = config["eta_pub_authorization"]
  180. }
  181. // ES配置
  182. {
  183. ES_URL = config["es_url"]
  184. ES_USERNAME = config["es_username"]
  185. ES_PASSWORD = config["es_password"]
  186. }
  187. {
  188. ENABLE_TASK = config["enable_task"]
  189. }
  190. // ES 索引
  191. {
  192. MINI_REPORT_INDEX_NAME = config["mini_report_index_name"]
  193. MEDIA_INDEX = config["media_index"]
  194. }
  195. {
  196. HT_WX_APPID = config["ht_wx_appid"]
  197. HT_WX_APP_SECRET = config["ht_wx_app_secret"]
  198. TEMPLATE_ID_BY_PRODUCT = config["template_id_by_product"]
  199. HT_MINI_APPID = config["ht_mini_appid"]
  200. RESOURCE = config["resource"]
  201. }
  202. {
  203. SSO_URL = config["sso_url"]
  204. }
  205. {
  206. HT_ADDRESS = config["ht_address"]
  207. ETA_ADDRESS = config["eta_address"]
  208. }
  209. {
  210. APP_ID = config["app_id"]
  211. SECRET = config["secret"]
  212. }
  213. // 初始化ES
  214. initEs()
  215. // 静态文件目录
  216. STATIC_DIR = config["static_dir"]
  217. if STATIC_DIR == "" {
  218. STATIC_DIR = "./static"
  219. }
  220. RESOURCE_DIR = config["resource_dir"]
  221. if RESOURCE_DIR == "" {
  222. RESOURCE_DIR = "ht/"
  223. }
  224. UPLOAD_PDF_SIZE = config["upload_pdf_size"]
  225. if UPLOAD_PDF_SIZE == "" {
  226. UPLOAD_PDF_SIZE = "15"
  227. }
  228. UPLOAD_IMG_SIZE = config["upload_img_size"]
  229. if UPLOAD_IMG_SIZE == "" {
  230. UPLOAD_IMG_SIZE = "200"
  231. }
  232. UPLOAD_AUDIO_SIZE = config["upload_audio_size"]
  233. if UPLOAD_AUDIO_SIZE == "" {
  234. UPLOAD_AUDIO_SIZE = "100"
  235. }
  236. UPLOAD_VIDEO_SIZE = config["upload_video_size"]
  237. if UPLOAD_VIDEO_SIZE == "" {
  238. UPLOAD_VIDEO_SIZE = "1000"
  239. }
  240. UPLOAD_MULTI_VIDEO_SIZE = config["upload_multi_video_size"]
  241. if UPLOAD_MULTI_VIDEO_SIZE == "" {
  242. UPLOAD_MULTI_VIDEO_SIZE = "1"
  243. }
  244. // 初始化缓存
  245. redisClient, err := initRedis(config["redis_type"], config["beego_cache"])
  246. if err != nil {
  247. fmt.Println("redis链接异常:", err)
  248. panic(any("redis链接参数没有配置"))
  249. }
  250. Rc = redisClient
  251. //MinioClient = DefaultClient()
  252. }