config.go 13 KB

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