|
@@ -3,6 +3,7 @@ package controllers
|
|
|
import (
|
|
|
"encoding/json"
|
|
|
"eta/eta_chart_lib/models"
|
|
|
+ aiPredictModel "eta/eta_chart_lib/models/ai_predict_model"
|
|
|
"eta/eta_chart_lib/models/data_manage"
|
|
|
cross_varietyReq "eta/eta_chart_lib/models/data_manage/cross_variety/request"
|
|
|
"eta/eta_chart_lib/models/data_manage/future_good"
|
|
@@ -21,6 +22,7 @@ import (
|
|
|
dwmini "eta/eta_chart_lib/services/dw_mini"
|
|
|
"eta/eta_chart_lib/utils"
|
|
|
"fmt"
|
|
|
+ "sort"
|
|
|
"strconv"
|
|
|
"strings"
|
|
|
"time"
|
|
@@ -1075,3 +1077,294 @@ func GetRangeAnalysisChartInfoDetailFromUniqueCode(chartInfo *models.ChartInfo,
|
|
|
isOk = true
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+func GetAiPredictChartInfoDetailFromUniqueCode(chartInfo *models.ChartInfo, key string) (resp *models.ChartInfoDetailResp, isOk bool, msg, errMsg string) {
|
|
|
+ var err error
|
|
|
+ msg = "获取成功"
|
|
|
+ defer func() {
|
|
|
+ if err != nil {
|
|
|
+ tips := fmt.Sprintf("UniqueCode获取图表详情失败, %v", err)
|
|
|
+ msg = "获取失败"
|
|
|
+ errMsg = fmt.Sprintf(tips)
|
|
|
+ utils.FileLog.Info(tips)
|
|
|
+ }
|
|
|
+ }()
|
|
|
+ if chartInfo == nil {
|
|
|
+ err = fmt.Errorf("图表信息不存在")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if chartInfo.Source != utils.CHART_SOURCE_AI_PREDICT_MODEL_DAILY && chartInfo.Source != utils.CHART_SOURCE_AI_PREDICT_MODEL_MONTHLY {
|
|
|
+ err = fmt.Errorf("图表来源有误, Source: %d", chartInfo.Source)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ resp = new(models.ChartInfoDetailResp)
|
|
|
+
|
|
|
+
|
|
|
+ edbMappings, e := models.GetChartEdbMappingsByChartInfoId(chartInfo.ChartInfoId)
|
|
|
+ if e != nil {
|
|
|
+ err = fmt.Errorf("获取图表指标关联失败, %v", e)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if len(edbMappings) == 0 {
|
|
|
+ err = fmt.Errorf("图表指标关联不存在, %v", e)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ indexId := edbMappings[0].EdbInfoId
|
|
|
+ if indexId <= 0 {
|
|
|
+ err = fmt.Errorf("图表标的有误")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ indexOb := new(aiPredictModel.AiPredictModelIndex)
|
|
|
+ indexItem, e := indexOb.GetItemById(indexId)
|
|
|
+ if e != nil {
|
|
|
+ err = fmt.Errorf("获取图表标的失败, %v", e)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if indexItem != nil && indexItem.AiPredictModelIndexId <= 0 {
|
|
|
+ err = fmt.Errorf("图表标的不存在, IndexId: %d", indexId)
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ indexData := make([]*aiPredictModel.AiPredictModelData, 0)
|
|
|
+ dataSource := aiPredictModel.ModelDataSourceDaily
|
|
|
+ if chartInfo.Source == utils.CHART_SOURCE_AI_PREDICT_MODEL_MONTHLY {
|
|
|
+ dataSource = aiPredictModel.ModelDataSourceMonthly
|
|
|
+ }
|
|
|
+ dataOb := new(aiPredictModel.AiPredictModelData)
|
|
|
+ dataCond := fmt.Sprintf(` AND %s = ?`, dataOb.Cols().IndexCode)
|
|
|
+ dataPars := make([]interface{}, 0)
|
|
|
+ dataPars = append(dataPars, indexItem.IndexCode)
|
|
|
+ list, e := dataOb.GetItemsByCondition(dataCond, dataPars, []string{}, fmt.Sprintf("%s DESC", dataOb.Cols().DataTime))
|
|
|
+ if e != nil {
|
|
|
+ err = fmt.Errorf("获取标的数据失败, %v", e)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ for _, v := range list {
|
|
|
+ if v.Source == dataSource {
|
|
|
+ indexData = append(indexData, v)
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ resp, e = GetAiPredictChartDetailByData(indexItem, indexData, dataSource)
|
|
|
+ if e != nil {
|
|
|
+ err = fmt.Errorf("获取图表详情失败, %v", e)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if utils.Re == nil {
|
|
|
+ jsonData, _ := json.Marshal(resp)
|
|
|
+ _ = utils.Rc.Put(key, jsonData, 10*time.Minute)
|
|
|
+ }
|
|
|
+ isOk = true
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func GetAiPredictChartDetailByData(indexItem *aiPredictModel.AiPredictModelIndex, indexData []*aiPredictModel.AiPredictModelData, source int) (resp *models.ChartInfoDetailResp, err error) {
|
|
|
+ resp = new(models.ChartInfoDetailResp)
|
|
|
+
|
|
|
+
|
|
|
+ var extraConfig aiPredictModel.AiPredictModelIndexExtraConfig
|
|
|
+ if indexItem.ExtraConfig != "" {
|
|
|
+ if e := json.Unmarshal([]byte(indexItem.ExtraConfig), &extraConfig); e != nil {
|
|
|
+ err = fmt.Errorf("标的额外配置解析失败, Config: %s, Err: %v", indexItem.ExtraConfig, e)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ var predictLegendName, confLeftMin, confLeftMax, unit string
|
|
|
+ if source == aiPredictModel.ModelDataSourceDaily {
|
|
|
+ predictLegendName = extraConfig.DailyChart.PredictLegendName
|
|
|
+ if predictLegendName == "" {
|
|
|
+ predictLegendName = "Predicted"
|
|
|
+ }
|
|
|
+ unit = extraConfig.DailyChart.Unit
|
|
|
+ confLeftMin = extraConfig.DailyChart.LeftMin
|
|
|
+ confLeftMax = extraConfig.DailyChart.LeftMax
|
|
|
+ }
|
|
|
+ if source == aiPredictModel.ModelDataSourceMonthly {
|
|
|
+ predictLegendName = "预测值"
|
|
|
+ unit = extraConfig.MonthlyChart.Unit
|
|
|
+ confLeftMin = extraConfig.MonthlyChart.LeftMin
|
|
|
+ confLeftMax = extraConfig.MonthlyChart.LeftMax
|
|
|
+ }
|
|
|
+
|
|
|
+ if confLeftMin == "" {
|
|
|
+ confLeftMin = indexItem.LeftMin
|
|
|
+ }
|
|
|
+ if confLeftMax == "" {
|
|
|
+ confLeftMax = indexItem.LeftMax
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ chartSourceMapping := map[int]int{
|
|
|
+ aiPredictModel.ModelDataSourceMonthly: utils.CHART_SOURCE_AI_PREDICT_MODEL_MONTHLY,
|
|
|
+ aiPredictModel.ModelDataSourceDaily: utils.CHART_SOURCE_AI_PREDICT_MODEL_DAILY,
|
|
|
+ }
|
|
|
+ chartInfo, e := data_manage.GetAiPredictChartInfoByIndexId(chartSourceMapping[source], indexItem.AiPredictModelIndexId)
|
|
|
+ if e != nil && !utils.IsErrNoRow(e) {
|
|
|
+ err = fmt.Errorf("获取标的图表失败, %v", e)
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ chartView := new(models.ChartInfo)
|
|
|
+ if chartInfo != nil && chartInfo.ChartInfoId > 0 {
|
|
|
+ chartView.ChartInfoId = chartInfo.ChartInfoId
|
|
|
+ chartView.ChartName = chartInfo.ChartName
|
|
|
+ chartView.ChartNameEn = chartInfo.ChartNameEn
|
|
|
+ chartView.Source = chartInfo.Source
|
|
|
+ chartView.ChartImage = chartInfo.ChartImage
|
|
|
+ } else {
|
|
|
+ chartView.ChartName = indexItem.IndexName
|
|
|
+ chartView.ChartNameEn = indexItem.IndexName
|
|
|
+ }
|
|
|
+ chartView.ChartType = utils.CHART_SOURCE_DEFAULT
|
|
|
+ chartTheme, e := data.GetChartThemeConfig(0, chartView.ChartType, utils.CHART_TYPE_CURVE)
|
|
|
+ if e != nil {
|
|
|
+ err = fmt.Errorf("获取图表主题样式失败, %v", e)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ chartView.ChartThemeStyle = chartTheme.Config
|
|
|
+ chartView.ChartThemeId = chartTheme.ChartThemeId
|
|
|
+
|
|
|
+ chartView.DateType = 3
|
|
|
+ chartView.Calendar = "公历"
|
|
|
+ chartView.ChartSource = "AI预测模型"
|
|
|
+ chartView.ChartSourceEn = "AI预测模型"
|
|
|
+ chartView.Unit = unit
|
|
|
+ chartView.UnitEn = unit
|
|
|
+
|
|
|
+
|
|
|
+ edbList := make([]*models.ChartEdbInfoMapping, 0)
|
|
|
+ edbActual, edbPredict := new(models.ChartEdbInfoMapping), new(models.ChartEdbInfoMapping)
|
|
|
+ edbActual.EdbName = indexItem.IndexName
|
|
|
+ edbActual.EdbNameEn = indexItem.IndexName
|
|
|
+ edbActual.IsAxis = 1
|
|
|
+ edbActual.Unit = unit
|
|
|
+ edbActual.UnitEn = unit
|
|
|
+
|
|
|
+ edbPredict.EdbName = predictLegendName
|
|
|
+ edbPredict.EdbNameEn = predictLegendName
|
|
|
+ edbPredict.IsAxis = 1
|
|
|
+ edbPredict.Unit = unit
|
|
|
+ edbPredict.UnitEn = unit
|
|
|
+ actualData, predictData := make([]*models.EdbDataList, 0), make([]*models.EdbDataList, 0)
|
|
|
+
|
|
|
+ var startDate, endDate time.Time
|
|
|
+ var actualValues, predictValues []float64
|
|
|
+ var actualNewest, predictNewest bool
|
|
|
+ var actualLatestTimestamp int64
|
|
|
+ for k, v := range indexData {
|
|
|
+
|
|
|
+ if !v.Value.Valid && !v.PredictValue.Valid {
|
|
|
+ continue
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if v.Value.Valid {
|
|
|
+ actualValues = append(actualValues, v.Value.Float64)
|
|
|
+ }
|
|
|
+ if v.PredictValue.Valid {
|
|
|
+ predictValues = append(predictValues, v.PredictValue.Float64)
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if k == 0 {
|
|
|
+ startDate = v.DataTime
|
|
|
+ endDate = v.CreateTime
|
|
|
+ }
|
|
|
+ if v.DataTime.Before(startDate) {
|
|
|
+ startDate = v.DataTime
|
|
|
+ }
|
|
|
+ if v.DataTime.After(endDate) {
|
|
|
+ endDate = v.DataTime
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if v.Value.Valid {
|
|
|
+ if !actualNewest {
|
|
|
+ edbActual.LatestDate = v.DataTime.Format(utils.FormatDate)
|
|
|
+ edbActual.LatestValue = v.Value.Float64
|
|
|
+ actualLatestTimestamp = v.DataTime.UnixNano() / 1e6
|
|
|
+ actualNewest = true
|
|
|
+ }
|
|
|
+ actualData = append(actualData, &models.EdbDataList{
|
|
|
+ DataTime: v.DataTime.Format(utils.FormatDate),
|
|
|
+ Value: v.Value.Float64,
|
|
|
+ DataTimestamp: v.DataTimestamp,
|
|
|
+ })
|
|
|
+ }
|
|
|
+ if v.PredictValue.Valid {
|
|
|
+ if !predictNewest {
|
|
|
+ edbPredict.LatestDate = v.DataTime.Format(utils.FormatDate)
|
|
|
+ edbPredict.LatestValue = v.Value.Float64
|
|
|
+ predictNewest = true
|
|
|
+ }
|
|
|
+ predictData = append(predictData, &models.EdbDataList{
|
|
|
+ DataTime: v.DataTime.Format(utils.FormatDate),
|
|
|
+ Value: v.PredictValue.Float64,
|
|
|
+ DataTimestamp: v.DataTimestamp,
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ sort.Slice(actualData, func(i, j int) bool {
|
|
|
+ return actualData[i].DataTimestamp < actualData[j].DataTimestamp
|
|
|
+ })
|
|
|
+ sort.Slice(predictData, func(i, j int) bool {
|
|
|
+ return predictData[i].DataTimestamp < predictData[j].DataTimestamp
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
+ actualMin, actualMax := utils.FindMinMax(actualValues)
|
|
|
+ predictMin, predictMax := utils.FindMinMax(predictValues)
|
|
|
+ edbActual.MinData = actualMin
|
|
|
+ edbActual.MaxData = actualMax
|
|
|
+ edbPredict.MinData = predictMin
|
|
|
+ edbPredict.MaxData = predictMax
|
|
|
+
|
|
|
+ edbActual.DataList = actualData
|
|
|
+ edbPredict.DataList = predictData
|
|
|
+ edbList = append(edbList, edbActual, edbPredict)
|
|
|
+
|
|
|
+
|
|
|
+ if confLeftMin != "" {
|
|
|
+ chartView.LeftMin = confLeftMin
|
|
|
+ } else {
|
|
|
+ leftMin := actualMin
|
|
|
+ if leftMin > predictMin {
|
|
|
+ leftMin = predictMin
|
|
|
+ }
|
|
|
+ chartView.LeftMin = fmt.Sprint(leftMin)
|
|
|
+ }
|
|
|
+ if confLeftMax != "" {
|
|
|
+ chartView.LeftMax = confLeftMax
|
|
|
+ } else {
|
|
|
+ leftMax := actualMax
|
|
|
+ if leftMax < predictMax {
|
|
|
+ leftMax = predictMax
|
|
|
+ }
|
|
|
+ chartView.LeftMax = fmt.Sprint(leftMax)
|
|
|
+ }
|
|
|
+
|
|
|
+ chartView.StartDate = startDate.Format(utils.FormatDate)
|
|
|
+ chartView.EndDate = endDate.Format(utils.FormatDate)
|
|
|
+
|
|
|
+
|
|
|
+ if source == aiPredictModel.ModelDataSourceDaily {
|
|
|
+ var dataResp struct {
|
|
|
+ ActualLatestTimestamp int64
|
|
|
+ }
|
|
|
+ dataResp.ActualLatestTimestamp = actualLatestTimestamp
|
|
|
+ resp.DataResp = dataResp
|
|
|
+ }
|
|
|
+
|
|
|
+ resp.ChartInfo = chartView
|
|
|
+ resp.EdbInfoList = edbList
|
|
|
+ return
|
|
|
+}
|