xreply.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. package xreply
  2. import "go-common/app/interface/main/reply/model/reply"
  3. // const
  4. const (
  5. MaxPageSize = 50
  6. ModeOrigin = 1 // origin
  7. ModeTime = 2 // sort by time
  8. ModeHot = 3 // sort by hot
  9. FolderKindSub = "s"
  10. FolderKindRoot = "r"
  11. CursorModePage = 1 // pn ps翻页的
  12. CursorModeCursor = 2 // 按游标翻页的
  13. )
  14. type ReplyReq struct {
  15. CommonReq
  16. ReplyCommonReq
  17. Cursor CursorReq
  18. }
  19. var (
  20. _SupportModeAll = []int{ModeOrigin, ModeTime, ModeHot}
  21. _SupportModeOrigin = []int{ModeOrigin}
  22. )
  23. // ...
  24. func (req *ReplyReq) ModeInfo(hotMap map[int64]int8, floorMap map[int64]int8) (mode int, supportMode []int) {
  25. supportMode = _SupportModeAll
  26. switch req.Cursor.Mode {
  27. case ModeHot:
  28. mode = ModeHot
  29. case ModeTime:
  30. mode = ModeTime
  31. case ModeOrigin:
  32. mode = ModeOrigin
  33. supportMode = _SupportModeOrigin
  34. default:
  35. if tp, ok := hotMap[req.Oid]; ok && tp == req.Type {
  36. mode = ModeHot
  37. } else if tp, ok := floorMap[req.Oid]; ok && tp == req.Type {
  38. mode = ModeTime
  39. } else {
  40. mode = ModeOrigin
  41. supportMode = _SupportModeOrigin
  42. }
  43. }
  44. return
  45. }
  46. type ReplyRes struct {
  47. Cursor CursorRes `json:"cursor"`
  48. Hots []*reply.Reply `json:"hots"`
  49. Notice *reply.Notice `json:"notice"`
  50. Replies []*reply.Reply `json:"replies"`
  51. Top TopReply `json:"top"`
  52. Folder reply.Folder `json:"folder"`
  53. CommonRes
  54. }
  55. type CommonRes struct {
  56. Assist int `json:"assist"`
  57. Blacklist int `json:"blacklist"`
  58. Config ReplyConfig `json:"config"`
  59. Upper Upper `json:"upper"`
  60. }
  61. type TopReply struct {
  62. Admin *reply.Reply `json:"admin"`
  63. Upper *reply.Reply `json:"upper"`
  64. }
  65. type Upper struct {
  66. Mid int64 `json:"mid"`
  67. }
  68. type ReplyConfig struct {
  69. ShowAdmin int8 `json:"showadmin"`
  70. ShowEntry int8 `json:"showentry"`
  71. ShowFloor int8 `json:"showfloor"`
  72. }
  73. // CommonReq ...
  74. type CommonReq struct {
  75. Plat int8 `form:"plat"`
  76. Build int64 `form:"build"`
  77. Buvid string `form:"buvid"`
  78. MobiApp string `form:"mobi_app"`
  79. Mid int64 `form:"mid"`
  80. IP string `form:"ip`
  81. }
  82. // ReplyCommonReq ...
  83. type ReplyCommonReq struct {
  84. Oid int64 `form:"oid" validate:"required"`
  85. Type int8 `form:"type" validate:"required"`
  86. }
  87. // Cursor Common Cursor
  88. type Cursor struct {
  89. IsBegin bool `json:"is_begin"`
  90. Prev int `json:"prev"`
  91. Next int `json:"next"`
  92. IsEnd bool `json:"is_end"`
  93. Ps int `json:"ps"`
  94. }
  95. // Latest ...
  96. func (c *Cursor) Latest() bool {
  97. return c.Next == 0 && c.Prev == 0
  98. }
  99. // Forward ...
  100. func (c *Cursor) Forward() bool {
  101. return c.Next != 0
  102. }
  103. // Backward ...
  104. func (c *Cursor) Backward() bool {
  105. return c.Prev != 0
  106. }
  107. // CursorRes ...
  108. type CursorRes struct {
  109. AllCount int `json:"all_count,omitempty"`
  110. IsBegin bool `json:"is_begin"`
  111. Prev int `json:"prev"`
  112. Next int `json:"next"`
  113. IsEnd bool `json:"is_end"`
  114. Ps int `json:"ps,omitempty"`
  115. Mode int `json:"mode,omitempty"`
  116. SupportMode []int `json:"support_mode,omitempty"`
  117. }
  118. // CursorReq ...
  119. type CursorReq struct {
  120. Ps int `form:"ps" validate:"omitempty,min=1,max=50" default:"20"`
  121. Prev int `form:"prev"`
  122. Next int `form:"next"`
  123. Mode int `form:"mode"`
  124. }
  125. // Legal ...
  126. func (cq *CursorReq) Legal() bool {
  127. if cq.Next != 0 && cq.Prev != 0 {
  128. return false
  129. }
  130. return true
  131. }
  132. func (cq *CursorReq) Forward() bool {
  133. return cq.Next != 0
  134. }
  135. func (cq *CursorReq) Backward() bool {
  136. return cq.Prev != 0
  137. }
  138. // Latest ...
  139. func (cq *CursorReq) Latest() bool {
  140. if cq.Next == 0 && cq.Prev == 0 {
  141. return true
  142. }
  143. return false
  144. }
  145. type SubFolderReq struct {
  146. CommonReq
  147. ReplyCommonReq
  148. Cursor CursorReq
  149. }
  150. type RootFolderReq struct {
  151. CommonReq
  152. ReplyCommonReq
  153. Cursor CursorReq
  154. Root int64 `form:"root" validate:"required"`
  155. }
  156. type SubFolderRes struct {
  157. Cursor CursorRes `json:"cursor"`
  158. Replies []*reply.Reply `json:"replies"`
  159. CommonRes
  160. }
  161. type RootFolderRes struct {
  162. Cursor CursorRes `json:"cursor"`
  163. Replies []*reply.Reply `json:"replies"`
  164. CommonRes
  165. }