config.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. package utils
  2. import (
  3. "fmt"
  4. "math"
  5. "strconv"
  6. "strings"
  7. beeLogger "github.com/beego/bee/v2/logger"
  8. "github.com/beego/beego/v2/server/web"
  9. "github.com/qiniu/qmgo"
  10. "github.com/shopspring/decimal"
  11. )
  12. var (
  13. RunMode string //运行模式
  14. MYSQL_URL string //数据库连接
  15. MYSQL_URL_DATA string
  16. MYSQL_URL_EDB string
  17. MgoUrlData string // mongodb数据库连接配置
  18. REDIS_CACHE string //缓存地址
  19. //Rc *cache.Cache //redis缓存
  20. Re error //redis错误
  21. Rc RedisClient //redis缓存
  22. MgoDataCli *qmgo.Client // mongodb客户端连接
  23. MgoDataDbName string // mongodb指标数据的库名
  24. )
  25. // 基础配置
  26. var (
  27. // APPNAME 项目中文名称
  28. APPNAME string
  29. // APP_NAME_EN 项目英文名称
  30. APP_NAME_EN string
  31. // Md5Key 签名秘钥
  32. Md5Key string
  33. // EmailSendToUsers 邮件提醒人员
  34. EmailSendToUsers string
  35. // AlarmMsgUrl 报警服务地址
  36. AlarmMsgUrl string
  37. )
  38. // 公共api内部服务调用
  39. var (
  40. // EDB_LIB_URL 公共指标库
  41. EDB_LIB_URL string
  42. APP_EDB_LIB_NAME_EN string
  43. EDB_LIB_Md5_KEY string
  44. ETA_MINI_URL string
  45. ETA_MINI_DES_KEY string
  46. )
  47. var (
  48. LogPath string
  49. LogFile string
  50. BinLogPath string
  51. BinLogFile string
  52. ApiLogPath string
  53. ApiLogFile string
  54. LogMaxDays int //日志最大保留天数
  55. )
  56. var (
  57. UseMongo bool // 是否使用mongo
  58. )
  59. // eta_forum_hub ETA社区桥接服务地址
  60. var (
  61. ETA_FORUM_HUB_URL string
  62. ETA_FORUM_HUB_NAME_EN string
  63. ETA_FORUM_HUB_MD5_KEY string
  64. )
  65. func init() {
  66. tmpRunMode, err := web.AppConfig.String("run_mode")
  67. if err != nil {
  68. panic("配置文件读取run_mode错误 " + err.Error())
  69. }
  70. RunMode = tmpRunMode
  71. if RunMode == "" {
  72. localIp, err := GetLocalIP()
  73. if localIp == "10.0.0.123" {
  74. RunMode = "debug"
  75. } else {
  76. RunMode = "release"
  77. }
  78. configPath := `/home/code/config/eta_chart_lib/conf/app.conf`
  79. err = web.LoadAppConfig("ini", configPath)
  80. if err != nil {
  81. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  82. }
  83. }
  84. config, err := web.AppConfig.GetSection(RunMode)
  85. if err != nil {
  86. panic("配置文件读取错误 " + err.Error())
  87. }
  88. beeLogger.Log.Info(RunMode + " 模式")
  89. APP_NAME_EN = config["app_name_en"]
  90. // 签名秘钥
  91. Md5Key = config["md5_key"]
  92. MYSQL_URL = config["mysql_url"]
  93. MYSQL_URL_DATA = config["mysql_url_data"]
  94. MYSQL_URL_EDB = config["mysql_url_edb"]
  95. // mongodb数据库连接配置
  96. MgoUrlData = config["mgo_url_data"]
  97. REDIS_CACHE = config["beego_cache"]
  98. if len(REDIS_CACHE) <= 0 {
  99. panic("redis链接参数没有配置")
  100. }
  101. //Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存
  102. //if Re != nil {
  103. // fmt.Println(Re)
  104. // panic(Re)
  105. //}
  106. // 初始化缓存
  107. redisClient, err := initRedis(config["redis_type"], config["beego_cache"])
  108. if err != nil {
  109. fmt.Println("redis链接异常:", err)
  110. panic(any(Re))
  111. }
  112. Rc = redisClient
  113. // 项目中文名称
  114. appNameCn, err := web.AppConfig.String("app_name_cn")
  115. if err != nil {
  116. panic(any("配置文件读取app_name_cn错误 " + err.Error()))
  117. }
  118. APPNAME = appNameCn
  119. // 邮件提醒人员
  120. EmailSendToUsers = config["email_send_to_users"]
  121. // 报警服务地址
  122. AlarmMsgUrl = config["alarm_msg_url"]
  123. // 公共api内部服务调用
  124. {
  125. // 公共指标库相关
  126. EDB_LIB_URL = config["edb_lib_url"]
  127. APP_EDB_LIB_NAME_EN = config["app_edb_lib_name_en"]
  128. EDB_LIB_Md5_KEY = config["edb_lib_md5_key"]
  129. ETA_MINI_URL = config["eta_mini_url"]
  130. ETA_MINI_DES_KEY = config["eta_mini_des_key"]
  131. }
  132. //日志配置
  133. {
  134. LogPath = config["log_path"]
  135. LogFile = config["log_file"]
  136. BinLogPath = config["binlog_path"]
  137. BinLogFile = config["binlog_file"]
  138. ApiLogPath = config["apilog_path"]
  139. ApiLogFile = config["apilog_file"]
  140. logMaxDaysStr := config["log_max_day"]
  141. LogMaxDays, _ = strconv.Atoi(logMaxDaysStr)
  142. }
  143. // eta_forum_hub ETA社区桥接服务地址
  144. {
  145. ETA_FORUM_HUB_URL = config["eta_forum_hub_url"]
  146. ETA_FORUM_HUB_NAME_EN = config["eta_forum_hub_name_en"]
  147. ETA_FORUM_HUB_MD5_KEY = config["eta_forum_hub_md5_key"]
  148. }
  149. }
  150. // FormatMixTableDataShowValue 格式化自定表格显示数据
  151. func FormatMixTableDataShowValue(x float64) (res string) {
  152. res = strconv.FormatFloat(x, 'f', -1, 64)
  153. return
  154. }
  155. //http://8.136.199.33:8608/swagger/
  156. //http://8.136.199.33:8608/v1
  157. // FormatTableDataShowValue 格式化自定表格显示数据
  158. func FormatTableDataShowValue(x float64) (res string) {
  159. if x > 1 || x < -1 {
  160. res = decimal.NewFromFloat(x).Round(2).String()
  161. return
  162. }
  163. // 介于-1到1之间
  164. xStr := strconv.FormatFloat(x, 'f', -10, 64)
  165. // 使用 strings.Split 函数将小数拆分为整数部分和小数部分
  166. xParts := strings.Split(xStr, ".")
  167. if len(xParts) < 2 {
  168. res = fmt.Sprint(x)
  169. return
  170. }
  171. // 计算小数部分的长度,即小数点后面的位数
  172. xDecimals := len(xParts[1])
  173. if xDecimals > 2 {
  174. parts := xParts[1]
  175. // 小数点后小于等于两位, 直接拼接返回
  176. partLen := len(xParts[1])
  177. if partLen <= 2 {
  178. res = xParts[0] + "." + parts
  179. return
  180. }
  181. // 找出第一个有效数字, 算出n
  182. one := 0
  183. for k, p := range parts {
  184. // 48->0
  185. if p != 48 {
  186. if one == 0 {
  187. one = k + 1
  188. }
  189. }
  190. }
  191. n := partLen - one
  192. if n >= 1 {
  193. n -= 1
  194. } else {
  195. one -= 1
  196. }
  197. var partFloat float64
  198. partInt, _ := strconv.Atoi(parts)
  199. partFloat, _ = decimal.NewFromInt(int64(partInt)).Div(decimal.NewFromFloat(math.Pow(10, float64(n)))).Float64()
  200. partFloat = math.Round(partFloat)
  201. partFloat, _ = decimal.NewFromFloat(partFloat).Div(decimal.NewFromFloat(math.Pow(10, float64(one+1)))).Float64()
  202. resParts := strings.Split(fmt.Sprint(partFloat), ".")
  203. resPart := ""
  204. if len(resParts) > 1 {
  205. resPart = resParts[1]
  206. } else {
  207. resPart = resParts[0]
  208. }
  209. res = xParts[0] + "." + resPart
  210. }
  211. if xDecimals <= 2 {
  212. xDecimalsStr := xParts[1]
  213. x, _ = strconv.ParseFloat(xParts[0]+"."+xDecimalsStr, 64)
  214. res = xParts[0] + "." + xDecimalsStr
  215. }
  216. return
  217. }