system_msg.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. package v1
  2. import (
  3. "git.getensh.com/common/gopkgs/logger"
  4. "git.getensh.com/common/gopkgs/tasker/httptasker"
  5. "git.getensh.com/common/gopkgs/util"
  6. "github.com/gin-gonic/gin"
  7. "go.uber.org/zap"
  8. "net/http"
  9. "property-applete-gateway/errors"
  10. param_v1 "property-applete-gateway/param/v1"
  11. "property-applete-gateway/pb"
  12. "property-applete-gateway/pb/v1"
  13. "property-applete-gateway/utils"
  14. )
  15. //
  16. // @Summary 设置消息为已读
  17. // @Description 设置消息为已读
  18. // @Tags 系统消息
  19. // @Accept json
  20. // @Produce json
  21. // @Param token header string true "token"
  22. // @Param body body v1.SystemMsgReadedBody true "信息"
  23. // @Success 200 {object} v1.VehicleAddResponse
  24. // @Failure 500 {object} base.HTTPError
  25. // @Router /api/v1/system_msg [put]
  26. func (c *Controller) SystemMsgReaded(ctx *gin.Context) {
  27. // 解析参数
  28. req := &param_v1.SystemMsgReadedRequest{}
  29. parseParamTask := func() error {
  30. err := util.ShouldBind(ctx, &req.Header, nil, nil, &req.SystemMsgReadedBody)
  31. if err != nil {
  32. logger.Error("func",
  33. zap.String("call", "util.ShouldBind"),
  34. zap.String("error", err.Error()))
  35. return errors.ParamsError
  36. }
  37. return nil
  38. }
  39. // 业务处理
  40. handleServiceTask := func() error {
  41. tokenInfo, err := utils.GetSubjectValue(ctx)
  42. if err != nil {
  43. return err
  44. }
  45. // 响应数据
  46. resp := param_v1.SystemMsgReadedResponse{}
  47. rpcReq := &v1.SystemMsgReadedRequest{
  48. GardenId:tokenInfo.GardenId,
  49. Id:req.Id,
  50. }
  51. _, err = pb.Garden.SystemMsgReaded(ctx, rpcReq)
  52. if err != nil {
  53. s, _ := json.MarshalToString(req)
  54. logger.Error("func",
  55. zap.String("call", "pb.Garden.SystemMsgReaded"),
  56. zap.String("params", s),
  57. zap.String("error", err.Error()))
  58. return errors.ErrorTransForm(err)
  59. }
  60. ctx.JSON(http.StatusOK, resp)
  61. return nil
  62. }
  63. // 执行任务
  64. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  65. }
  66. //
  67. // @Summary 获取未读消息数
  68. // @Description 获取未读消息数
  69. // @Tags 系统消息
  70. // @Accept json
  71. // @Produce json
  72. // @Param token header string true "token"
  73. // @Success 200 {object} v1.SystemMsgCountResponse
  74. // @Failure 500 {object} base.HTTPError
  75. // @Router /api/v1/system_msg/count [get]
  76. func (c *Controller) SystemMsgCount(ctx *gin.Context) {
  77. // 解析参数
  78. req := &param_v1.SystemMsgCountRequest{}
  79. parseParamTask := func() error {
  80. err := util.ShouldBind(ctx, &req.Header, nil, nil, nil)
  81. if err != nil {
  82. logger.Error("func",
  83. zap.String("call", "util.ShouldBind"),
  84. zap.String("error", err.Error()))
  85. return errors.ParamsError
  86. }
  87. return nil
  88. }
  89. // 业务处理
  90. handleServiceTask := func() error {
  91. tokenInfo, err := utils.GetSubjectValue(ctx)
  92. if err != nil {
  93. return err
  94. }
  95. // 响应数据
  96. resp := param_v1.SystemMsgCountResponse{}
  97. rpcReq := &v1.SystemMsgCountRequest{
  98. GardenId:tokenInfo.GardenId,
  99. Codes:tokenInfo.Codes,
  100. Super:tokenInfo.Super,
  101. }
  102. rpcRsp, err := pb.Garden.SystemMsgCount(ctx, rpcReq)
  103. if err != nil {
  104. s, _ := json.MarshalToString(req)
  105. logger.Error("func",
  106. zap.String("call", "pb.Garden.SystemMsgCount"),
  107. zap.String("params", s),
  108. zap.String("error", err.Error()))
  109. return errors.ErrorTransForm(err)
  110. }
  111. resp.Data = *rpcRsp
  112. ctx.JSON(http.StatusOK, resp)
  113. return nil
  114. }
  115. // 执行任务
  116. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  117. }
  118. //
  119. // @Summary 获取未读消息列表
  120. // @Description 获取未读消息列表
  121. // @Tags 系统消息
  122. // @Accept json
  123. // @Produce json
  124. // @Param token header string true "token"
  125. // @Param page query int false " "
  126. // @Param page_size query int false " "
  127. // @Success 200 {object} v1.SystemMsgListResponse
  128. // @Failure 500 {object} base.HTTPError
  129. // @Router /api/v1/system_msg/list [get]
  130. func (c *Controller) SystemMsgList(ctx *gin.Context) {
  131. // 解析参数
  132. req := &param_v1.SystemMsgListRequest{}
  133. parseParamTask := func() error {
  134. err := util.ShouldBind(ctx, &req.Header, nil, &req.SystemMsgListQuery, nil)
  135. if err != nil {
  136. logger.Error("func",
  137. zap.String("call", "util.ShouldBind"),
  138. zap.String("error", err.Error()))
  139. return errors.ParamsError
  140. }
  141. return nil
  142. }
  143. // 业务处理
  144. handleServiceTask := func() error {
  145. tokenInfo, err := utils.GetSubjectValue(ctx)
  146. if err != nil {
  147. return err
  148. }
  149. // 响应数据
  150. resp := param_v1.SystemMsgListResponse{}
  151. rpcReq := &v1.SystemMsgListRequest{
  152. GardenId:tokenInfo.GardenId,
  153. Codes:tokenInfo.Codes,
  154. Super:tokenInfo.Super,
  155. Page:req.Page,
  156. PageSize:req.PageSize,
  157. }
  158. rpcRsp, err := pb.Garden.SystemMsgList(ctx, rpcReq)
  159. if err != nil {
  160. s, _ := json.MarshalToString(req)
  161. logger.Error("func",
  162. zap.String("call", "pb.Garden.SystemMsgList"),
  163. zap.String("params", s),
  164. zap.String("error", err.Error()))
  165. return errors.ErrorTransForm(err)
  166. }
  167. if rpcRsp.List == nil {
  168. rpcRsp.List = make([]*v1.SystemMsgItem, 0)
  169. }
  170. resp.Data = *rpcRsp
  171. ctx.JSON(http.StatusOK, resp)
  172. return nil
  173. }
  174. // 执行任务
  175. httptasker.Exec(ctx, parseParamTask, handleServiceTask)
  176. }