config.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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. func init() {
  57. tmpRunMode, err := web.AppConfig.String("run_mode")
  58. if err != nil {
  59. panic("配置文件读取run_mode错误 " + err.Error())
  60. }
  61. RunMode = tmpRunMode
  62. if RunMode == "" {
  63. localIp, err := GetLocalIP()
  64. if localIp == "10.0.0.123" {
  65. RunMode = "debug"
  66. } else {
  67. RunMode = "release"
  68. }
  69. configPath := `/home/code/config/eta_chart_lib/conf/app.conf`
  70. err = web.LoadAppConfig("ini", configPath)
  71. if err != nil {
  72. fmt.Println("web.LoadAppConfig Err:" + err.Error())
  73. }
  74. }
  75. config, err := web.AppConfig.GetSection(RunMode)
  76. if err != nil {
  77. panic("配置文件读取错误 " + err.Error())
  78. }
  79. beeLogger.Log.Info(RunMode + " 模式")
  80. APP_NAME_EN = config["app_name_en"]
  81. // 签名秘钥
  82. Md5Key = config["md5_key"]
  83. MYSQL_URL = config["mysql_url"]
  84. MYSQL_URL_DATA = config["mysql_url_data"]
  85. MYSQL_URL_EDB = config["mysql_url_edb"]
  86. // mongodb数据库连接配置
  87. MgoUrlData = config["mgo_url_data"]
  88. REDIS_CACHE = config["beego_cache"]
  89. if len(REDIS_CACHE) <= 0 {
  90. panic("redis链接参数没有配置")
  91. }
  92. //Rc, Re = cache.NewCache(REDIS_CACHE) //初始化缓存
  93. //if Re != nil {
  94. // fmt.Println(Re)
  95. // panic(Re)
  96. //}
  97. // 初始化缓存
  98. redisClient, err := initRedis(config["redis_type"], config["beego_cache"])
  99. if err != nil {
  100. fmt.Println("redis链接异常:", err)
  101. panic(any(Re))
  102. }
  103. Rc = redisClient
  104. // 项目中文名称
  105. appNameCn, err := web.AppConfig.String("app_name_cn")
  106. if err != nil {
  107. panic(any("配置文件读取app_name_cn错误 " + err.Error()))
  108. }
  109. APPNAME = appNameCn
  110. // 邮件提醒人员
  111. EmailSendToUsers = config["email_send_to_users"]
  112. // 报警服务地址
  113. AlarmMsgUrl = config["alarm_msg_url"]
  114. // 公共api内部服务调用
  115. {
  116. // 公共指标库相关
  117. EDB_LIB_URL = config["edb_lib_url"]
  118. APP_EDB_LIB_NAME_EN = config["app_edb_lib_name_en"]
  119. EDB_LIB_Md5_KEY = config["edb_lib_md5_key"]
  120. ETA_MINI_URL = config["eta_mini_url"]
  121. ETA_MINI_DES_KEY = config["eta_mini_des_key"]
  122. }
  123. //日志配置
  124. {
  125. LogPath = config["log_path"]
  126. LogFile = config["log_file"]
  127. BinLogPath = config["binlog_path"]
  128. BinLogFile = config["binlog_file"]
  129. ApiLogPath = config["apilog_path"]
  130. ApiLogFile = config["apilog_file"]
  131. logMaxDaysStr := config["log_max_day"]
  132. LogMaxDays, _ = strconv.Atoi(logMaxDaysStr)
  133. }
  134. }
  135. // FormatMixTableDataShowValue 格式化自定表格显示数据
  136. func FormatMixTableDataShowValue(x float64) (res string) {
  137. res = strconv.FormatFloat(x, 'f', -1, 64)
  138. return
  139. }
  140. //http://8.136.199.33:8608/swagger/
  141. //http://8.136.199.33:8608/v1
  142. // FormatTableDataShowValue 格式化自定表格显示数据
  143. func FormatTableDataShowValue(x float64) (res string) {
  144. if x > 1 || x < -1 {
  145. res = decimal.NewFromFloat(x).Round(2).String()
  146. return
  147. }
  148. // 介于-1到1之间
  149. xStr := strconv.FormatFloat(x, 'f', -10, 64)
  150. // 使用 strings.Split 函数将小数拆分为整数部分和小数部分
  151. xParts := strings.Split(xStr, ".")
  152. if len(xParts) < 2 {
  153. res = fmt.Sprint(x)
  154. return
  155. }
  156. // 计算小数部分的长度,即小数点后面的位数
  157. xDecimals := len(xParts[1])
  158. if xDecimals > 2 {
  159. parts := xParts[1]
  160. // 小数点后小于等于两位, 直接拼接返回
  161. partLen := len(xParts[1])
  162. if partLen <= 2 {
  163. res = xParts[0] + "." + parts
  164. return
  165. }
  166. // 找出第一个有效数字, 算出n
  167. one := 0
  168. for k, p := range parts {
  169. // 48->0
  170. if p != 48 {
  171. if one == 0 {
  172. one = k + 1
  173. }
  174. }
  175. }
  176. n := partLen - one
  177. if n >= 1 {
  178. n -= 1
  179. } else {
  180. one -= 1
  181. }
  182. var partFloat float64
  183. partInt, _ := strconv.Atoi(parts)
  184. partFloat, _ = decimal.NewFromInt(int64(partInt)).Div(decimal.NewFromFloat(math.Pow(10, float64(n)))).Float64()
  185. partFloat = math.Round(partFloat)
  186. partFloat, _ = decimal.NewFromFloat(partFloat).Div(decimal.NewFromFloat(math.Pow(10, float64(one+1)))).Float64()
  187. resParts := strings.Split(fmt.Sprint(partFloat), ".")
  188. resPart := ""
  189. if len(resParts) > 1 {
  190. resPart = resParts[1]
  191. } else {
  192. resPart = resParts[0]
  193. }
  194. res = xParts[0] + "." + resPart
  195. }
  196. if xDecimals <= 2 {
  197. xDecimalsStr := xParts[1]
  198. x, _ = strconv.ParseFloat(xParts[0]+"."+xDecimalsStr, 64)
  199. res = xParts[0] + "." + xDecimalsStr
  200. }
  201. return
  202. }