yb_community_question_like_tease.go 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. package yb_community_question
  2. import (
  3. "errors"
  4. "fmt"
  5. "hongze/hongze_yb/global"
  6. "hongze/hongze_yb/models/response"
  7. "hongze/hongze_yb/models/tables/yb_community_question_like_tease"
  8. "time"
  9. )
  10. // SetLikeOrTease 用户对问答进行(取消)点赞或(取消)吐槽
  11. func SetLikeOrTease(userId uint64, communityQuestionId uint32, opType, enable, sourceAgent int8) (ybCommunityQuestionLikeTease *yb_community_question_like_tease.YbCommunityQuestionLikeTease, likeNum, teaseNum int64, err error, errMsg string) {
  12. //user.UserID
  13. defer func() {
  14. if err != nil {
  15. global.LOG.Critical(fmt.Sprintf("SetLike: userId=%d, err:%s, errMsg:%s", userId, err.Error(), errMsg))
  16. }
  17. }()
  18. if sourceAgent == 0 {
  19. err = errors.New("请输入来源")
  20. return
  21. }
  22. if communityQuestionId <= 0 {
  23. err = errors.New("请输入问答ID")
  24. return
  25. }
  26. // 判断是否有点赞权限(不需要权限校验,先保留,有需要后续再说)
  27. //err, errMsg = services.CheckSimpleCompanyProduct(user)
  28. //if err != nil {
  29. // return
  30. //}
  31. //查询用户对问答的点赞/吐槽状态
  32. ybCommunityQuestionLikeTease, err = yb_community_question_like_tease.GetByUserIdAndCommunityQuestionId(userId, communityQuestionId)
  33. if err != nil {
  34. errMsg = "查询点赞/吐槽记录出错"
  35. return
  36. }
  37. //如果未点赞则新增点赞记录
  38. now := time.Now()
  39. if ybCommunityQuestionLikeTease.CommunityQuestionLikeTeaseID <= 0 {
  40. ybCommunityQuestionLikeTease = &yb_community_question_like_tease.YbCommunityQuestionLikeTease{
  41. //CommunityQuestionLikeTeaseID: 0,
  42. UserID: userId,
  43. OpType: opType,
  44. Enabled: 1,
  45. CreateTime: now,
  46. ModifyTime: now,
  47. CommunityQuestionID: communityQuestionId,
  48. SourceAgent: sourceAgent,
  49. }
  50. err = ybCommunityQuestionLikeTease.Create()
  51. if err != nil {
  52. errMsg = err.Error()
  53. err = errors.New("新增点赞/吐槽记录出错")
  54. return
  55. }
  56. } else {
  57. ybCommunityQuestionLikeTease.OpType = opType
  58. ybCommunityQuestionLikeTease.Enabled = enable
  59. ybCommunityQuestionLikeTease.SourceAgent = sourceAgent
  60. ybCommunityQuestionLikeTease.ModifyTime = now
  61. updates := []string{"op_type", "enabled", "source_agent", "modify_time"}
  62. err = ybCommunityQuestionLikeTease.Update(updates)
  63. if err != nil {
  64. errMsg = "更新点赞记录出错"
  65. return
  66. }
  67. }
  68. //查询总的点赞数
  69. likeNum, err = yb_community_question_like_tease.GetLikeNumByCommunityQuestionId(communityQuestionId)
  70. if err != nil {
  71. errMsg = err.Error()
  72. err = errors.New("查询点赞数出错")
  73. }
  74. teaseNum, err = yb_community_question_like_tease.GetTeaseNumByCommunityQuestionId(communityQuestionId)
  75. if err != nil {
  76. errMsg = err.Error()
  77. err = errors.New("查询吐槽数出错")
  78. }
  79. return
  80. }
  81. // HandleLikeOrTeaseByCommunityQuestionItemList 问答 点赞/吐槽 数据
  82. func HandleLikeOrTeaseByCommunityQuestionItemList(userId uint64, questionList []*response.CommunityQuestionItem) (err error) {
  83. listLen := len(questionList)
  84. if listLen == 0 {
  85. return
  86. }
  87. idArr := make([]uint32, 0)
  88. for i := 0; i < listLen; i++ {
  89. idArr = append(idArr, uint32(questionList[i].CommunityQuestionID))
  90. }
  91. // 获取点赞和吐槽数据
  92. ybCommunityQuestionLikeTeaseMap := make(map[uint32]*yb_community_question_like_tease.YbCommunityQuestionLikeTease)
  93. ybCommunityQuestionLikeTeaseList, err := yb_community_question_like_tease.GetByUserIdAndCommunityQuestionIds(userId, idArr)
  94. if err != nil {
  95. return
  96. }
  97. for _, v := range ybCommunityQuestionLikeTeaseList {
  98. ybCommunityQuestionLikeTeaseMap[v.CommunityQuestionID] = v
  99. }
  100. // 获取点赞和吐槽汇总数
  101. likeMap := make(map[uint32]int)
  102. teaseMap := make(map[uint32]int)
  103. likeList, err := yb_community_question_like_tease.GetLikeNumCommentByCommunityQuestionIds(idArr)
  104. if err != nil {
  105. return
  106. }
  107. for _, v := range likeList {
  108. likeMap[v.CommunityQuestionID] = v.Total
  109. }
  110. teaseList, err := yb_community_question_like_tease.GetTeaseNumCommentByCommunityQuestionIds(idArr)
  111. if err != nil {
  112. return
  113. }
  114. for _, v := range teaseList {
  115. teaseMap[v.CommunityQuestionID] = v.Total
  116. }
  117. for _, v := range questionList {
  118. if tmpTotal, ok := likeMap[uint32(v.CommunityQuestionID)]; ok {
  119. v.LikeTotal = tmpTotal
  120. }
  121. if tmpTotal, ok := teaseMap[uint32(v.CommunityQuestionID)]; ok {
  122. v.TeaseTotal = tmpTotal
  123. }
  124. if ybCommunityQuestionLikeTease, ok := ybCommunityQuestionLikeTeaseMap[uint32(v.CommunityQuestionID)]; ok {
  125. //类型. 1-点赞 2-吐槽
  126. v.OpType = ybCommunityQuestionLikeTease.OpType
  127. }
  128. }
  129. return
  130. }