chart_info.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  1. package chart
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "github.com/gin-gonic/gin"
  7. "hongze/hongze_yb/controller/response"
  8. "hongze/hongze_yb/global"
  9. "hongze/hongze_yb/models/request"
  10. responseModel "hongze/hongze_yb/models/response"
  11. "hongze/hongze_yb/models/response/chart_info"
  12. chartEdbMappingModel "hongze/hongze_yb/models/tables/chart_edb_mapping"
  13. chartInfoModel "hongze/hongze_yb/models/tables/chart_info"
  14. "hongze/hongze_yb/models/tables/chart_info_log"
  15. edbInfoModel "hongze/hongze_yb/models/tables/edb_info"
  16. "hongze/hongze_yb/models/tables/yb_my_chart"
  17. "hongze/hongze_yb/services/alarm_msg"
  18. "hongze/hongze_yb/services/chart"
  19. "hongze/hongze_yb/services/user"
  20. "hongze/hongze_yb/utils"
  21. "io/ioutil"
  22. "sort"
  23. "strconv"
  24. "strings"
  25. "time"
  26. )
  27. // GetChartInfoDetail 获取图表详情
  28. // @Tags 图库模块
  29. // @Summary 获取图表详情
  30. // @Description 获取图表详情
  31. // @Security ApiKeyAuth
  32. // @Param Authorization header string true "Bearer 31a165baebe6dec616b1f8f3207b4273"
  33. // @Accept json
  34. // @Product json
  35. // @Param DateType query string false "时间段:1-00年至今; 2-10年至今; 3-15年至今; 4-21年至今; 5-指定区间; 6-指定年月至今; 7-18年至今; 8-19年至今; 9-20年至今"
  36. // @Param ClassifyId query string false "图表分类ID"
  37. // @Success 200 {object} chart_info.ChartInfoDetailResp
  38. // @failure 400 {string} string "图表详情获取失败"
  39. // @Router /my_chart/getChartInfoDetail [get]
  40. func GetChartInfoDetail(c *gin.Context) {
  41. // 图表ID
  42. reqChartInfoId := c.DefaultQuery("ChartInfoId", "")
  43. if reqChartInfoId == "" {
  44. response.Fail("参数有误:图表ID", c)
  45. return
  46. }
  47. chartInfoId, _ := strconv.Atoi(reqChartInfoId)
  48. startDate := c.DefaultQuery("StartDate", "")
  49. endDate := c.DefaultQuery("EndDate", "")
  50. // 图表样式类型
  51. reqChartType := c.DefaultQuery("ChartType", "")
  52. chartType, _ := strconv.Atoi(reqChartType)
  53. // 季节性图表时间
  54. reqSeasonStartDate := c.DefaultQuery("SeasonStartDate", "")
  55. reqSeasonEndDate := c.DefaultQuery("SeasonEndDate", "")
  56. // 指标ID
  57. edbInfoId := c.DefaultQuery("EdbInfoId", "")
  58. // 公历/农历
  59. reqCalendar := c.DefaultQuery("Calendar", "")
  60. // 获取图表信息
  61. var err error
  62. chartInfo := new(chartInfoModel.ChartInfoView)
  63. chartInfo, err = chartInfoModel.GetChartInfoViewById(chartInfoId)
  64. if err != nil {
  65. if err == utils.ErrNoRow {
  66. response.Custom(4003, "图表不存在,请刷新页面", c)
  67. return
  68. }
  69. response.FailMsg("获取失败", "获取图表信息失败, Err:"+err.Error(), c)
  70. return
  71. }
  72. chartType = chartInfo.ChartType
  73. calendar := chartInfo.Calendar
  74. if reqCalendar != "" {
  75. calendar = reqCalendar
  76. }
  77. // 时段筛选
  78. reqDateType := c.DefaultQuery("DateType", "")
  79. dateType := chartInfo.DateType
  80. if reqDateType != "" {
  81. dateType, _ = strconv.Atoi(reqDateType)
  82. }
  83. if dateType <= 0 {
  84. dateType = 3 // 默认同后台15年至今
  85. }
  86. switch dateType {
  87. case 1:
  88. startDate = "2000-01-01"
  89. case 2:
  90. startDate = "2010-01-01"
  91. case 3:
  92. startDate = "2015-01-01"
  93. case 4:
  94. startDate = "2021-01-01"
  95. case 5:
  96. if startDate == "" && chartInfo.StartDate != "" {
  97. startDate = chartInfo.StartDate
  98. endDate = chartInfo.EndDate
  99. }
  100. case 6:
  101. if startDate == "" && chartInfo.StartDate != "" {
  102. startDate = chartInfo.StartDate
  103. }
  104. case 7:
  105. startDate = "2018-01-01"
  106. case 8:
  107. startDate = "2019-01-01"
  108. case 9:
  109. startDate = "2020-01-01"
  110. case 11:
  111. startDate = "2022-01-01"
  112. }
  113. // 兼容日期错误
  114. {
  115. if strings.Count(startDate, "-") == 1 {
  116. startDate = startDate + "-01"
  117. }
  118. if strings.Count(endDate, "-") == 1 {
  119. endDate = endDate + "-01"
  120. }
  121. }
  122. if chartType == 2 {
  123. // 季节性图表
  124. var seasonStartDate, seasonEndDate string
  125. if reqSeasonStartDate == "" {
  126. seasonStartDate = chartInfo.SeasonStartDate
  127. } else {
  128. seasonStartDate = reqSeasonStartDate
  129. }
  130. if reqSeasonEndDate == "" {
  131. seasonEndDate = chartInfo.SeasonEndDate
  132. } else {
  133. seasonEndDate = reqSeasonEndDate
  134. }
  135. if seasonStartDate != "" {
  136. startDate = seasonStartDate + "-01"
  137. } else {
  138. fivePre := time.Now().AddDate(-4, 0, 0).Year()
  139. startDate = strconv.Itoa(fivePre) + "-01-01"
  140. }
  141. if seasonEndDate != "" {
  142. seasonEndDateTime, tmpErr := time.ParseInLocation(utils.FormatDate, seasonEndDate+"-01", time.Local)
  143. if tmpErr != nil {
  144. response.FailMsg("获取失败", "获取图表,指标信息失败,Err:"+tmpErr.Error(), c)
  145. return
  146. }
  147. endDate = seasonEndDateTime.AddDate(0, 1, -1).Format(utils.FormatDate)
  148. } else {
  149. endDate = time.Now().Format(utils.FormatDate)
  150. }
  151. }
  152. // 获取图表指标映射
  153. mappingList := make([]*chartEdbMappingModel.ChartEdbInfoMapping, 0)
  154. if chartInfoId > 0 {
  155. mappingList, err = chartEdbMappingModel.GetMappingListByChartInfoId(chartInfoId)
  156. if err != nil {
  157. response.FailMsg("获取失败", "获取图表指标信息失败4001, Err:"+err.Error(), c)
  158. return
  159. }
  160. } else {
  161. if edbInfoId != "" {
  162. mappingList, err = chartEdbMappingModel.GetMappingListByEdbInfoId(edbInfoId)
  163. if err != nil {
  164. response.FailMsg("获取失败", "获取图表指标信息失败4002, Err:"+err.Error(), c)
  165. return
  166. }
  167. }
  168. }
  169. //fmt.Println("start_date:", startDate)
  170. //fmt.Println("end_date:", endDate)
  171. // 图表额外数据参数
  172. extraConfigStr := chartInfo.ExtraConfig
  173. // 柱方图的一些配置
  174. var barConfig request.BarChartInfoReq
  175. if chartInfo != nil && chartInfo.ChartType == 7 {
  176. if chartInfo.BarConfig == `` {
  177. response.FailMsg("柱方图未配置", "柱方图未配置", c)
  178. return
  179. }
  180. err = json.Unmarshal([]byte(chartInfo.BarConfig), &barConfig)
  181. if err != nil {
  182. response.FailMsg("柱方图配置异常", "柱方图配置异常", c)
  183. return
  184. }
  185. extraConfigStr = chartInfo.BarConfig
  186. }
  187. // 获取图表中的指标数据
  188. edbList, xEdbIdValue, yDataList, sourceArr, dataResp, err, errMsg := chart.GetChartEdbData(chartInfoId, chartType, calendar, startDate, endDate, mappingList, extraConfigStr)
  189. if err != nil {
  190. msg := `获取失败`
  191. if errMsg != `` {
  192. msg = errMsg
  193. }
  194. response.FailMsg(msg, "获取图表,指标信息失败, Err:"+err.Error(), c)
  195. return
  196. }
  197. for _, v := range edbList {
  198. // 指标别名
  199. if barConfig.EdbInfoIdList != nil && len(barConfig.EdbInfoIdList) > 0 {
  200. for _, reqEdb := range barConfig.EdbInfoIdList {
  201. if v.EdbInfoId == reqEdb.EdbInfoId {
  202. v.EdbAliasName = reqEdb.Name
  203. }
  204. }
  205. }
  206. }
  207. sourceArr = append(sourceArr, "弘则研究")
  208. chartInfo.ChartSource = strings.Join(sourceArr, ",")
  209. // 访问记录-仅普通用户记录
  210. userInfo := user.GetInfoByClaims(c)
  211. ok, _, _ := user.GetAdminByUserInfo(userInfo)
  212. if !ok {
  213. reqMyChartClassifyId := c.DefaultQuery("MyChartClassifyId", "")
  214. myChartClassifyId, _ := strconv.Atoi(reqMyChartClassifyId)
  215. go chart.SaveChartVisitLog(userInfo, chartInfo, myChartClassifyId)
  216. }
  217. // 用户是否有收藏该图表
  218. ob := new(yb_my_chart.YbMyChart)
  219. cond := `user_id = ? AND chart_info_id = ?`
  220. pars := make([]interface{}, 0)
  221. pars = append(pars, userInfo.UserID, chartInfo.ChartInfoId)
  222. exists, e := ob.FetchByCondition(cond, pars)
  223. if e != nil && e != utils.ErrNoRow {
  224. response.FailMsg("操作失败", "获取用户图表失败, Err: "+e.Error(), c)
  225. return
  226. }
  227. myChartInfo := new(responseModel.MyChartItem)
  228. if exists != nil && exists.MyChartID > 0 {
  229. myChartInfo.MyChartID = exists.MyChartID
  230. myChartInfo.MyChartClassifyID = exists.MyChartClassifyID
  231. myChartInfo.ChartInfoID = exists.ChartInfoID
  232. myChartInfo.ChartName = exists.ChartName
  233. myChartInfo.UniqueCode = exists.UniqueCode
  234. myChartInfo.ChartImage = exists.ChartImage
  235. myChartInfo.UserID = exists.UserID
  236. myChartInfo.ReportID = exists.ReportID
  237. myChartInfo.ReportChapterID = exists.ReportChapterID
  238. myChartInfo.CreateTime = utils.TimeTransferString(utils.FormatDateTime, exists.CreateTime)
  239. }
  240. // 单位
  241. if chartType == utils.CHART_TYPE_BAR && len(yDataList) > 0 {
  242. chartInfo.Unit = yDataList[0].Unit
  243. chartInfo.UnitEn = yDataList[0].UnitEn
  244. }
  245. // 图表的指标来源
  246. sourceNameList, sourceNameEnList := chart.GetEdbSourceByEdbInfoIdList(edbList)
  247. chartInfo.ChartSource = strings.Join(sourceNameList, ",")
  248. chartInfo.ChartSourceEn = strings.Join(sourceNameEnList, ",")
  249. resp := new(chart_info.ChartInfoDetailResp)
  250. resp.ChartInfo = chartInfo
  251. resp.EdbInfoList = edbList
  252. resp.XEdbIdValue = xEdbIdValue
  253. resp.YDataList = yDataList
  254. resp.MyChartInfo = myChartInfo
  255. resp.DataResp = dataResp
  256. response.OkData("获取成功", resp, c)
  257. }
  258. func getChartInfoDetail(chartInfo *chartInfoModel.ChartInfoView, myChartClassifyId int, userInfo user.UserInfo) (resp *chart_info.ChartInfoDetailResp, isOk bool, msg, errMsg string) {
  259. // 获取图表信息
  260. var err error
  261. chartType := chartInfo.ChartType
  262. calendar := chartInfo.Calendar
  263. // 时段筛选
  264. dateType := chartInfo.DateType
  265. if dateType <= 0 {
  266. dateType = 3 // 默认同后台15年至今
  267. }
  268. var startDate, endDate string
  269. switch dateType {
  270. case 1:
  271. startDate = "2000-01-01"
  272. case 2:
  273. startDate = "2010-01-01"
  274. case 3:
  275. startDate = "2015-01-01"
  276. case 4:
  277. startDate = "2021-01-01"
  278. case 5:
  279. if startDate == "" && chartInfo.StartDate != "" {
  280. startDate = chartInfo.StartDate
  281. endDate = chartInfo.EndDate
  282. }
  283. case 6:
  284. if startDate == "" && chartInfo.StartDate != "" {
  285. startDate = chartInfo.StartDate
  286. }
  287. case 7:
  288. startDate = "2018-01-01"
  289. case 8:
  290. startDate = "2019-01-01"
  291. case 9:
  292. startDate = "2020-01-01"
  293. case 11:
  294. startDate = "2022-01-01"
  295. }
  296. // 兼容日期错误
  297. {
  298. if strings.Count(startDate, "-") == 1 {
  299. startDate = startDate + "-01"
  300. }
  301. if strings.Count(endDate, "-") == 1 {
  302. endDate = endDate + "-01"
  303. }
  304. }
  305. if chartType == 2 {
  306. // 季节性图表
  307. var seasonStartDate, seasonEndDate string
  308. seasonStartDate = chartInfo.SeasonStartDate
  309. seasonEndDate = chartInfo.SeasonEndDate
  310. if seasonStartDate != "" {
  311. startDate = seasonStartDate + "-01"
  312. } else {
  313. fivePre := time.Now().AddDate(-4, 0, 0).Year()
  314. startDate = strconv.Itoa(fivePre) + "-01-01"
  315. }
  316. if seasonEndDate != "" {
  317. seasonEndDateTime, tmpErr := time.ParseInLocation(utils.FormatDate, seasonEndDate+"-01", time.Local)
  318. if tmpErr != nil {
  319. msg = "获取失败"
  320. errMsg = "获取图表,指标信息失败,Err:" + tmpErr.Error()
  321. return
  322. }
  323. endDate = seasonEndDateTime.AddDate(0, 1, -1).Format(utils.FormatDate)
  324. } else {
  325. endDate = time.Now().Format(utils.FormatDate)
  326. }
  327. }
  328. // 获取图表指标映射
  329. mappingList := make([]*chartEdbMappingModel.ChartEdbInfoMapping, 0)
  330. mappingList, err = chartEdbMappingModel.GetMappingListByChartInfoId(chartInfo.ChartInfoId)
  331. if err != nil {
  332. msg = `获取失败`
  333. errMsg = "获取图表指标信息失败4001, Err:" + err.Error()
  334. return
  335. }
  336. //fmt.Println("start_date:", startDate)
  337. //fmt.Println("end_date:", endDate)
  338. // 图表额外数据参数
  339. extraConfigStr := chartInfo.ExtraConfig
  340. // 柱方图的一些配置
  341. var barConfig request.BarChartInfoReq
  342. if chartInfo != nil && chartInfo.ChartType == 7 {
  343. if chartInfo.BarConfig == `` {
  344. msg = "柱方图未配置"
  345. errMsg = "柱方图未配置"
  346. return
  347. }
  348. err := json.Unmarshal([]byte(chartInfo.BarConfig), &barConfig)
  349. if err != nil {
  350. msg = "柱方图配置异常"
  351. errMsg = "柱方图配置异常"
  352. return
  353. }
  354. extraConfigStr = chartInfo.BarConfig
  355. }
  356. // 获取图表中的指标数据
  357. edbList, xEdbIdValue, yDataList, sourceArr, dataResp, err, tmpErrMsg := chart.GetChartEdbData(chartInfo.ChartInfoId, chartType, calendar, startDate, endDate, mappingList, extraConfigStr)
  358. if err != nil {
  359. msg = `获取失败`
  360. if tmpErrMsg != `` {
  361. msg = tmpErrMsg
  362. }
  363. errMsg = "获取图表,指标信息失败, Err:" + err.Error()
  364. return
  365. }
  366. for _, v := range edbList {
  367. // 指标别名
  368. if barConfig.EdbInfoIdList != nil && len(barConfig.EdbInfoIdList) > 0 {
  369. for _, reqEdb := range barConfig.EdbInfoIdList {
  370. if v.EdbInfoId == reqEdb.EdbInfoId {
  371. v.EdbAliasName = reqEdb.Name
  372. }
  373. }
  374. }
  375. }
  376. // 单位
  377. if chartType == utils.CHART_TYPE_BAR && len(yDataList) > 0 {
  378. chartInfo.Unit = yDataList[0].Unit
  379. chartInfo.UnitEn = yDataList[0].UnitEn
  380. }
  381. sourceArr = append(sourceArr, "弘则研究")
  382. chartInfo.ChartSource = strings.Join(sourceArr, ",")
  383. // 访问记录-仅普通用户记录
  384. ok, _, _ := user.GetAdminByUserInfo(userInfo)
  385. if !ok {
  386. go chart.SaveChartVisitLog(userInfo, chartInfo, myChartClassifyId)
  387. }
  388. // 用户是否有收藏该图表
  389. ob := new(yb_my_chart.YbMyChart)
  390. cond := `user_id = ? AND chart_info_id = ?`
  391. pars := make([]interface{}, 0)
  392. pars = append(pars, userInfo.UserID, chartInfo.ChartInfoId)
  393. exists, e := ob.FetchByCondition(cond, pars)
  394. if e != nil && e != utils.ErrNoRow {
  395. msg = `操作失败`
  396. errMsg = "获取用户图表失败, Err: " + e.Error()
  397. return
  398. }
  399. myChartInfo := new(responseModel.MyChartItem)
  400. if exists != nil && exists.MyChartID > 0 {
  401. myChartInfo.MyChartID = exists.MyChartID
  402. myChartInfo.MyChartClassifyID = exists.MyChartClassifyID
  403. myChartInfo.ChartInfoID = exists.ChartInfoID
  404. myChartInfo.ChartName = exists.ChartName
  405. myChartInfo.UniqueCode = exists.UniqueCode
  406. myChartInfo.ChartImage = exists.ChartImage
  407. myChartInfo.UserID = exists.UserID
  408. myChartInfo.ReportID = exists.ReportID
  409. myChartInfo.ReportChapterID = exists.ReportChapterID
  410. myChartInfo.CreateTime = utils.TimeTransferString(utils.FormatDateTime, exists.CreateTime)
  411. }
  412. resp = new(chart_info.ChartInfoDetailResp)
  413. resp.ChartInfo = chartInfo
  414. resp.EdbInfoList = edbList
  415. resp.XEdbIdValue = xEdbIdValue
  416. resp.YDataList = yDataList
  417. resp.MyChartInfo = myChartInfo
  418. resp.DataResp = dataResp
  419. isOk = true
  420. return
  421. }
  422. // RefreshChartInfo 刷新图表信息
  423. // @Tags 图库模块
  424. // @Summary 刷新图表信息
  425. // @Description 刷新图表信息
  426. // @Security ApiKeyAuth
  427. // @Param Authorization header string true "Bearer 31a165baebe6dec616b1f8f3207b4273"
  428. // @Accept json
  429. // @Product json
  430. // @Param data body chartInfoModel.SaveChartInfoReq true "请求参数"
  431. // @Success 200 {string} string "操作成功"
  432. // @failure 400 {string} string "操作失败"
  433. // @Router /my_chart/refreshChartInfo [post]
  434. func RefreshChartInfo(c *gin.Context) {
  435. // 参数校验
  436. var req chartInfoModel.RefreshChartInfoReq
  437. if c.ShouldBind(&req) != nil {
  438. response.Fail("参数异常", c)
  439. return
  440. }
  441. chartInfoId := req.ChartInfoId
  442. if chartInfoId == 0 {
  443. response.Fail("参数有误", c)
  444. return
  445. }
  446. userInfo := user.GetInfoByClaims(c)
  447. ok, _, err := user.GetAdminByUserInfo(userInfo)
  448. if err != nil {
  449. response.FailMsg("刷新失败", "RefreshChartInfo-获取系统用户信息失败"+err.Error(), c)
  450. return
  451. }
  452. if !ok {
  453. // 普通用户刷新频率限制-每个用户/图/天/2次
  454. cacheKey := utils.HZ_CHART_LIB_DETAIL + "YB_REFRESH_LIMIT_" + strconv.Itoa(chartInfoId) + "_" + strconv.Itoa(int(userInfo.UserID))
  455. fmt.Println("refreshCacheKey:", cacheKey)
  456. countUserRefresh, _ := global.Redis.Get(context.TODO(), cacheKey).Int()
  457. if countUserRefresh >= 2 {
  458. response.Ok("目前已是最新数据", c)
  459. return
  460. }
  461. countUserRefresh += 1
  462. now := time.Now()
  463. today := time.Date(now.Year(), now.Month(), now.Day(), 23, 59, 59, 0, time.Local)
  464. sub := today.Sub(now)
  465. _ = global.Redis.SetEX(context.TODO(), cacheKey, countUserRefresh, sub)
  466. }
  467. // 图表信息校验
  468. chartInfo, err := chartInfoModel.GetChartInfoById(chartInfoId)
  469. if err != nil {
  470. if err == utils.ErrNoRow {
  471. response.Fail("图表已被删除,无需刷新", c)
  472. return
  473. }
  474. response.FailMsg("刷新失败", "刷新失败, Err:"+err.Error(), c)
  475. return
  476. }
  477. // 刷新图表
  478. if err = chart.ChartInfoRefreshV2(chartInfo.ChartInfoId); err != nil {
  479. errContent := fmt.Sprint("ErrMsg: 刷新图表关联指标信息失败, " + err.Error())
  480. if global.CONFIG.Serve.RunMode == "release" {
  481. go alarm_msg.SendAlarmMsg("刷新图表报错"+time.Now().Format("2006-01-02 15:04:05")+";Err:"+errContent, 3)
  482. //go services.SendEmail("弘则研报小程序-release-刷新图表报错", errContent, utils.EmailSendToUsers)
  483. } else {
  484. global.LOG.Info(errContent)
  485. }
  486. }
  487. //清除图表缓存
  488. {
  489. key := utils.HZ_CHART_LIB_DETAIL + chartInfo.UniqueCode
  490. _ = global.Redis.Del(context.TODO(), key)
  491. }
  492. response.OkData("刷新成功", "", c)
  493. }
  494. // EditChartInfo 编辑图表信息
  495. // @Tags 图库模块
  496. // @Summary 编辑图表信息
  497. // @Description 编辑图表信息
  498. // @Security ApiKeyAuth
  499. // @Param Authorization header string true "Bearer 31a165baebe6dec616b1f8f3207b4273"
  500. // @Accept json
  501. // @Product json
  502. // @Param data body chartInfoModel.SaveChartInfoReq true "请求参数"
  503. // @Success 200 {string} string "操作成功"
  504. // @failure 400 {string} string "操作失败"
  505. // @Router /my_chart/editChartInfo [post]
  506. func EditChartInfo(c *gin.Context) {
  507. // 参数校验
  508. var req chartInfoModel.SaveChartInfoReq
  509. if c.ShouldBind(&req) != nil {
  510. response.Fail("参数异常", c)
  511. return
  512. }
  513. if req.ChartInfoId <= 0 {
  514. response.Fail("参数异常", c)
  515. return
  516. }
  517. // 操作权限校验
  518. userInfo := user.GetInfoByClaims(c)
  519. ok, adminInfo, err := user.GetAdminByUserInfo(userInfo)
  520. if err != nil {
  521. response.Fail("操作人信息有误", c)
  522. return
  523. }
  524. if !ok {
  525. response.Fail("非内部人员无权进行操作", c)
  526. return
  527. }
  528. // 图表信息校验
  529. chartItem, err := chartInfoModel.GetChartInfoById(req.ChartInfoId)
  530. if err != nil {
  531. if err == utils.ErrNoRow {
  532. response.Fail("图表已被删除,请刷新页面!", c)
  533. return
  534. }
  535. response.FailMsg("操作失败", "获取图表信息失败, Err:"+err.Error(), c)
  536. return
  537. }
  538. // 图表关联指标id
  539. chartEdbInfoList := make([]*chartInfoModel.ChartSaveItem, 0)
  540. // 关联指标
  541. var edbInfoIdArr []int
  542. // 非散点截面图的直接通过前端获取,散点截面图需要额外从配置中获取
  543. if chartItem.ChartType != 10 {
  544. //edbList := make([]*data_manage.EdbInfo, 0)
  545. for _, v := range req.ChartEdbInfoList {
  546. edbInfoId := v.EdbInfoId
  547. edbInfo, err := edbInfoModel.GetEdbInfoById(edbInfoId)
  548. if err != nil {
  549. if err == utils.ErrNoRow {
  550. response.FailMsg("操作失败", "图表不存在,ChartInfoId:"+strconv.Itoa(v.EdbInfoId), c)
  551. return
  552. }
  553. response.FailMsg("操作失败", "获取图表的指标信息失败,Err:"+err.Error(), c)
  554. return
  555. }
  556. if edbInfo == nil {
  557. response.FailMsg("操作失败", "指标不存在,ChartInfoId:"+strconv.Itoa(v.EdbInfoId), c)
  558. return
  559. }
  560. if edbInfo.EdbInfoId <= 0 {
  561. response.FailMsg("指标已被删除,请重新选择!", "指标不存在,ChartInfoId:"+strconv.Itoa(v.EdbInfoId), c)
  562. return
  563. }
  564. edbInfoIdArr = append(edbInfoIdArr, edbInfoId)
  565. edbInfo.EdbNameSource = edbInfo.EdbName
  566. //edbList = append(edbList, edbInfo)
  567. }
  568. chartEdbInfoList = req.ChartEdbInfoList
  569. } else {
  570. if req.ExtraConfig == `` {
  571. response.FailMsg("请选择指标!", "请选择指标!, Err:"+err.Error(), c)
  572. return
  573. }
  574. // 校验配置的指标列表
  575. tmpEdbInfoIdArr, err, errMsg := chart.CheckChartExtraConfig(chartItem.ChartType, req.ExtraConfig)
  576. if err != nil {
  577. response.FailMsg(errMsg, "修改失败!, Err:"+err.Error(), c)
  578. return
  579. }
  580. edbInfoIdArr = tmpEdbInfoIdArr
  581. lenEdbInfoIdArr := len(edbInfoIdArr)
  582. if lenEdbInfoIdArr > 0 {
  583. tmpEdbList, err := edbInfoModel.GetEdbInfoByIdList(edbInfoIdArr)
  584. if err != nil {
  585. response.FailMsg("指标异常!", "指标异常!, Err:"+err.Error(), c)
  586. return
  587. }
  588. if len(tmpEdbList) != lenEdbInfoIdArr {
  589. response.FailMsg("指标异常!", fmt.Sprint("查找出来的指标数量与选择的指标数量不符!查找出来的指标数量:", len(tmpEdbList), ";用户选择的指标数量:", lenEdbInfoIdArr), c)
  590. return
  591. }
  592. for _, v := range tmpEdbList {
  593. chartEdbInfoList = append(chartEdbInfoList, &chartInfoModel.ChartSaveItem{
  594. EdbInfoId: v.EdbInfoId,
  595. MaxData: 0,
  596. MinData: 0,
  597. IsOrder: false,
  598. IsAxis: 1,
  599. EdbInfoType: 1,
  600. LeadValue: 0,
  601. LeadUnit: "",
  602. ChartStyle: "",
  603. ChartColor: "",
  604. //PredictChartColor: "",
  605. ChartWidth: 0,
  606. Source: utils.CHART_SOURCE_DEFAULT,
  607. })
  608. }
  609. }
  610. }
  611. if len(edbInfoIdArr) <= 0 {
  612. response.Fail("请选择指标!", c)
  613. return
  614. }
  615. if chartItem.ChartType == 2 && len(req.ChartEdbInfoList) > 1 {
  616. response.Fail("您选择的图表样式为季节性图表,只支持单指标画图!", c)
  617. return
  618. }
  619. if req.Calendar == "" {
  620. req.Calendar = "公历"
  621. }
  622. sort.Ints(edbInfoIdArr)
  623. var edbInfoIdArrStr []string
  624. for _, v := range edbInfoIdArr {
  625. edbInfoIdArrStr = append(edbInfoIdArrStr, strconv.Itoa(v))
  626. }
  627. edbInfoIdStr := strings.Join(edbInfoIdArrStr, ",")
  628. err = chart.ModifyChartInfoAndMapping(edbInfoIdStr, &req, chartItem.ChartType, chartEdbInfoList)
  629. if err != nil {
  630. response.Fail("图表保存失败, Err:"+err.Error(), c)
  631. return
  632. }
  633. // 清除图表缓存
  634. cacheKey := utils.HZ_CHART_LIB_DETAIL + chartItem.UniqueCode
  635. _ = global.Redis.Del(context.TODO(), cacheKey)
  636. // 新增操作日志
  637. {
  638. chartLog := new(chart_info_log.ChartInfoLog)
  639. chartLog.ChartName = chartItem.ChartName
  640. chartLog.ChartInfoId = req.ChartInfoId
  641. chartLog.ChartClassifyId = chartItem.ChartClassifyId
  642. chartLog.SysUserId = int(adminInfo.AdminID)
  643. chartLog.SysUserRealName = adminInfo.RealName
  644. chartLog.UniqueCode = chartItem.UniqueCode
  645. chartLog.CreateTime = time.Now()
  646. bodyBytes, _ := ioutil.ReadAll(c.Request.Body)
  647. chartLog.Content = string(bodyBytes)
  648. chartLog.Status = "修改配置项"
  649. chartLog.Method = c.Request.URL.String()
  650. go chartLog.Create()
  651. }
  652. response.OkData("操作成功", "", c)
  653. }