search.go 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. package search
  2. import (
  3. "go-common/app/interface/main/creative/model/archive"
  4. "go-common/app/interface/main/creative/model/music"
  5. "go-common/app/interface/main/creative/model/reply"
  6. )
  7. const (
  8. //All for all of reply type.
  9. All = 0
  10. //Archive for reply type.
  11. Archive = 1
  12. //Article for reply type.
  13. Article = 12
  14. //Audio for reply type.
  15. Audio = 14
  16. //SmallVideo for reply type.
  17. SmallVideo = 5
  18. )
  19. // Result search list.
  20. type Result struct {
  21. Class *ClassCount `json:"class"`
  22. Applies *ApplyStateCount `json:"apply_count"`
  23. Type map[int16]*TypeCount `json:"-"`
  24. ArrType []*TypeCount `json:"type"`
  25. OldArchives []*archive.OldArchiveVideoAudit `json:"archives"`
  26. Archives []*archive.ArcVideoAudit `json:"arc_audits"`
  27. Page struct {
  28. Pn int `json:"pn"`
  29. Ps int `json:"ps"`
  30. Count int `json:"count"`
  31. } `json:"page"`
  32. Aids []int64 `json:"-"` // from search, call archiveRPC
  33. Tip string `json:"tip"`
  34. }
  35. // StaffApplyResult search list.
  36. type StaffApplyResult struct {
  37. StateCount *ApplyStateCount `json:"state_count"`
  38. Type map[int16]*TypeCount `json:"-"`
  39. ArrType []*TypeCount `json:"type"`
  40. Applies []*StaffApply `json:"applies"`
  41. Page struct {
  42. Pn int `json:"pn"`
  43. Ps int `json:"ps"`
  44. Count int `json:"count"`
  45. } `json:"page"`
  46. Aids []int64 `json:"-"` // from search, call archiveRPC
  47. }
  48. // StaffApply str
  49. type StaffApply struct {
  50. ID int64 `json:"id"`
  51. Type int8 `json:"type"`
  52. Mid int64 `json:"mid"`
  53. Uname string `json:"uname"`
  54. State int8 `json:"state"`
  55. ApplyTitle string `json:"apply_title"`
  56. ApplyState int8 `json:"apply_state"`
  57. Archive *archive.ArcVideoAudit `json:"arc_audits"`
  58. }
  59. // ApplyStateCount pub count.
  60. type ApplyStateCount struct {
  61. Neglected int `json:"neglected"`
  62. Pending int `json:"pending"`
  63. Processed int `json:"processed"`
  64. }
  65. // ClassCount pub count.
  66. type ClassCount struct {
  67. Pubed int `json:"pubed"`
  68. NotPubed int `json:"not_pubed"`
  69. Pubing int `json:"is_pubing"`
  70. }
  71. // TypeCount archive count for a type.
  72. type TypeCount struct {
  73. Tid int16 `json:"tid"`
  74. Name string `json:"name"`
  75. Count int64 `json:"count"`
  76. }
  77. // Reply str
  78. type Reply struct {
  79. Message string `json:"message"`
  80. ID int64 `json:"id"`
  81. Floor int64 `json:"floor"`
  82. Count int `json:"count"`
  83. Root int64 `json:"root"`
  84. Oid int64 `json:"oid"`
  85. CTime string `json:"ctime"`
  86. MTime string `json:"mtime"`
  87. State int `json:"state"`
  88. Parent int64 `json:"parent"`
  89. Mid int64 `json:"mid"`
  90. Like int `json:"like"`
  91. Replier string `json:"replier"`
  92. Uface string `json:"uface"`
  93. Cover string `json:"cover"`
  94. Title string `json:"title"`
  95. Relation int `json:"relation"`
  96. IsElec int `json:"is_elec"`
  97. Type int `json:"type"`
  98. RootInfo *reply.Reply `json:"root_info"`
  99. ParentInfo *reply.Reply `json:"parent_info"`
  100. }
  101. //Replies for reply list.
  102. type Replies struct {
  103. SeID string `json:"seid"`
  104. Order string `json:"order"`
  105. Keyword string `json:"keyword"`
  106. Total int `json:"total"`
  107. PageCount int `json:"pagecount"`
  108. Repliers []int64 `json:"repliers"`
  109. DeriveOids []int64 `json:"-"`
  110. DeriveIds []int64 `json:"-"`
  111. Oids []int64 `json:"-"`
  112. TyOids map[int][]int64 `json:"-"`
  113. Result []*Reply `json:"result"`
  114. }
  115. //SimpleResult for archives simple result.
  116. type SimpleResult struct {
  117. ArchivesVideos []*SimpleArcVideos `json:"simple_arc_videos"`
  118. Class *ClassCount `json:"class"`
  119. Page struct {
  120. Pn int `json:"pn"`
  121. Ps int `json:"ps"`
  122. Count int `json:"count"`
  123. } `json:"page"`
  124. }
  125. //SimpleArcVideos for search archive & vidoes.
  126. type SimpleArcVideos struct {
  127. Archive *archive.SimpleArchive `json:"archive"`
  128. Videos []*archive.SimpleVideo `json:"videos"`
  129. }
  130. // ArcParam for es search param.
  131. type ArcParam struct {
  132. MID int64
  133. AID int64
  134. TypeID int64
  135. Pn int
  136. Ps int
  137. State string
  138. Keyword string
  139. Order string
  140. }
  141. // Arc for search archive.
  142. type Arc struct {
  143. ID int64 `json:"id"`
  144. TypeID int64 `json:"typeid"`
  145. PID int64 `json:"pid"`
  146. State int64 `json:"state"`
  147. Duration int64 `json:"duration"`
  148. Title string `json:"title"`
  149. Cover string `json:"cover"`
  150. Desc string `json:"description"`
  151. PubDate string `json:"pubdate"`
  152. }
  153. // Pager for es page.
  154. type Pager struct {
  155. Num int `json:"num"`
  156. Size int `json:"size"`
  157. Total int `json:"total"`
  158. }
  159. // DCount for state count.
  160. type DCount struct {
  161. Count int `json:"doc_count"`
  162. }
  163. // PList for state count list.
  164. type PList struct {
  165. IsPubing DCount `json:"is_pubing"`
  166. NotPubed DCount `json:"not_pubed"`
  167. Pubed DCount `json:"pubed"`
  168. Pending DCount `json:"pending"`
  169. }
  170. // TList for type count list.
  171. type TList struct {
  172. DCount
  173. Key string `json:"key"`
  174. }
  175. // ArcResult archive list from search.
  176. type ArcResult struct {
  177. Page *Pager `json:"page"`
  178. Result struct {
  179. Vlist []*Arc `json:"vlist"`
  180. PList *PList `json:"plist"`
  181. TList []*TList `json:"tlist"`
  182. } `json:"result"`
  183. }
  184. // ReliesES str
  185. type ReliesES struct {
  186. Order string `json:"order"`
  187. Sort string `json:"sort"`
  188. Page *Pager `json:"page"`
  189. Result []*ReplyES `json:"result"`
  190. }
  191. // ReplyES str
  192. type ReplyES struct {
  193. Count int `json:"count"`
  194. CTime string `json:"ctime"`
  195. Floor int64 `json:"floor"`
  196. Hate int64 `json:"hate"`
  197. ID int64 `json:"id"`
  198. Like int `json:"like"`
  199. Message string `json:"message"`
  200. Mid int64 `json:"mid"`
  201. MTime string `json:"mtime"`
  202. OMid int64 `json:"o_mid"`
  203. Oid int64 `json:"oid"`
  204. Parent int64 `json:"parent"`
  205. Rcount int64 `json:"rcount"`
  206. Root int64 `json:"root"`
  207. State int `json:"state"`
  208. Type int `json:"type"`
  209. }
  210. //ReplyParam str
  211. type ReplyParam struct {
  212. Ak string
  213. Ck string
  214. OMID int64
  215. OID int64
  216. Pn int
  217. Ps int
  218. IsReport int8
  219. Type int8
  220. ResMdlPlat int8
  221. FilterCtime string
  222. Kw string
  223. Order string
  224. IP string
  225. }
  226. // Bgm str
  227. type Bgm struct {
  228. SID int64 `json:"sid"`
  229. }
  230. // BgmResult str
  231. type BgmResult struct {
  232. Page *Pager `json:"page"`
  233. Result []*Bgm `json:"result"`
  234. }
  235. // MaterialRel str
  236. type MaterialRel struct {
  237. AID int64 `json:"aid"`
  238. }
  239. // BgmExtResult str
  240. type BgmExtResult struct {
  241. Page *Pager `json:"page"`
  242. Result []*MaterialRel `json:"result"`
  243. }
  244. // BgmSearchRes str
  245. type BgmSearchRes struct {
  246. Pager *Pager `json:"pager"`
  247. Bgms []*music.Music `json:"bgm"`
  248. }
  249. // ApplyResult apply list from search.
  250. type ApplyResult struct {
  251. Page *Pager `json:"page"`
  252. Result struct {
  253. Vlist []*Arc `json:"vlist"`
  254. ApplyPList *ApplyPList `json:"plist"`
  255. TList []*TList `json:"tlist"`
  256. } `json:"result"`
  257. }
  258. // ApplyPList for apply state count list.
  259. type ApplyPList struct {
  260. Neglected DCount `json:"neglected"`
  261. Pending DCount `json:"pending"`
  262. Processed DCount `json:"processed"`
  263. }