config.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  1. package utils
  2. import (
  3. "errors"
  4. "fmt"
  5. "strconv"
  6. beeLogger "github.com/beego/bee/v2/logger"
  7. "github.com/beego/beego/v2/server/web"
  8. "github.com/qiniu/qmgo"
  9. "github.com/spf13/viper"
  10. )
  11. var (
  12. RunMode string //运行模式
  13. MYSQL_URL string //数据库连接
  14. MYSQL_URL_RDDP string //数据库连接
  15. MYSQL_URL_EDB string
  16. MYSQL_URL_DATA string
  17. MYSQL_URL_GL string
  18. MYSQL_LOG_URL string
  19. MYSQL_WEEKLY_URL string //用户主库
  20. MYSQL_AI_URL string //ETA-AI 数据库
  21. MgoUrlData string // mongodb数据库连接配置
  22. REDIS_CACHE string //缓存地址
  23. //Rc *cache.Cache //redis缓存
  24. Re error //redis错误
  25. Rc RedisClient //redis缓存
  26. MgoDataCli *qmgo.Client // mongodb客户端连接
  27. MgoDataDbName string // mongodb指标数据的库名
  28. )
  29. // 基础配置
  30. var (
  31. STATIC_DIR string
  32. DesKey string // 接口返回加密KEY
  33. APPNAME string //项目中文名称
  34. EmailSendToUsers string // 邮件提醒人员
  35. JhGnAppKey string // 聚合短信,国内AppKey
  36. JhGjAppKey string // 聚合短信,国际AppKey
  37. ResourceProxyUrl string // 代理资源地址
  38. RESOURCE_DIR string
  39. )
  40. // ES配置
  41. var (
  42. ES_URL string // ES服务器地址
  43. ES_USERNAME string // ES账号
  44. ES_PASSWORD string // ES密码
  45. )
  46. // 公共api内部服务调用
  47. var (
  48. // EDB_LIB_URL 公共指标库
  49. EDB_LIB_URL string
  50. APP_EDB_LIB_NAME_EN string
  51. EDB_LIB_Md5_KEY string
  52. // PublicChartHost 公共图库的host
  53. PublicChartHost string
  54. // MySteelPostUrl 钢联化工的服务地址
  55. MySteelPostUrl string
  56. // SendWxTemplateMsgUrl 模板消息推送
  57. SendWxTemplateMsgUrl string
  58. // SendTemplateMsgAuthorization 模板推送秘钥
  59. SendTemplateMsgAuthorization string
  60. // HandleVideoDecibelUrl 处理音频分贝的url
  61. HandleVideoDecibelUrl string
  62. // Ppt2ImageUrl ppt转图片服务的地址
  63. Ppt2ImageUrl string
  64. // HongzeOpenApiHost 开放openapi的地址
  65. HongzeOpenApiHost string
  66. // EnglishShareUrl 英文研报群发邮件分享地址
  67. EnglishShareUrl string
  68. // EnPolicyReportUrl 英文策略报告
  69. EnPolicyReportUrl string
  70. // GoogleTranslateUrl 谷歌翻译服务
  71. GoogleTranslateUrl string
  72. // AlarmMsgUrl 报警服务地址
  73. AlarmMsgUrl string
  74. // ChatUrl chatGPT服务地址
  75. ChatUrl string
  76. EtaBridgeUrl string // 桥接服务地址
  77. EtaBridgeAppNameEn string // 桥接服务英文名称-鉴权用
  78. EtaBridgeMd5Key string // 桥接服务Md5密钥-鉴权用
  79. EtaBridgeDesKey string // 桥接服务Des密钥-解密数据用
  80. EtaBridgeLoginUrl string // 第三方登录鉴权接口地址
  81. EtaBridgeLogoutUrl string // 第三方登出接口地址
  82. ETAMiniBridgeUrl string // 桥接服务地址
  83. ETA_MINI_APPID string // 桥接服务-鉴权用
  84. ETA_MINI_APP_SECRET string // 桥接服务-鉴权用
  85. )
  86. // 微信配置信息
  87. var (
  88. WxId string //微信原始ID
  89. WxAppId string // 公众号appid
  90. WxAppSecret string // 公众号秘钥
  91. TemplateIdByProduct string //产品运行报告通知-模板ID
  92. WxYbAppId string // 研报小程序appid
  93. WxYbId string // 研报小程序微信原始ID
  94. WxYbAppSecret string // 研报小程序秘钥
  95. WxYbPlatform int //弘则研报来源
  96. )
  97. // ES索引配置
  98. var (
  99. DATA_INDEX_NAME string //数据指标库索引
  100. CHART_INDEX_NAME string //研究图库索引
  101. EsReportIndexName string //研报ES索引
  102. EsEnglishReportIndexName string //英文研报ES索引
  103. MY_CHART_INDEX_NAME string //研究图库(MY ETA)索引
  104. EsSemanticAnalysisDocIndexName string //ES语义分析文档索引名
  105. SmartReportIndexName string //智能研报ES索引
  106. )
  107. var (
  108. XfHostUrl string // 科大讯飞--语音合成
  109. )
  110. // 对象存储客户端
  111. var (
  112. ObjectStorageClient string // 目前有oss minio,默认oss
  113. PptUpdateApi string //ppt 通过后端接口的方式上传
  114. )
  115. // 阿里云配置
  116. var (
  117. Bucketname string
  118. Endpoint string
  119. Imghost string
  120. UploadDir string
  121. Upload_Audio_Dir string
  122. AccessKeyId string
  123. AccessKeySecret string
  124. )
  125. // 阿里云oss前端上传用
  126. var (
  127. AliStsScheme string
  128. RegionId string
  129. RoleArn string
  130. RoleSessionName string
  131. RAMAccessKeyId string
  132. RAMAccessKeySecret string
  133. STSTokenCacheKey string
  134. )
  135. // 阿里云邮箱配置
  136. var (
  137. AliyunEmailAccountName string
  138. AliyunEmailAccessKeyId string
  139. AliyunEmailAccessKeySecret string
  140. AliyunEmailReplyAddress string
  141. AliyunEmailReplyAddressAlias string
  142. )
  143. // 腾讯云邮箱配置
  144. var (
  145. TencentSDKSecretId string // 腾讯云主账号SecretId
  146. TencentSDKSecretKey string // 腾讯云主账号SecretKey
  147. TencentEmailFromEmailAddress string // 腾讯云邮件发信地址
  148. TencentEmailTemplateID uint64 // 云邮件模板ID
  149. )
  150. // LibreOfficePath LibreOfficePath的地址
  151. var LibreOfficePath string
  152. // CrmEtaServerUrl CRM-ETA服务地址
  153. var (
  154. CrmEtaServerUrl string
  155. CrmEtaServerDes3Key string
  156. )
  157. // eta_forum_hub ETA社区桥接服务地址
  158. var (
  159. ETA_FORUM_HUB_URL string
  160. ETA_FORUM_HUB_NAME_EN string
  161. ETA_FORUM_HUB_MD5_KEY string
  162. )
  163. // BusinessCode 商家编码
  164. var BusinessCode string
  165. // 日志配置
  166. var (
  167. LogPath string //调用过程中的日志存放地址
  168. LogFile string
  169. LogDataPath string //调用过程中图表相关的日志存放地址
  170. LogDataFile string
  171. BinLogPath string //数据库相关的日志存放地址
  172. BinLogFile string
  173. ApiLogPath string //接口请求地址和接口返回值日志存放地址
  174. ApiLogFile string
  175. LogMaxDays int //日志最大保留天数
  176. )
  177. // MinIo配置
  178. var (
  179. MinIoBucketname string
  180. MinIoEndpoint string
  181. MinIoBackEndpoint string
  182. MinIoImghost string
  183. MinIoUploadDir string
  184. MinIoUpload_Audio_Dir string
  185. MinIoAccessKeyId string
  186. MinIoAccessKeySecret string
  187. MinIoUseSSL string
  188. MinIoPort string
  189. MinIoRegion string
  190. )
  191. // PythonUrlReport2Img 生成长图服务地址
  192. var PythonUrlReport2Img string
  193. // ETA-AI服务
  194. var EtaAiUrl string
  195. var (
  196. EtaAppid string
  197. EtaSecret string
  198. )
  199. // S3配置
  200. var (
  201. S3Endpoint string
  202. S3BackEndpoint string
  203. S3BucketName string
  204. S3UploadDir string
  205. S3AccessKeyId string
  206. S3AccessKeySecret string
  207. S3Host string
  208. S3Region string
  209. S3ForceStyle string
  210. S3EndpointPort string
  211. S3Protocol string
  212. S3DisableSSL string
  213. S3OpenAcl string
  214. )
  215. // chrome配置
  216. var (
  217. ChromePath string // chrome浏览器地址
  218. )
  219. var (
  220. ErrMsgConfigFile string
  221. )
  222. var (
  223. ViperConfig *viper.Viper
  224. )
  225. var (
  226. UseMongo bool // 是否使用mongo
  227. )
  228. func init() {
  229. tmpRunMode, err := web.AppConfig.String("run_mode")
  230. if err != nil {
  231. panic(any("配置文件读取run_mode错误 " + err.Error()))
  232. }
  233. RunMode = tmpRunMode
  234. fmt.Println("RunMode:", RunMode)
  235. if RunMode == "" {
  236. localIp, err := GetLocalIP()
  237. fmt.Println("localIp:", localIp)
  238. if localIp == "10.0.0.123" {
  239. RunMode = "debug"
  240. } else {
  241. RunMode = "release"
  242. }
  243. fmt.Println("RunMode:", RunMode)
  244. configPath := `/home/code/config/eta_api/conf/app.conf`
  245. fmt.Println("configPath:", configPath)
  246. err = web.LoadAppConfig("ini", configPath)
  247. if err != nil {
  248. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  249. }
  250. }
  251. config, err := web.AppConfig.GetSection(RunMode)
  252. if err != nil {
  253. panic(any("配置文件读取错误 " + err.Error()))
  254. }
  255. beeLogger.Log.Info(RunMode + " 模式")
  256. MYSQL_URL = config["mysql_url"]
  257. MYSQL_URL_RDDP = config["mysql_url_rddp"]
  258. MYSQL_URL_EDB = config["mysql_url_edb"]
  259. MYSQL_URL_DATA = config["mysql_url_data"]
  260. MYSQL_URL_GL = config["mysql_url_gl"]
  261. MYSQL_LOG_URL = config["mysql_url_log"]
  262. // 用户主库
  263. MYSQL_WEEKLY_URL = config["mysql_url_weekly"]
  264. // 用户主库
  265. MYSQL_WEEKLY_URL = config["mysql_url_weekly"]
  266. //ETA-AI
  267. MYSQL_AI_URL = config["mysql_url_ai"]
  268. // mongodb数据库连接配置
  269. MgoUrlData = config["mgo_url_data"]
  270. REDIS_CACHE = config["beego_cache"]
  271. if len(REDIS_CACHE) <= 0 {
  272. panic(any("redis链接参数没有配置"))
  273. }
  274. //Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存
  275. //if Re != nil {
  276. // fmt.Println("redis链接异常:", Re)
  277. // panic(any(Re))
  278. //}
  279. // 初始化缓存
  280. redisClient, err := initRedis(config["redis_type"], config["beego_cache"])
  281. if err != nil {
  282. fmt.Println("redis链接异常:", err)
  283. panic(any(Re))
  284. }
  285. Rc = redisClient
  286. // 项目中文名称
  287. appNameCn, err := web.AppConfig.String("app_name_cn")
  288. if err != nil {
  289. panic(any("配置文件读取app_name_cn错误 " + err.Error()))
  290. }
  291. APPNAME = appNameCn
  292. // 初始化内部服务配置
  293. // 接口返回加密KEY
  294. DesKey = config["des_key"]
  295. // 邮件提醒人员
  296. EmailSendToUsers = config["email_send_to_users"]
  297. // 聚合短信,国内AppKey
  298. JhGnAppKey = config["jh_gn_app_key"]
  299. JhGjAppKey = config["jh_gj_app_key"]
  300. // ppt 转图片服务地址
  301. Ppt2ImageUrl = config["ppt2_image_url"]
  302. // 静态文件目录
  303. STATIC_DIR = config["static_dir"]
  304. // 代理资源地址
  305. ResourceProxyUrl = config["resource_proxy_url"]
  306. RESOURCE_DIR = config["resource_dir"]
  307. if RESOURCE_DIR == "" {
  308. RESOURCE_DIR = "eta/"
  309. }
  310. // 系统内部服务地址
  311. {
  312. // 公共指标库相关
  313. EDB_LIB_URL = config["edb_lib_url"]
  314. APP_EDB_LIB_NAME_EN = config["app_edb_lib_name_en"]
  315. EDB_LIB_Md5_KEY = config["edb_lib_md5_key"]
  316. // 图表项目域名
  317. PublicChartHost = config["public_chart_host"]
  318. // 钢联化工服务地址
  319. MySteelPostUrl = config["mysteel_post_url"]
  320. // 发送微信模板消息地址
  321. SendWxTemplateMsgUrl = config["send_wx_template_msg_url"]
  322. // 发送微信模板消息地址
  323. SendTemplateMsgAuthorization = config["send_template_msg_authorization"]
  324. // 语音分贝处理的地址
  325. HandleVideoDecibelUrl = config["handle_video_decibel_url"]
  326. // 弘则open api的地址
  327. HongzeOpenApiHost = config["hongze_open_api_host"]
  328. // 英文研报分享的地址
  329. EnglishShareUrl = config["english_share_url"]
  330. // 策略报告地址
  331. EnPolicyReportUrl = config["en_policy_report_url"]
  332. // 谷歌翻译服务地址
  333. GoogleTranslateUrl = config["google_translate_url"]
  334. // 报警服务地址
  335. AlarmMsgUrl = config["alarm_msg_url"]
  336. // chatGPT服务地址
  337. ChatUrl = config["chat_url"]
  338. EtaBridgeUrl = config["eta_bridge_url"] // 桥接服务地址
  339. EtaBridgeAppNameEn = config["eta_bridge_app_name_en"] // 桥接服务英文名称-鉴权用
  340. EtaBridgeMd5Key = config["eta_bridge_md5_key"] // 桥接服务Md5密钥-鉴权用
  341. EtaBridgeDesKey = config["eta_bridge_des_key"] // 桥接服务Des密钥-解密数据用
  342. EtaBridgeLoginUrl = config["eta_bridge_login_url"] // eta桥接服务-登录接口地址
  343. EtaBridgeLogoutUrl = config["eta_bridge_logout_url"] // eta桥接服务-登出接口地址
  344. }
  345. //日志配置
  346. {
  347. LogPath = config["log_path"]
  348. LogFile = config["log_file"]
  349. LogDataPath = config["log_data_path"]
  350. LogDataFile = config["log_data_file"]
  351. BinLogPath = config["binlog_path"]
  352. BinLogFile = config["binlog_file"]
  353. ApiLogPath = config["apilog_path"]
  354. ApiLogFile = config["apilog_file"]
  355. logMaxDaysStr := config["log_max_day"]
  356. LogMaxDays, _ = strconv.Atoi(logMaxDaysStr)
  357. }
  358. // ES配置
  359. {
  360. ES_URL = config["es_url"]
  361. ES_USERNAME = config["es_username"]
  362. ES_PASSWORD = config["es_password"]
  363. }
  364. // 微信相关
  365. {
  366. WxAppId = config["wx_appid"]
  367. WxAppSecret = config["wx_app_secret"]
  368. WxId = config["wx_id"]
  369. //模板消息
  370. TemplateIdByProduct = config["template_id_by_product"]
  371. WxYbAppId = config["wx_yb_appid"] //弘则研报小程序
  372. WxYbId = config["wx_yb_id"] // 研报小程序微信原始ID
  373. WxYbAppSecret = config["wx_yb_app_secret"] // 研报小程序秘钥
  374. wxYbPlatformStr := config["wx_yb_platform"]
  375. if wxYbPlatformStr != `` {
  376. WxYbPlatform, err = strconv.Atoi(wxYbPlatformStr) //弘则研报来源
  377. if err != nil {
  378. panic(any("配置文件读取wx_yb_platform错误 " + err.Error()))
  379. }
  380. }
  381. }
  382. // 对象存储客户端
  383. ObjectStorageClient = config["object_storage_client"]
  384. // ppt上传是否走后端
  385. PptUpdateApi = config["ppt_update_api"]
  386. // OSS相关
  387. {
  388. Endpoint = config["endpoint"]
  389. Bucketname = config["bucket_name"]
  390. Imghost = config["img_host"]
  391. UploadDir = config["upload_dir"]
  392. Upload_Audio_Dir = config["upload_audio_dir"]
  393. AccessKeyId = config["access_key_id"]
  394. AccessKeySecret = config["access_key_secret"]
  395. }
  396. // OSS相关(前端使用)
  397. {
  398. AliStsScheme = config["ali_sts_scheme"]
  399. RegionId = config["region_id"]
  400. RoleArn = config["role_arn"]
  401. RoleSessionName = config["role_session_name"]
  402. RAMAccessKeyId = config["ram_access_key_id"]
  403. RAMAccessKeySecret = config["ram_access_key_secret"]
  404. STSTokenCacheKey = config["sts_token_cache_key"]
  405. }
  406. // 阿里云邮箱配置
  407. {
  408. AliyunEmailAccountName = config["aliyun_email_account_name"]
  409. AliyunEmailAccessKeyId = config["aliyun_email_access_key_id"]
  410. AliyunEmailAccessKeySecret = config["aliyun_email_access_key_secret"]
  411. AliyunEmailReplyAddress = config["aliyun_email_reply_address"]
  412. AliyunEmailReplyAddressAlias = config["aliyun_email_reply_address_alias"]
  413. }
  414. // 腾讯云邮箱配置
  415. {
  416. TencentSDKSecretId = config["tencent_sdk_secret_id"] // 腾讯云主账号SecretId
  417. TencentSDKSecretKey = config["tencent_sdk_secret_key"] // 腾讯云主账号SecretKey
  418. TencentEmailFromEmailAddress = config["tencent_email_from_email_address"] // 腾讯云邮件发信地址
  419. tencentEmailTemplateIDtr := config["tencent_email_template_id"]
  420. if tencentEmailTemplateIDtr != `` {
  421. tmpTencentEmailTemplateID, err := strconv.Atoi(tencentEmailTemplateIDtr) //弘则研报来源
  422. if err != nil {
  423. panic(any("配置文件读取tencent_email_template_id错误 " + err.Error()))
  424. }
  425. TencentEmailTemplateID = uint64(tmpTencentEmailTemplateID)
  426. }
  427. }
  428. // 科大讯飞
  429. {
  430. //XfAPPID = config["xf_appid"]
  431. //XfAPIKey = config["xf_api_key"]
  432. //XfAPISecret = config["xf_api_secret"]
  433. XfHostUrl = config["xf_host_url"]
  434. //XfOrigin = config["xf_origin"]
  435. //XfVcn = config["xf_vcn"]
  436. }
  437. // ES 索引
  438. {
  439. DATA_INDEX_NAME = config["data_index_name"]
  440. CHART_INDEX_NAME = config["chart_index_name"]
  441. MY_CHART_INDEX_NAME = config["my_chart_index_name"]
  442. EsReportIndexName = config["es_report_index_name"]
  443. EsEnglishReportIndexName = config["es_english_report_index_name"]
  444. EsSemanticAnalysisDocIndexName = config["es_semantic_analysis_doc_index_name"]
  445. SmartReportIndexName = config["es_smart_report_index_name"]
  446. }
  447. CrmEtaServerUrl = config["crm_eta_server_url"]
  448. CrmEtaServerDes3Key = config["crm_eta_server_des3_key"]
  449. LibreOfficePath = config["libre_office_path"]
  450. // eta_forum_hub ETA社区桥接服务地址
  451. {
  452. ETA_FORUM_HUB_URL = config["eta_forum_hub_url"]
  453. ETA_FORUM_HUB_NAME_EN = config["eta_forum_hub_name_en"]
  454. ETA_FORUM_HUB_MD5_KEY = config["eta_forum_hub_md5_key"]
  455. }
  456. // 商家编码
  457. BusinessCode = config["business_code"]
  458. // eta_mini_bridge 小程序桥接服务地址
  459. {
  460. ETAMiniBridgeUrl = config["eta_mini_bridge_url"]
  461. ETA_MINI_APPID = config["eta_mini_bridge_appid"] // 桥接服务-鉴权用
  462. ETA_MINI_APP_SECRET = config["eta_mini_bridge_secret"] // 桥接服务-鉴权用
  463. }
  464. // MinIo相关
  465. {
  466. MinIoEndpoint = config["minio_endpoint"]
  467. MinIoBackEndpoint = config["minio_back_endpoint"]
  468. MinIoBucketname = config["minio_bucket_name"]
  469. MinIoImghost = config["minio_img_host"]
  470. MinIoUploadDir = config["minio_upload_dir"]
  471. MinIoUpload_Audio_Dir = config["minio_upload_audio_dir"]
  472. MinIoAccessKeyId = config["minio_access_key_id"]
  473. MinIoAccessKeySecret = config["minio_access_key_secret"]
  474. MinIoUseSSL = config["minio_use_ssl"]
  475. MinIoPort = config["minio_port"]
  476. MinIoRegion = config["minio_region"]
  477. }
  478. // S3-OSS相关
  479. {
  480. S3Endpoint = config["s3_endpoint"]
  481. S3BackEndpoint = config["s3_back_endpoint"]
  482. S3BucketName = config["s3_bucket_name"]
  483. S3Host = config["s3_host"]
  484. S3AccessKeyId = config["s3_access_key_id"]
  485. S3AccessKeySecret = config["s3_access_key_secret"]
  486. S3UploadDir = config["s3_upload_dir"]
  487. S3Region = config["s3_region"]
  488. S3ForceStyle = config["s3_force_style"]
  489. S3EndpointPort = config["s3_endpoint_port"]
  490. S3Protocol = config["s3_protocol"]
  491. S3DisableSSL = config["s3_disable_ssl"]
  492. S3OpenAcl = config["s3_open_acl"]
  493. }
  494. // 生成长图服务地址
  495. PythonUrlReport2Img = config["python_url_report2img"]
  496. EtaAiUrl = config["eta_ai_url"]
  497. EtaAppid = config["eta_appid"]
  498. EtaSecret = config["eta_secret"]
  499. // chrome配置
  500. ChromePath = config["chrome_path"]
  501. // 初始化ES
  502. initEs()
  503. ErrMsgConfigFile = config["err_msg_config_file"]
  504. if ErrMsgConfigFile != "" {
  505. viper.SetConfigFile(ErrMsgConfigFile)
  506. err = viper.ReadInConfig()
  507. if err != nil {
  508. if _, ok := err.(viper.ConfigFileNotFoundError); ok {
  509. fmt.Println(errors.New("config file not found"))
  510. panic(any("config file not found"))
  511. } else {
  512. fmt.Println(errors.New("config file was found but another error was produced err:" + err.Error()))
  513. panic(any("config file was found but another error was produced err:" + err.Error()))
  514. }
  515. return
  516. }
  517. ViperConfig = viper.GetViper()
  518. }
  519. }