config.go 5.5 KB

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