comment.go 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. package community
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "hongze/hongze_yb/controller/response"
  5. "hongze/hongze_yb/logic/yb_community_question"
  6. "hongze/hongze_yb/models/request"
  7. responseModel "hongze/hongze_yb/models/response"
  8. "hongze/hongze_yb/models/tables/wx_user"
  9. "hongze/hongze_yb/models/tables/yb_community_question_comment"
  10. "hongze/hongze_yb/services"
  11. userService "hongze/hongze_yb/services/user"
  12. "strconv"
  13. )
  14. // Comment 发布留言
  15. func Comment(c *gin.Context) {
  16. var req request.ReqComment
  17. if c.ShouldBind(&req) != nil {
  18. response.Fail("入参错误", c)
  19. return
  20. }
  21. userInfo := userService.GetInfoByClaims(c)
  22. var qaAvatarUrl string
  23. if userInfo.QaAvatarUrl == "" {
  24. avatar, err := yb_community_question_comment.GetUserAvatarRandom()
  25. if err != nil {
  26. response.FailMsg("发布失败", err.Error(), c)
  27. return
  28. }
  29. qaAvatarUrl = avatar.AvatarUrl
  30. err = wx_user.ModifyQaAvatarUrl(qaAvatarUrl, userInfo.UserID)
  31. if err != nil {
  32. response.FailMsg("发布失败", err.Error(), c)
  33. return
  34. }
  35. } else {
  36. qaAvatarUrl = userInfo.QaAvatarUrl
  37. }
  38. req.IsShowName = 0
  39. if userInfo.NickName != `` { //非空串时为实名
  40. req.IsShowName = 1
  41. }
  42. ybCommunityQuestionComment, err, errMsg := yb_community_question.Comment(userInfo, req.CommunityQuestionID, req.Content, req.SourceAgent, req.IsShowName,qaAvatarUrl)
  43. if err != nil {
  44. response.FailMsg(errMsg, err.Error(), c)
  45. return
  46. }
  47. response.OkData("留言成功", responseModel.RespCommunityQuestionCommentAdd{
  48. CommunityQuestionCommentID: ybCommunityQuestionComment.CommunityQuestionCommentID,
  49. }, c)
  50. return
  51. }
  52. // DeleteComment 删除留言
  53. func DeleteComment(c *gin.Context) {
  54. var req *request.ReqDel
  55. if c.ShouldBind(&req) != nil {
  56. response.Fail("参数异常", c)
  57. return
  58. }
  59. userInfo := userService.GetInfoByClaims(c)
  60. err, errMsg := yb_community_question.Delete(userInfo, req.CommunityQuestionCommentID)
  61. if err != nil {
  62. response.FailMsg(errMsg, err.Error(), c)
  63. return
  64. }
  65. response.Ok("删除留言成功", c)
  66. return
  67. }
  68. // HotList 获取精选留言
  69. func HotList(c *gin.Context) {
  70. communityQuestionIDStr := c.DefaultQuery("community_question_id", "")
  71. communityQuestionID, err := strconv.Atoi(communityQuestionIDStr)
  72. if err != nil {
  73. response.Fail("问答id异常", c)
  74. return
  75. }
  76. userinfo := userService.GetInfoByClaims(c)
  77. page := services.GetCurrPageByClaims(c)
  78. pageSize := services.GetPageSizeByClaims(c)
  79. list, hotTotal, myTotal, err, errMsg := yb_community_question.List(userinfo.UserID, communityQuestionID, true, page, pageSize)
  80. if err != nil {
  81. response.FailMsg(errMsg, err.Error(), c)
  82. return
  83. }
  84. response.OkData("查询成功", responseModel.RespCommunityQuestionCommentList{
  85. List: list,
  86. Paging: responseModel.GetPaging(page, pageSize, int(hotTotal)),
  87. HotTotal: hotTotal,
  88. MyTotal: myTotal,
  89. }, c)
  90. return
  91. }
  92. // MyList 获取我的留言
  93. func MyList(c *gin.Context) {
  94. communityQuestionIDStr := c.DefaultQuery("community_question_id", "")
  95. communityQuestionID, err := strconv.Atoi(communityQuestionIDStr)
  96. if err != nil {
  97. response.Fail("问答id异常", c)
  98. return
  99. }
  100. userinfo := userService.GetInfoByClaims(c)
  101. page := services.GetCurrPageByClaims(c)
  102. pageSize := services.GetPageSizeByClaims(c)
  103. list, hotTotal, myTotal, err, errMsg := yb_community_question.MyList(userinfo.UserID, communityQuestionID, page, pageSize)
  104. if err != nil {
  105. response.FailMsg(errMsg, err.Error(), c)
  106. return
  107. }
  108. response.OkData("查询成功", responseModel.RespCommunityQuestionCommentList{
  109. List: list,
  110. Paging: responseModel.GetPaging(page, pageSize, int(myTotal)),
  111. HotTotal: hotTotal,
  112. MyTotal: myTotal,
  113. }, c)
  114. return
  115. }
  116. // GetNeedCommentAnonymousUserTips 获取是否 弹出让去设置头像 的提示框
  117. func GetNeedCommentAnonymousUserTips(c *gin.Context) {
  118. userinfo := userService.GetInfoByClaims(c)
  119. // true 不弹框,false弹框
  120. if userinfo.NickName != `` {
  121. response.OkData("获取成功", true, c)
  122. return
  123. }
  124. ok, err := yb_community_question.GetNeedCommentAnonymousUserTips(userinfo.UserID)
  125. if err != nil {
  126. response.FailMsg("获取失败", err.Error(), c)
  127. return
  128. }
  129. response.OkData("获取成功", ok, c)
  130. }
  131. // SetCommentAnonymousUserTips 设置不再提示 弹出让去设置头像 的提示框
  132. func SetCommentAnonymousUserTips(c *gin.Context) {
  133. userinfo := userService.GetInfoByClaims(c)
  134. err := yb_community_question.SetYbCommentAnonymousUserTips(userinfo.UserID)
  135. if err != nil {
  136. response.FailMsg("设置失败", err.Error(), c)
  137. return
  138. }
  139. response.Ok("设置成功", c)
  140. }