base_from_jiayue.go 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. package models
  2. import (
  3. "eta/eta_index_lib/utils"
  4. "fmt"
  5. "github.com/beego/beego/v2/client/orm"
  6. "strconv"
  7. "strings"
  8. "time"
  9. )
  10. // BridgeJiaYueIndexDataParams 桥接服务-获取嘉悦指标数据入参
  11. type BridgeJiaYueIndexDataParams struct {
  12. IndexCode string `json:"index_code" form:"index_code" description:"指标编码"`
  13. SourceExtend string `json:"source_extend" form:"source_extend" description:"来源"`
  14. StartDate string `json:"start_date" form:"start_date" description:"开始日期"`
  15. EndDate string `json:"end_date" form:"end_date" description:"结束日期"`
  16. }
  17. // BridgeJiaYueResultIndexData 桥接服务-获取嘉悦指标数据响应体
  18. type BridgeJiaYueResultIndexData struct {
  19. Code int `json:"code" description:"状态码"`
  20. Msg string `json:"msg" description:"提示信息"`
  21. Data BridgeJiaYueIndexAndData `json:"data" description:"返回数据"`
  22. }
  23. // BridgeJiaYueIndexAndData 桥接服务-嘉悦指标和数据
  24. type BridgeJiaYueIndexAndData struct {
  25. Id int `description:"指标自增ID" json:"id"`
  26. IndexCode string `description:"指标编码" json:"index_code"`
  27. IndexName string `description:"指标名称" json:"index_name"`
  28. SourceType string `description:"指标来源" json:"source_type"`
  29. Unit string `description:"单位" json:"unit"`
  30. Frequency string `description:"频度" json:"frequency"`
  31. LastDate time.Time `description:"指标最新时间" json:"last_date"`
  32. LastUpdateTime time.Time `description:"最新更新时间" json:"last_update_time"`
  33. Status int `description:"指标状态" json:"status"`
  34. IndexData []BridgeJiaYueIndexData `description:"指标数据" json:"index_data"`
  35. MenuData BridgeJiaYueIndexMenuData `description:"指标目录信息" json:"menu_data"`
  36. }
  37. // BridgeJiaYueIndexData 桥接服务-嘉悦指标数据
  38. type BridgeJiaYueIndexData struct {
  39. Val float64 `json:"val"`
  40. DataTime time.Time `json:"data_time"`
  41. UpdateTime time.Time `json:"update_time"`
  42. }
  43. // BridgeJiaYueIndexMenuData 桥接服务-嘉悦指标目录信息
  44. type BridgeJiaYueIndexMenuData struct {
  45. Id int `description:"目录ID" json:"id"`
  46. Type string `description:"目录类型" json:"type"`
  47. Code string `description:"目录编码" json:"code"`
  48. Name string `description:"目录名称" json:"name"`
  49. Icon string `description:"目录图标" json:"icon"`
  50. Sort int `description:"排序" json:"sort"`
  51. ParentId int `description:"父级目录ID" json:"parent_id"`
  52. ParentName string `description:"父级目录名称" json:"parent_name"`
  53. Path string `description:"目录全路径" json:"path"`
  54. }
  55. // BridgeJiaYueIndexMenuWithLevel 桥接服务-嘉悦指标目录带层级
  56. type BridgeJiaYueIndexMenuWithLevel struct {
  57. Level int `description:"层级"`
  58. Menu BridgeJiaYueIndexMenuData
  59. }
  60. // BridgeJiaYueResultNewIndexData 桥接服务-获取嘉悦增量指标数据响应体
  61. type BridgeJiaYueResultNewIndexData struct {
  62. Code int `json:"code" description:"状态码"`
  63. Msg string `json:"msg" description:"提示信息"`
  64. Data []BridgeJiaYueIndexAndData `json:"data" description:"返回数据"`
  65. }
  66. // BridgeJiaYueResultMenuListData 桥接服务-获取嘉悦指标目录数据响应体
  67. type BridgeJiaYueResultMenuListData struct {
  68. Code int `json:"code" description:"状态码"`
  69. Msg string `json:"msg" description:"提示信息"`
  70. Data []BridgeJiaYueIndexMenuData `json:"data" description:"返回数据"`
  71. }
  72. // AddEdbDataFromJiaYue 新增嘉悦指标数据
  73. func AddEdbDataFromJiaYue(tableName, edbCode string, dataList []BridgeJiaYueIndexData) (err error) {
  74. if tableName == "" {
  75. err = fmt.Errorf("数据表名为空")
  76. return
  77. }
  78. if edbCode == "" {
  79. err = fmt.Errorf("指标编码为空")
  80. return
  81. }
  82. if len(dataList) == 0 {
  83. return
  84. }
  85. sql := fmt.Sprintf(`INSERT INTO %s(edb_info_id, edb_code, data_time, value, create_time, modify_time, data_timestamp) VALUES `, tableName)
  86. for _, v := range dataList {
  87. val := utils.SubFloatToString(v.Val, 20)
  88. stamp := fmt.Sprint(v.DataTime.UnixMilli())
  89. sql += GetAddSql("0", edbCode, v.DataTime.Format(utils.FormatDate), stamp, val)
  90. }
  91. sql = strings.TrimRight(sql, ",")
  92. // 新增入库
  93. o := orm.NewOrm()
  94. _, e := o.Raw(sql).Exec()
  95. if e != nil {
  96. err = fmt.Errorf("insert data err: %s", e.Error())
  97. }
  98. return
  99. }
  100. // RefreshEdbDataFromJiaYue 刷新嘉悦指标数据
  101. func RefreshEdbDataFromJiaYue(source, edbInfoId int, tableName, edbCode, startDate string, dataList []BridgeJiaYueIndexData) (err error) {
  102. if source <= 0 {
  103. err = fmt.Errorf("指标来源有误")
  104. return
  105. }
  106. if edbInfoId <= 0 {
  107. err = fmt.Errorf("指标ID有误")
  108. return
  109. }
  110. if tableName == "" {
  111. err = fmt.Errorf("数据表名为空")
  112. return
  113. }
  114. // 真实数据的最大日期, 插入规则配置的日期
  115. var realDataMaxDate, edbDataInsertConfigDate time.Time
  116. var edbDataInsertConfig *EdbDataInsertConfig
  117. var isFindConfigDateRealData bool //是否找到配置日期的实际数据的值
  118. {
  119. conf, e := GetEdbDataInsertConfigByEdbId(edbInfoId)
  120. if e != nil && e.Error() != utils.ErrNoRow() {
  121. return
  122. }
  123. edbDataInsertConfig = conf
  124. if edbDataInsertConfig != nil {
  125. edbDataInsertConfigDate = edbDataInsertConfig.Date
  126. }
  127. }
  128. // 获取已有数据
  129. cond := ` AND edb_info_id = ?`
  130. pars := make([]interface{}, 0)
  131. pars = append(pars, edbInfoId)
  132. var startDateTime time.Time
  133. if startDate != "" {
  134. cond += ` AND data_time >= ?`
  135. pars = append(pars, startDate)
  136. startDateTime, _ = time.ParseInLocation(utils.FormatDate, startDate, time.Local)
  137. }
  138. existList, e := GetEdbDataByCondition(source, cond, pars)
  139. if e != nil {
  140. err = fmt.Errorf("获取指标已有数据失败, Err: %s", e.Error())
  141. return
  142. }
  143. existMap := make(map[string]*EdbInfoSearchData)
  144. for _, v := range existList {
  145. existMap[v.DataTime] = v
  146. }
  147. // 比对数据
  148. hasNew := false
  149. strEdbInfoId := strconv.Itoa(edbInfoId)
  150. addExists := make(map[string]bool)
  151. sqlInsert := fmt.Sprintf(`INSERT INTO %s(edb_info_id, edb_code, data_time, value, create_time, modify_time, data_timestamp) VALUES `, tableName)
  152. for _, v := range dataList {
  153. val := utils.SubFloatToString(v.Val, 30)
  154. stamp := fmt.Sprint(v.DataTime.UnixMilli())
  155. dataTime := v.DataTime.Format(utils.FormatDate)
  156. // 如果传入的开始时间是空的, 且当前数据日期早于传入的开始日期, 那么需要判断下当前日期的数据是否存在
  157. if !startDateTime.IsZero() && v.DataTime.Before(startDateTime) {
  158. t, e := GetEdbDataByDate(source, edbCode, dataTime)
  159. if e == nil && t != nil {
  160. existMap[t.DataTime] = t
  161. }
  162. }
  163. // 下面代码主要目的是处理掉手动插入的数据判断
  164. {
  165. if realDataMaxDate.IsZero() || v.DataTime.After(realDataMaxDate) {
  166. realDataMaxDate = v.DataTime
  167. }
  168. if edbDataInsertConfigDate.IsZero() || v.DataTime.Equal(edbDataInsertConfigDate) {
  169. isFindConfigDateRealData = true
  170. }
  171. }
  172. // 新增数据
  173. exist, ok := existMap[dataTime]
  174. if !ok {
  175. // 不在历史数据中且与新增中的数据不重复
  176. if _, o := addExists[dataTime]; !o {
  177. hasNew = true
  178. sqlInsert += GetAddSql(strEdbInfoId, edbCode, dataTime, stamp, val)
  179. addExists[dataTime] = true
  180. }
  181. continue
  182. }
  183. // 更新数据
  184. if exist != nil && utils.SubFloatToString(exist.Value, 30) != val {
  185. if e = ModifyEdbDataById(source, exist.EdbDataId, val); e != nil {
  186. err = fmt.Errorf("modify edb data err: %s", e.Error())
  187. return
  188. }
  189. }
  190. }
  191. // 处理手工数据补充的配置
  192. HandleConfigInsertEdbData(realDataMaxDate, edbDataInsertConfig, edbInfoId, source, existMap, isFindConfigDateRealData)
  193. // 执行新增
  194. if !hasNew {
  195. return
  196. }
  197. o := orm.NewOrm()
  198. sqlInsert = strings.TrimRight(sqlInsert, ",")
  199. _, e = o.Raw(sqlInsert).Exec()
  200. if e != nil {
  201. err = fmt.Errorf("insert edb data err: %s", e.Error())
  202. return
  203. }
  204. return
  205. }