xreply.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. package service
  2. import (
  3. "context"
  4. "sort"
  5. "go-common/app/interface/main/reply/model/reply"
  6. xmodel "go-common/app/interface/main/reply/model/xreply"
  7. "go-common/library/sync/errgroup.v2"
  8. )
  9. const (
  10. _secondRepliesPn = 1
  11. _secondRepliesPs = 3
  12. _hotSize = 5
  13. _hotSizeWeb = 3
  14. )
  15. func fillHot(rs []*reply.Reply, sub *reply.Subject, maxSize int) (hots []*reply.Reply) {
  16. for _, r := range rs {
  17. if r.Like >= 3 && !r.IsTop() && !r.IsDeleted() {
  18. hots = append(hots, r)
  19. }
  20. }
  21. if hots == nil {
  22. hots = _emptyReplies
  23. } else if len(hots) > maxSize {
  24. hots = hots[:maxSize]
  25. }
  26. if sub.RCount <= 20 && len(hots) > 0 {
  27. hots = _emptyReplies
  28. }
  29. return hots
  30. }
  31. // buildResCursor ...
  32. func buildResCursor(reqCursor *xmodel.Cursor, replies []*reply.Reply, cursorMode int) (resCursor xmodel.CursorRes) {
  33. length := len(replies)
  34. switch cursorMode {
  35. case xmodel.CursorModePage:
  36. // next和prev只可能一个不为0
  37. curPage := reqCursor.Next + reqCursor.Prev
  38. if reqCursor.Latest() {
  39. resCursor.IsBegin = true
  40. if length == 0 {
  41. resCursor.Next = curPage
  42. resCursor.Prev = curPage
  43. resCursor.IsEnd = true
  44. } else {
  45. // 下一页是第二页
  46. resCursor.Next = 2
  47. resCursor.Prev = 1
  48. if length < reqCursor.Ps {
  49. resCursor.IsEnd = true
  50. }
  51. }
  52. } else if reqCursor.Forward() {
  53. resCursor.Next = curPage + 1
  54. resCursor.Prev = curPage
  55. if length < reqCursor.Ps {
  56. resCursor.IsEnd = true
  57. }
  58. } else if reqCursor.Backward() {
  59. resCursor.Next = curPage
  60. resCursor.Prev = curPage - 1
  61. if length < reqCursor.Ps {
  62. resCursor.IsBegin = true
  63. }
  64. }
  65. case xmodel.CursorModeCursor:
  66. if reqCursor.Latest() {
  67. resCursor.IsBegin = true
  68. // Latest, 点进来默认访问的情况
  69. if length == 0 {
  70. resCursor.Next = reqCursor.Next
  71. resCursor.Prev = reqCursor.Prev
  72. resCursor.IsEnd = true
  73. } else {
  74. resCursor.Next = replies[length-1].Floor
  75. resCursor.Prev = replies[0].Floor
  76. if length < reqCursor.Ps {
  77. resCursor.IsEnd = true
  78. }
  79. }
  80. } else if reqCursor.Forward() {
  81. if length == 0 {
  82. resCursor.Next = reqCursor.Next
  83. resCursor.Prev = reqCursor.Prev
  84. resCursor.IsEnd = true
  85. } else {
  86. resCursor.Next = replies[length-1].Floor
  87. resCursor.Prev = replies[0].Floor
  88. if length < reqCursor.Ps {
  89. resCursor.IsEnd = true
  90. }
  91. }
  92. } else if reqCursor.Backward() {
  93. if length == 0 {
  94. resCursor.Next = reqCursor.Next
  95. resCursor.Prev = reqCursor.Prev
  96. resCursor.IsBegin = true
  97. } else {
  98. resCursor.Next = replies[length-1].Floor
  99. resCursor.Prev = replies[0].Floor
  100. if length < reqCursor.Ps {
  101. resCursor.IsBegin = true
  102. }
  103. }
  104. }
  105. }
  106. return
  107. }
  108. // replyMisc ...
  109. func (s *Service) replyCommonRes(ctx context.Context, mid, oid int64, tp int8, sub *reply.Subject) (res xmodel.CommonRes) {
  110. if sub == nil {
  111. return
  112. }
  113. g := errgroup.WithContext(ctx)
  114. g.Go(func(ctx context.Context) error {
  115. if s.RelationBlocked(ctx, sub.Mid, mid) {
  116. res.Blacklist = 1
  117. }
  118. return nil
  119. })
  120. g.Go(func(ctx context.Context) error {
  121. if ok, _ := s.CheckAssist(ctx, sub.Mid, mid); ok {
  122. res.Assist = 1
  123. }
  124. return nil
  125. })
  126. // 默认都是展示
  127. res.Config.ShowAdmin, res.Config.ShowEntry, res.Config.ShowFloor = 1, 1, 1
  128. g.Go(func(ctx context.Context) error {
  129. if cfg, _ := s.GetReplyLogConfig(ctx, sub, 1); cfg != nil {
  130. res.Config.ShowAdmin, res.Config.ShowEntry = cfg.ShowAdmin, cfg.ShowEntry
  131. }
  132. // 特殊稿件不显示楼层
  133. if !s.ShowFloor(oid, tp) {
  134. res.Config.ShowFloor = 0
  135. }
  136. return nil
  137. })
  138. g.Wait()
  139. res.Upper.Mid = sub.Mid
  140. return
  141. }
  142. // fillXreplyRes ...
  143. func (s *Service) fillXreplyRes(ctx context.Context, sub *reply.Subject, req *xmodel.ReplyReq, res *xmodel.ReplyRes) {
  144. res.CommonRes = s.replyCommonRes(ctx, req.Mid, req.Oid, req.Type, sub)
  145. res.Notice = s.RplyNotice(ctx, req.Plat, req.Build, req.MobiApp, req.Buvid)
  146. // 过滤掉可能的脏数据
  147. res.Replies = s.FilDelReply(res.Replies)
  148. res.Hots = s.FilDelReply(res.Hots)
  149. // 过滤掉赞数小于3的
  150. res.Hots = fillHot(res.Hots, sub, s.hotNum(req.Oid, req.Type))
  151. res.Cursor.AllCount = sub.ACount
  152. res.Folder = sub.Folder()
  153. }
  154. // Xreply ...
  155. func (s *Service) Xreply(ctx context.Context, req *xmodel.ReplyReq) (res *xmodel.ReplyRes, err error) {
  156. var (
  157. sub *reply.Subject
  158. cursor *reply.Cursor
  159. cursorRes *reply.RootReplyList
  160. pageRes *reply.PageResult
  161. )
  162. res = new(xmodel.ReplyRes)
  163. mode, supportMode := req.ModeInfo(s.sortByHot, s.sortByTime)
  164. switch mode {
  165. case xmodel.ModeOrigin, xmodel.ModeTime:
  166. // 这里原来用的闭区间,所以这里有坑
  167. if req.Cursor.Forward() {
  168. if req.Cursor.Next > 1 {
  169. req.Cursor.Next--
  170. }
  171. } else if req.Cursor.Backward() {
  172. req.Cursor.Prev++
  173. }
  174. if cursor, err = reply.NewCursor(int64(req.Cursor.Next), int64(req.Cursor.Prev), req.Cursor.Ps, reply.OrderDESC); err != nil {
  175. return
  176. }
  177. if req.Cursor.Backward() {
  178. if cursor, err = reply.NewCursor(int64(req.Cursor.Next), int64(req.Cursor.Prev), req.Cursor.Ps, reply.OrderASC); err != nil {
  179. return
  180. }
  181. }
  182. cursorParams := &reply.CursorParams{
  183. IP: req.IP,
  184. Oid: req.Oid,
  185. OTyp: req.Type,
  186. Sort: reply.SortByFloor,
  187. HTMLEscape: false,
  188. Cursor: cursor,
  189. HotSize: s.hotNum(req.Oid, req.Type),
  190. Mid: req.Mid,
  191. }
  192. if cursorRes, err = s.GetRootReplyListByCursor(ctx, cursorParams); err != nil {
  193. return
  194. }
  195. sub = cursorRes.Subject
  196. res.Replies = cursorRes.Roots
  197. if cursorRes.Header != nil {
  198. res.Top.Admin = cursorRes.Header.TopAdmin
  199. res.Top.Upper = cursorRes.Header.TopUpper
  200. res.Hots = cursorRes.Header.Hots
  201. // 纯按楼层排序 去掉热评
  202. if mode == xmodel.ModeTime {
  203. res.Hots = _emptyReplies
  204. }
  205. }
  206. if !sort.SliceIsSorted(res.Replies, func(i, j int) bool { return res.Replies[i].Floor > res.Replies[j].Floor }) {
  207. sort.Slice(res.Replies, func(i, j int) bool { return res.Replies[i].Floor > res.Replies[j].Floor })
  208. }
  209. // 这里原来用的闭区间,所以这里有坑
  210. if req.Cursor.Next == 1 {
  211. res.Replies = _emptyReplies
  212. }
  213. // 由服务端来控制翻页逻辑
  214. res.Cursor = buildResCursor(&xmodel.Cursor{Prev: req.Cursor.Prev, Next: req.Cursor.Next, Ps: req.Cursor.Ps}, res.Replies, xmodel.CursorModeCursor)
  215. case xmodel.ModeHot:
  216. var curPage = req.Cursor.Prev + req.Cursor.Next
  217. if req.Cursor.Latest() {
  218. curPage = 1
  219. }
  220. pageParams := &reply.PageParams{
  221. Mid: req.Mid,
  222. Oid: req.Oid,
  223. Type: req.Type,
  224. Sort: reply.SortByLike,
  225. PageNum: curPage,
  226. PageSize: req.Cursor.Ps,
  227. NeedSecond: true,
  228. Escape: false,
  229. NeedHot: false,
  230. }
  231. if pageRes, err = s.RootReplies(ctx, pageParams); err != nil {
  232. return
  233. }
  234. sub = pageRes.Subject
  235. res.Replies = pageRes.Roots
  236. res.Top.Admin = pageRes.TopAdmin
  237. res.Top.Upper = pageRes.TopUpper
  238. // 按页码翻页控制返回页码
  239. res.Cursor = buildResCursor(&xmodel.Cursor{Prev: req.Cursor.Prev, Next: req.Cursor.Next, Ps: req.Cursor.Ps}, res.Replies, xmodel.CursorModePage)
  240. }
  241. res.Cursor.Mode = mode
  242. res.Cursor.SupportMode = supportMode
  243. s.fillXreplyRes(ctx, sub, req, res)
  244. return
  245. }
  246. // SubFoldedReply ...
  247. func (s *Service) SubFoldedReply(ctx context.Context, req *xmodel.SubFolderReq) (res *xmodel.SubFolderRes, err error) {
  248. var (
  249. rpIDs []int64
  250. rootMap map[int64]*reply.Reply
  251. childrenMap map[int64][]*reply.Reply
  252. rootRps []*reply.Reply
  253. childrenRps []*reply.Reply
  254. sub *reply.Subject
  255. )
  256. res = new(xmodel.SubFolderRes)
  257. if req.Cursor.Backward() {
  258. return
  259. }
  260. cursor := &xmodel.Cursor{
  261. Ps: req.Cursor.Ps,
  262. Next: req.Cursor.Next,
  263. }
  264. if sub, err = s.Subject(ctx, req.Oid, req.Type); err != nil {
  265. return
  266. }
  267. if rpIDs, err = s.foldedReplies(ctx, sub, 0, cursor); err != nil {
  268. return
  269. }
  270. if rootMap, err = s.repliesMap(ctx, req.Oid, req.Type, rpIDs); err != nil {
  271. return
  272. }
  273. if childrenMap, childrenRps, err = s.secondReplies(ctx, sub, rootMap, req.Mid, _secondRepliesPn, _secondRepliesPs); err != nil {
  274. return
  275. }
  276. for _, rpID := range rpIDs {
  277. if r, ok := rootMap[rpID]; ok {
  278. if children, hasChild := childrenMap[rpID]; hasChild {
  279. r.Replies = children
  280. childrenRps = append(childrenRps, children...)
  281. } else {
  282. r.Replies = _emptyReplies
  283. }
  284. rootRps = append(rootRps, r)
  285. }
  286. }
  287. if rootRps != nil {
  288. res.Replies = rootRps
  289. } else {
  290. res.Replies = _emptyReplies
  291. }
  292. var rps []*reply.Reply
  293. rps = append(rps, rootRps...)
  294. rps = append(rps, childrenRps...)
  295. if err = s.buildReply(ctx, sub, rps, req.Mid, false); err != nil {
  296. return
  297. }
  298. res.Cursor = buildResCursor(&xmodel.Cursor{Prev: req.Cursor.Prev, Next: req.Cursor.Next, Ps: req.Cursor.Ps}, res.Replies, xmodel.CursorModeCursor)
  299. res.CommonRes = s.replyCommonRes(ctx, req.Mid, req.Oid, req.Type, sub)
  300. return
  301. }
  302. // RootFoldedReply ...
  303. func (s *Service) RootFoldedReply(ctx context.Context, req *xmodel.RootFolderReq) (res *xmodel.RootFolderRes, err error) {
  304. var (
  305. rpIDs []int64
  306. childrenMap map[int64]*reply.Reply
  307. childrenRps []*reply.Reply
  308. sub *reply.Subject
  309. )
  310. res = new(xmodel.RootFolderRes)
  311. if req.Cursor.Backward() {
  312. return
  313. }
  314. cursor := &xmodel.Cursor{
  315. Ps: req.Cursor.Ps,
  316. Next: req.Cursor.Next,
  317. }
  318. if sub, err = s.Subject(ctx, req.Oid, req.Type); err != nil {
  319. return
  320. }
  321. if rpIDs, err = s.foldedReplies(ctx, sub, req.Root, cursor); err != nil {
  322. return
  323. }
  324. if childrenMap, err = s.repliesMap(ctx, req.Oid, req.Type, rpIDs); err != nil {
  325. return
  326. }
  327. for _, rpID := range rpIDs {
  328. if r, ok := childrenMap[rpID]; ok {
  329. childrenRps = append(childrenRps, r)
  330. }
  331. }
  332. if childrenRps != nil {
  333. res.Replies = childrenRps
  334. } else {
  335. res.Replies = _emptyReplies
  336. }
  337. if err = s.buildReply(ctx, sub, res.Replies, req.Mid, false); err != nil {
  338. return
  339. }
  340. // 只有往下翻
  341. res.Cursor = buildResCursor(&xmodel.Cursor{Prev: req.Cursor.Prev, Next: req.Cursor.Next, Ps: req.Cursor.Ps}, res.Replies, xmodel.CursorModeCursor)
  342. res.CommonRes = s.replyCommonRes(ctx, req.Mid, req.Oid, req.Type, sub)
  343. return
  344. }
  345. // foldedReplies ...
  346. func (s *Service) foldedReplies(ctx context.Context, sub *reply.Subject, root int64, cursor *xmodel.Cursor) (rpIDs []int64, err error) {
  347. var (
  348. kind string
  349. ID int64
  350. ok bool
  351. )
  352. if root == 0 {
  353. kind = xmodel.FolderKindSub
  354. ID = sub.Oid
  355. } else {
  356. kind = xmodel.FolderKindRoot
  357. ID = root
  358. }
  359. if ok, err = s.dao.Redis.ExpireFolder(ctx, kind, ID); err != nil {
  360. return
  361. }
  362. if ok {
  363. if rpIDs, err = s.dao.Redis.FolderByCursor(ctx, kind, ID, cursor); err != nil {
  364. return
  365. }
  366. } else {
  367. if rpIDs, err = s.dao.Reply.FoldedRepliesCursor(ctx, sub.Oid, sub.Type, root, cursor); err != nil {
  368. return
  369. }
  370. s.cache.Do(ctx, func(ctx context.Context) {
  371. s.dao.Databus.RecoverFolderIdx(ctx, sub.Oid, sub.Type, root)
  372. })
  373. }
  374. return
  375. }