config.go 4.9 KB

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