config.go 19 KB

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