my_chart.go 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. package my_chart
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. "hongze/hongze_yb/controller/response"
  6. "hongze/hongze_yb/models/request"
  7. responseModel "hongze/hongze_yb/models/response"
  8. chartInfoModel "hongze/hongze_yb/models/tables/chart_info"
  9. "hongze/hongze_yb/models/tables/yb_config"
  10. "hongze/hongze_yb/models/tables/yb_my_chart"
  11. "hongze/hongze_yb/services"
  12. userService "hongze/hongze_yb/services/user"
  13. "hongze/hongze_yb/utils"
  14. "strconv"
  15. "time"
  16. )
  17. // MyChartController 用户-我的图表
  18. type MyChartController struct{}
  19. // List 我的图表列表
  20. func (this *MyChartController) List(c *gin.Context) {
  21. userInfo := userService.GetInfoByClaims(c)
  22. userId := int(userInfo.UserID)
  23. var req request.MyChartCollectListReq
  24. if c.Bind(&req) != nil {
  25. response.Fail("参数有误", c)
  26. return
  27. }
  28. cond := `user_id = ?`
  29. pars := make([]interface{}, 0)
  30. pars = append(pars, userId)
  31. if req.Keyword != "" {
  32. kw := fmt.Sprint("%", req.Keyword, "%")
  33. cond += ` AND chart_name LIKE ?`
  34. pars = append(pars, kw)
  35. }
  36. if req.ClassifyId > 0 {
  37. cond += ` AND my_chart_classify_id = ?`
  38. pars = append(pars, req.ClassifyId)
  39. }
  40. pageIndex := services.GetCurrPageByClaims(c)
  41. pageSize := services.GetPageSizeByClaims(c)
  42. ob := new(yb_my_chart.YbMyChart)
  43. chartTotal, e := ob.Count(cond, pars)
  44. if e != nil {
  45. response.FailMsg("获取失败", "获取用户图表列表总数失败, Err:"+e.Error(), c)
  46. return
  47. }
  48. total := int(chartTotal)
  49. list, e := ob.PageList(cond, pars, pageIndex, pageSize)
  50. if e != nil {
  51. response.FailMsg("获取失败", "获取用户图表列表失败, Err:"+e.Error(), c)
  52. return
  53. }
  54. respList := make([]*responseModel.MyChartItem, 0)
  55. for i := range list {
  56. respList = append(respList, &responseModel.MyChartItem{
  57. MyChartID: list[i].MyChartID,
  58. MyChartClassifyID: list[i].MyChartClassifyID,
  59. ChartInfoID: list[i].ChartInfoID,
  60. ChartName: list[i].ChartName,
  61. UniqueCode: list[i].UniqueCode,
  62. ChartImage: list[i].ChartImage,
  63. UserID: list[i].UserID,
  64. ReportID: list[i].ReportID,
  65. ReportChapterID: list[i].ReportChapterID,
  66. CreateTime: utils.TimeTransferString(utils.FormatDateTime, list[i].CreateTime),
  67. })
  68. }
  69. response.OkData("获取成功", &responseModel.MyChartListResp{
  70. List: respList,
  71. Paging: responseModel.GetPaging(pageIndex, pageSize, total),
  72. }, c)
  73. }
  74. // Collect 收藏图表
  75. func (this *MyChartController) Collect(c *gin.Context) {
  76. var req request.MyChartCollectReq
  77. if c.ShouldBind(&req) != nil {
  78. response.Fail("参数有误", c)
  79. return
  80. }
  81. if req.Authorization == "" {
  82. response.Fail("用户身份有误", c)
  83. return
  84. }
  85. if req.UniqueCode == "" {
  86. response.Fail("请选择图表", c)
  87. return
  88. }
  89. if req.ReportId <= 0 {
  90. response.Fail("请选择报告", c)
  91. return
  92. }
  93. // 获取用户信息
  94. userInfo, e := userService.GetUserInfoByToken(req.Authorization)
  95. if e != nil {
  96. response.FailMsg("操作失败", "Token获取有效用户失败, Err: "+e.Error(), c)
  97. return
  98. }
  99. if userInfo.UserID <= 0 {
  100. response.FailMsg("操作失败", "Token获取有效用户失败", c)
  101. return
  102. }
  103. userId := int(userInfo.UserID)
  104. // 获取图表信息
  105. chartInfo, e := chartInfoModel.GetChartInfoViewByUniqueCode(req.UniqueCode)
  106. if e != nil {
  107. response.FailMsg("操作失败", "UniqueCode获取图表信息失败, Err:"+e.Error(), c)
  108. return
  109. }
  110. if chartInfo.ChartInfoId <= 0 {
  111. response.FailMsg("操作失败", "图表信息有误", c)
  112. return
  113. }
  114. // 图表收藏上限
  115. ob := new(yb_my_chart.YbMyChart)
  116. countCond := `user_id = ?`
  117. countPars := make([]interface{}, 0)
  118. countPars = append(countPars, userId)
  119. count, e := ob.Count(countCond, countPars)
  120. if e != nil {
  121. response.FailMsg("操作失败", "获取用户图表收藏数量失败, Err: "+e.Error(), c)
  122. return
  123. }
  124. // 获取图表收藏上限配置
  125. configCond := `config_code = ?`
  126. configPars := make([]interface{}, 0)
  127. configPars = append(configPars, yb_config.UserChartCollectMax)
  128. confOB := new(yb_config.YbConfig)
  129. conf, e := confOB.Fetch(configCond, configPars)
  130. if e != nil {
  131. response.FailMsg("操作失败", "获取图表收藏上限配置失败, Err: "+e.Error(), c)
  132. return
  133. }
  134. max, e := strconv.Atoi(conf.ConfigValue)
  135. if e != nil {
  136. response.FailMsg("操作失败", "图表收藏上限配置有误, Err: "+e.Error(), c)
  137. return
  138. }
  139. if int(count) >= max {
  140. response.Fail(fmt.Sprintf("图表最多可收藏%d张", max), c)
  141. return
  142. }
  143. // 是否已收藏
  144. cond := `user_id = ? AND chart_info_id = ?`
  145. pars := make([]interface{}, 0)
  146. pars = append(pars, userId, chartInfo.ChartInfoId)
  147. exists, e := ob.FetchByCondition(cond, pars)
  148. if e != nil && e != utils.ErrNoRow {
  149. response.FailMsg("操作失败", "获取用户图表失败, Err: "+e.Error(), c)
  150. return
  151. }
  152. nowTime := time.Now().Local()
  153. if exists != nil && exists.MyChartID > 0 {
  154. // 更新收藏信息
  155. exists.ChartName = chartInfo.ChartName
  156. exists.ChartImage = chartInfo.ChartImage
  157. exists.ReportID = req.ReportId
  158. exists.ReportChapterID = req.ReportChapterId
  159. exists.ModifyTime = nowTime
  160. updateCols := []string{"ChartName", "ChartImage", "ReportID", "ReportChapterID", "ModifyTime"}
  161. if e = exists.Update(updateCols); e != nil {
  162. response.FailMsg("操作失败", "更新收藏失败, Err: "+e.Error(), c)
  163. return
  164. }
  165. } else {
  166. // 新增收藏
  167. ob.ChartInfoID = chartInfo.ChartInfoId
  168. ob.ChartName = chartInfo.ChartName
  169. ob.UniqueCode = chartInfo.UniqueCode
  170. ob.ChartImage = chartInfo.ChartImage
  171. ob.UserID = userId
  172. ob.ReportID = req.ReportId
  173. ob.ReportChapterID = req.ReportChapterId
  174. ob.CreateTime = nowTime
  175. ob.ModifyTime = nowTime
  176. if e = ob.Create(); e != nil {
  177. response.FailMsg("操作失败", "新增收藏失败, Err: "+e.Error(), c)
  178. return
  179. }
  180. }
  181. response.Ok("操作成功", c)
  182. }
  183. // 取消收藏 CollectCancel
  184. func (this *MyChartController) CollectCancel(c *gin.Context) {
  185. var req request.MyChartCollectCancelReq
  186. if c.ShouldBind(&req) != nil {
  187. response.Fail("参数有误", c)
  188. return
  189. }
  190. if req.Authorization == "" {
  191. response.Fail("用户身份有误", c)
  192. return
  193. }
  194. if req.UniqueCode == "" {
  195. response.Fail("请选择图表", c)
  196. return
  197. }
  198. // 获取用户信息
  199. userInfo, e := userService.GetUserInfoByToken(req.Authorization)
  200. if e != nil {
  201. response.FailMsg("操作失败", "Token获取有效用户失败, Err: "+e.Error(), c)
  202. return
  203. }
  204. if userInfo.UserID <= 0 {
  205. response.FailMsg("操作失败", "Token获取有效用户失败", c)
  206. return
  207. }
  208. userId := int(userInfo.UserID)
  209. // 获取图表信息
  210. chartInfo, e := chartInfoModel.GetChartInfoViewByUniqueCode(req.UniqueCode)
  211. if e != nil {
  212. response.FailMsg("操作失败", "UniqueCode获取图表信息失败, Err:"+e.Error(), c)
  213. return
  214. }
  215. if chartInfo.ChartInfoId <= 0 {
  216. response.FailMsg("操作失败", "图表信息有误", c)
  217. return
  218. }
  219. cond := `user_id = ? AND chart_info_id = ?`
  220. pars := make([]interface{}, 0)
  221. pars = append(pars, userId, chartInfo.ChartInfoId)
  222. ob := new(yb_my_chart.YbMyChart)
  223. item, e := ob.FetchByCondition(cond, pars)
  224. if e != nil {
  225. response.FailMsg("操作失败", "获取用户图表失败, Err: "+e.Error(), c)
  226. return
  227. }
  228. if e = item.Delete(); e != nil {
  229. response.FailMsg("操作失败", "取消用户图表收藏失败, Err: "+e.Error(), c)
  230. return
  231. }
  232. response.Ok("操作成功", c)
  233. }
  234. // RelateClassify 加入分类
  235. func (this *MyChartController) RelateClassify(c *gin.Context) {
  236. userInfo := userService.GetInfoByClaims(c)
  237. userId := int(userInfo.UserID)
  238. if userId <= 0 {
  239. response.Fail("请登录后操作", c)
  240. return
  241. }
  242. var req request.MyChartRelateClassifyReq
  243. if c.ShouldBind(&req) != nil {
  244. response.Fail("参数有误", c)
  245. return
  246. }
  247. if req.MyChartId <= 0 {
  248. response.Fail("请选择图表", c)
  249. return
  250. }
  251. if req.ClassifyId <= 0 {
  252. response.Fail("请选择分类", c)
  253. return
  254. }
  255. ob := new(yb_my_chart.YbMyChart)
  256. item, e := ob.Fetch(req.MyChartId)
  257. if e != nil {
  258. response.FailMsg("图表信息有误", "获取用户图表失败, Err: "+e.Error(), c)
  259. return
  260. }
  261. if item.UserID != userId {
  262. response.Fail("无权操作", c)
  263. return
  264. }
  265. item.MyChartClassifyID = req.ClassifyId
  266. item.ModifyTime = time.Now().Local()
  267. if e = item.Update([]string{"MyChartClassifyID", "ModifyTime"}); e != nil {
  268. response.FailMsg("操作失败", "更新用户图表关联分类失败, Err: "+e.Error(), c)
  269. return
  270. }
  271. response.Ok("操作成功", c)
  272. }
  273. // IsCollect 是否已收藏
  274. func (this *MyChartController) IsCollect(c *gin.Context) {
  275. var req request.MyChartIsCollectReq
  276. if c.Bind(&req) != nil {
  277. response.Fail("参数有误", c)
  278. return
  279. }
  280. if req.Authorization == "" {
  281. response.Fail("用户身份有误", c)
  282. return
  283. }
  284. if req.UniqueCode == "" {
  285. response.Fail("请选择图表", c)
  286. return
  287. }
  288. // 获取用户信息
  289. userInfo, e := userService.GetUserInfoByToken(req.Authorization)
  290. if e != nil {
  291. response.FailMsg("操作失败", "Token获取有效用户失败, Err: "+e.Error(), c)
  292. return
  293. }
  294. if userInfo.UserID <= 0 {
  295. response.FailMsg("操作失败", "Token获取有效用户失败", c)
  296. return
  297. }
  298. userId := int(userInfo.UserID)
  299. // 获取图表信息
  300. chartInfo, e := chartInfoModel.GetChartInfoViewByUniqueCode(req.UniqueCode)
  301. if e != nil {
  302. response.FailMsg("操作失败", "UniqueCode获取图表信息失败, Err:"+e.Error(), c)
  303. return
  304. }
  305. if chartInfo.ChartInfoId <= 0 {
  306. response.FailMsg("操作失败", "图表信息有误", c)
  307. return
  308. }
  309. // 是否已收藏
  310. ob := new(yb_my_chart.YbMyChart)
  311. cond := `user_id = ? AND chart_info_id = ?`
  312. pars := make([]interface{}, 0)
  313. pars = append(pars, userId, chartInfo.ChartInfoId)
  314. exists, e := ob.FetchByCondition(cond, pars)
  315. if e != nil && e != utils.ErrNoRow {
  316. response.FailMsg("操作失败", "获取用户图表失败, Err: "+e.Error(), c)
  317. return
  318. }
  319. isCollect := false
  320. if exists != nil && exists.MyChartID > 0 {
  321. isCollect = true
  322. }
  323. response.OkData("获取成功", isCollect, c)
  324. }