config.go 5.1 KB

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