config.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. package utils
  2. import (
  3. "fmt"
  4. beeLogger "github.com/beego/bee/v2/logger"
  5. "github.com/beego/beego/v2/server/web"
  6. "github.com/qiniu/qmgo"
  7. "strconv"
  8. )
  9. var (
  10. RunMode string //运行模式
  11. MYSQL_URL string //数据库连接
  12. MYSQL_URL_RDDP string //数据库连接
  13. MYSQL_URL_EDB string
  14. MYSQL_URL_DATA string
  15. MYSQL_URL_GL string
  16. MYSQL_LOG_URL string
  17. MYSQL_WEEKLY_URL string //用户主库
  18. MgoUrlData string // mongodb数据库连接配置
  19. REDIS_CACHE string //缓存地址
  20. //Rc *cache.Cache //redis缓存
  21. Re error //redis错误
  22. Rc RedisClient //redis缓存
  23. MgoDataCli *qmgo.Client // mongodb客户端连接
  24. MgoDataDbName string // mongodb指标数据的库名
  25. )
  26. // 基础配置
  27. var (
  28. STATIC_DIR string
  29. DesKey string // 接口返回加密KEY
  30. APPNAME string //项目中文名称
  31. EmailSendToUsers string // 邮件提醒人员
  32. ResourceProxyUrl string // 代理资源地址
  33. RESOURCE_DIR string
  34. )
  35. // 公共api内部服务调用
  36. var (
  37. // EDB_LIB_URL 公共指标库
  38. EDB_LIB_URL string
  39. APP_EDB_LIB_NAME_EN string
  40. EDB_LIB_Md5_KEY string
  41. // PublicChartHost 公共图库的host
  42. PublicChartHost string
  43. // SendWxTemplateMsgUrl 模板消息推送
  44. SendWxTemplateMsgUrl string
  45. // SendTemplateMsgAuthorization 模板推送秘钥
  46. SendTemplateMsgAuthorization string
  47. // HandleVideoDecibelUrl 处理音频分贝的url
  48. HandleVideoDecibelUrl string
  49. // EnglishShareUrl 英文研报群发邮件分享地址
  50. EnglishShareUrl string
  51. // EnPolicyReportUrl 英文策略报告
  52. EnPolicyReportUrl string
  53. // GoogleTranslateUrl 谷歌翻译服务
  54. GoogleTranslateUrl string
  55. // AlarmMsgUrl 报警服务地址
  56. AlarmMsgUrl string
  57. EtaBridgeUrl string // 桥接服务地址
  58. EtaBridgeAppNameEn string // 桥接服务英文名称-鉴权用
  59. EtaBridgeMd5Key string // 桥接服务Md5密钥-鉴权用
  60. EtaBridgeDesKey string // 桥接服务Des密钥-解密数据用
  61. EtaBridgeLoginUrl string // 第三方登录鉴权接口地址
  62. EtaBridgeLogoutUrl string // 第三方登出接口地址
  63. )
  64. // TemplateIdByProduct 微信配置信息
  65. var (
  66. TemplateIdByProduct string //产品运行报告通知-模板ID
  67. WxYbAppId string // 研报小程序appid
  68. WxYbAppSecret string // 研报小程序秘钥
  69. )
  70. // ES配置
  71. var (
  72. ES_URL string // ES服务器地址
  73. ES_USERNAME string // ES账号
  74. ES_PASSWORD string // ES密码
  75. )
  76. // ES索引配置
  77. var (
  78. DATA_INDEX_NAME string //数据指标库索引
  79. CHART_INDEX_NAME string //研究图库索引
  80. EsReportIndexName string //研报ES索引
  81. EsEnglishReportIndexName string //英文研报ES索引
  82. MY_CHART_INDEX_NAME string //研究图库(MY ETA)索引
  83. SmartReportIndexName string //智能研报ES索引
  84. )
  85. // 科大讯飞--语音合成
  86. var (
  87. XfHostUrl string
  88. )
  89. // 阿里云配置
  90. var (
  91. Bucketname string
  92. Endpoint string
  93. Imghost string
  94. UploadDir string
  95. Upload_Audio_Dir string
  96. AccessKeyId string
  97. AccessKeySecret string
  98. )
  99. // 阿里云oss前端上传用
  100. var (
  101. AliStsScheme string
  102. RegionId string
  103. RoleArn string
  104. RoleSessionName string
  105. RAMAccessKeyId string
  106. RAMAccessKeySecret string
  107. STSTokenCacheKey string
  108. )
  109. // 阿里云邮箱配置
  110. var (
  111. AliyunEmailAccountName string
  112. AliyunEmailAccessKeyId string
  113. AliyunEmailAccessKeySecret string
  114. )
  115. // 腾讯云邮箱配置
  116. var (
  117. TencentSDKSecretId string // 腾讯云主账号SecretId
  118. TencentSDKSecretKey string // 腾讯云主账号SecretKey
  119. TencentEmailFromEmailAddress string // 腾讯云邮件发信地址
  120. TencentEmailTemplateID uint64 // 云邮件模板ID
  121. )
  122. // 日志配置
  123. var (
  124. LogPath string //调用过程中的日志存放地址
  125. LogFile string
  126. LogDataPath string //调用过程中图表相关的日志存放地址
  127. LogDataFile string
  128. BinLogPath string //数据库相关的日志存放地址
  129. BinLogFile string
  130. ApiLogPath string //接口请求地址和接口返回值日志存放地址
  131. ApiLogFile string
  132. LogMaxDays int //日志最大保留天数
  133. )
  134. // CrmEtaServerUrl CRM-ETA服务地址
  135. var (
  136. CrmEtaServerUrl string
  137. CrmEtaServerDes3Key string
  138. )
  139. // BusinessCode 商家编码
  140. var BusinessCode string
  141. // MinIo配置
  142. var (
  143. MinIoBucketname string
  144. MinIoEndpoint string
  145. MinIoBackEndpoint string
  146. MinIoImghost string
  147. MinIoUploadDir string
  148. MinIoUpload_Audio_Dir string
  149. MinIoAccessKeyId string
  150. MinIoAccessKeySecret string
  151. MinIoUseSSL string
  152. MinIoPort string
  153. MinIoRegion string
  154. )
  155. // 对象存储客户端
  156. var (
  157. ObjectStorageClient string // 目前有oss minio,默认oss
  158. )
  159. // S3配置
  160. var (
  161. S3Endpoint string
  162. S3BucketName string
  163. S3UploadDir string
  164. S3AccessKeyId string
  165. S3AccessKeySecret string
  166. S3Host string
  167. S3Region string
  168. S3ForceStyle string
  169. S3EndpointPort string
  170. S3Protocol string
  171. )
  172. // chrome配置
  173. var (
  174. ChromePath string // chrome浏览器地址
  175. )
  176. var (
  177. UseMongo bool // 是否使用mongo
  178. )
  179. func init() {
  180. tmpRunMode, err := web.AppConfig.String("run_mode")
  181. if err != nil {
  182. panic("配置文件读取run_mode错误 " + err.Error())
  183. }
  184. RunMode = tmpRunMode
  185. fmt.Println("RunMode:", RunMode)
  186. if RunMode == "" {
  187. localIp, err := GetLocalIP()
  188. fmt.Println("localIp:", localIp)
  189. if localIp == "10.0.0.123" {
  190. RunMode = "debug"
  191. } else {
  192. RunMode = "release"
  193. }
  194. fmt.Println("RunMode:", RunMode)
  195. configPath := `/home/code/config/eta_mobile/conf/app.conf`
  196. fmt.Println("configPath:", configPath)
  197. err = web.LoadAppConfig("ini", configPath)
  198. if err != nil {
  199. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  200. }
  201. }
  202. config, err := web.AppConfig.GetSection(RunMode)
  203. if err != nil {
  204. panic("配置文件读取错误 " + err.Error())
  205. }
  206. beeLogger.Log.Info(RunMode + " 模式")
  207. MYSQL_URL = config["mysql_url"]
  208. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  209. MYSQL_URL_EDB = config["mysql_url_edb"]
  210. MYSQL_URL_DATA = config["mysql_url_data"]
  211. MYSQL_URL_GL = config["mysql_url_gl"]
  212. MYSQL_LOG_URL = config["mysql_url_log"]
  213. MYSQL_WEEKLY_URL = config["mysql_url_weekly"]
  214. // mongodb数据库连接配置
  215. MgoUrlData = config["mgo_url_data"]
  216. REDIS_CACHE = config["beego_cache"]
  217. if len(REDIS_CACHE) <= 0 {
  218. panic("redis链接参数没有配置")
  219. }
  220. //Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存
  221. //if Re != nil {
  222. // fmt.Println(Re)
  223. // panic(Re)
  224. //}
  225. // 初始化缓存
  226. redisClient, err := initRedis(config["redis_type"], config["beego_cache"])
  227. if err != nil {
  228. fmt.Println("redis链接异常:", err)
  229. panic(any(Re))
  230. }
  231. Rc = redisClient
  232. // 项目中文名称
  233. appNameCn, err := web.AppConfig.String("app_name_cn")
  234. if err != nil {
  235. panic(any("配置文件读取app_name_cn错误 " + err.Error()))
  236. }
  237. APPNAME = appNameCn
  238. // 初始化内部服务配置
  239. // 接口返回加密KEY
  240. DesKey = config["des_key"]
  241. // 邮件提醒人员
  242. EmailSendToUsers = config["email_send_to_users"]
  243. // 静态文件目录
  244. STATIC_DIR = config["static_dir"]
  245. // 代理资源地址
  246. ResourceProxyUrl = config["resource_proxy_url"]
  247. RESOURCE_DIR = config["resource_dir"]
  248. if RESOURCE_DIR == "" {
  249. RESOURCE_DIR = "eta/"
  250. }
  251. // 系统内部服务地址
  252. {
  253. // 公共指标库相关
  254. EDB_LIB_URL = config["edb_lib_url"]
  255. APP_EDB_LIB_NAME_EN = config["app_edb_lib_name_en"]
  256. EDB_LIB_Md5_KEY = config["edb_lib_md5_key"]
  257. // 图表项目域名
  258. PublicChartHost = config["public_chart_host"]
  259. // 发送微信模板消息地址
  260. SendWxTemplateMsgUrl = config["send_wx_template_msg_url"]
  261. // 发送微信模板消息地址
  262. SendTemplateMsgAuthorization = config["send_template_msg_authorization"]
  263. // 语音分贝处理的地址
  264. HandleVideoDecibelUrl = config["handle_video_decibel_url"]
  265. // 英文研报分享的地址
  266. EnglishShareUrl = config["english_share_url"]
  267. // 策略报告地址
  268. EnPolicyReportUrl = config["en_policy_report_url"]
  269. // 谷歌翻译服务地址
  270. GoogleTranslateUrl = config["google_translate_url"]
  271. // 报警服务地址
  272. AlarmMsgUrl = config["alarm_msg_url"]
  273. EtaBridgeUrl = config["eta_bridge_url"] // 桥接服务地址
  274. EtaBridgeAppNameEn = config["eta_bridge_app_name_en"] // 桥接服务英文名称-鉴权用
  275. EtaBridgeMd5Key = config["eta_bridge_md5_key"] // 桥接服务Md5密钥-鉴权用
  276. EtaBridgeDesKey = config["eta_bridge_des_key"] // 桥接服务Des密钥-解密数据用
  277. EtaBridgeLoginUrl = config["eta_bridge_login_url"] // eta桥接服务-登录接口地址
  278. EtaBridgeLogoutUrl = config["eta_bridge_logout_url"] // eta桥接服务-登出接口地址
  279. }
  280. //日志配置
  281. {
  282. LogPath = config["log_path"]
  283. LogFile = config["log_file"]
  284. LogDataPath = config["log_data_path"]
  285. LogDataFile = config["log_data_file"]
  286. BinLogPath = config["binlog_path"]
  287. BinLogFile = config["binlog_file"]
  288. ApiLogPath = config["apilog_path"]
  289. ApiLogFile = config["apilog_file"]
  290. logMaxDaysStr := config["log_max_day"]
  291. LogMaxDays, _ = strconv.Atoi(logMaxDaysStr)
  292. }
  293. {
  294. CrmEtaServerUrl = config["crm_eta_server_url"]
  295. CrmEtaServerDes3Key = config["crm_eta_server_des3_key"]
  296. }
  297. // ES配置
  298. {
  299. ES_URL = config["es_url"]
  300. ES_USERNAME = config["es_username"]
  301. ES_PASSWORD = config["es_password"]
  302. }
  303. // ES 索引
  304. {
  305. DATA_INDEX_NAME = config["data_index_name"]
  306. CHART_INDEX_NAME = config["chart_index_name"]
  307. MY_CHART_INDEX_NAME = config["my_chart_index_name"]
  308. EsReportIndexName = config["es_report_index_name"]
  309. EsEnglishReportIndexName = config["es_english_report_index_name"]
  310. SmartReportIndexName = config["es_smart_report_index_name"]
  311. }
  312. // 微信相关
  313. {
  314. //模板消息
  315. TemplateIdByProduct = config["template_id_by_product"]
  316. WxYbAppId = config["wx_yb_appid"] //弘则研报小程序
  317. WxYbAppSecret = config["wx_yb_app_secret"] // 研报小程序秘钥
  318. }
  319. // 对象存储客户端
  320. ObjectStorageClient = config["object_storage_client"]
  321. // OSS相关
  322. {
  323. Endpoint = config["endpoint"]
  324. Bucketname = config["bucket_name"]
  325. Imghost = config["img_host"]
  326. UploadDir = config["upload_dir"]
  327. Upload_Audio_Dir = config["upload_audio_dir"]
  328. AccessKeyId = config["access_key_id"]
  329. AccessKeySecret = config["access_key_secret"]
  330. }
  331. // OSS相关(前端使用)
  332. {
  333. AliStsScheme = config["ali_sts_scheme"]
  334. RegionId = config["region_id"]
  335. RoleArn = config["role_arn"]
  336. RoleSessionName = config["role_session_name"]
  337. RAMAccessKeyId = config["ram_access_key_id"]
  338. RAMAccessKeySecret = config["ram_access_key_secret"]
  339. STSTokenCacheKey = config["sts_token_cache_key"]
  340. }
  341. // 阿里云邮箱配置
  342. {
  343. AliyunEmailAccountName = config["aliyun_email_account_name"]
  344. AliyunEmailAccessKeyId = config["aliyun_email_access_key_id"]
  345. AliyunEmailAccessKeySecret = config["aliyun_email_access_key_secret"]
  346. }
  347. // 腾讯云邮箱配置
  348. {
  349. TencentSDKSecretId = config["tencent_sdk_secret_id"] // 腾讯云主账号SecretId
  350. TencentSDKSecretKey = config["tencent_sdk_secret_key"] // 腾讯云主账号SecretKey
  351. TencentEmailFromEmailAddress = config["tencent_email_from_email_address"] // 腾讯云邮件发信地址
  352. tencentEmailTemplateIDtr := config["tencent_email_template_id"]
  353. if tencentEmailTemplateIDtr != `` {
  354. tmpTencentEmailTemplateID, err := strconv.Atoi(tencentEmailTemplateIDtr) //弘则研报来源
  355. if err != nil {
  356. panic(any("配置文件读取tencent_email_template_id错误 " + err.Error()))
  357. }
  358. TencentEmailTemplateID = uint64(tmpTencentEmailTemplateID)
  359. }
  360. }
  361. // 科大讯飞
  362. {
  363. XfHostUrl = config["xf_host_url"]
  364. }
  365. // MinIo相关
  366. {
  367. MinIoEndpoint = config["minio_endpoint"]
  368. MinIoBackEndpoint = config["minio_back_endpoint"]
  369. MinIoBucketname = config["minio_bucket_name"]
  370. MinIoImghost = config["minio_img_host"]
  371. MinIoUploadDir = config["minio_upload_dir"]
  372. MinIoUpload_Audio_Dir = config["minio_upload_audio_dir"]
  373. MinIoAccessKeyId = config["minio_access_key_id"]
  374. MinIoAccessKeySecret = config["minio_access_key_secret"]
  375. MinIoUseSSL = config["minio_use_ssl"]
  376. MinIoPort = config["minio_port"]
  377. MinIoRegion = config["minio_region"]
  378. }
  379. // S3-OSS相关
  380. {
  381. S3Endpoint = config["s3_endpoint"]
  382. S3BucketName = config["s3_bucket_name"]
  383. S3Host = config["s3_host"]
  384. S3AccessKeyId = config["s3_access_key_id"]
  385. S3AccessKeySecret = config["s3_access_key_secret"]
  386. S3UploadDir = config["s3_upload_dir"]
  387. S3Region = config["s3_region"]
  388. S3ForceStyle = config["s3_force_style"]
  389. S3EndpointPort = config["s3_endpoint_port"]
  390. S3Protocol = config["s3_protocol"]
  391. }
  392. // 商家编码
  393. BusinessCode = config["business_code"]
  394. // chrome配置
  395. ChromePath = config["chrome_path"]
  396. // 初始化ES
  397. initEs()
  398. }