config.go 13 KB

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