config.go 5.4 KB

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