history.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package history
  2. import (
  3. hismodel "go-common/app/interface/main/history/model"
  4. "go-common/app/interface/main/tv/model"
  5. )
  6. // HisRes is the history resource model
  7. type HisRes struct {
  8. Mid int64 `json:"mid,omitempty"`
  9. Oid int64 `json:"oid"` //
  10. Sid int64 `json:"season_id,omitempty"`
  11. Epid int64 `json:"epid,omitempty"`
  12. Cid int64 `json:"cid,omitempty"`
  13. Business string `json:"-"`
  14. DT int8 `json:"dt,omitempty"`
  15. Pro int64 `json:"pro"`
  16. PageDuration int64 `json:"duration"`
  17. Unix int64 `json:"view_at"`
  18. Type int `json:"type"` // 1=pgc, 2=ugc
  19. Title string `json:"title"` // common
  20. Cover string `json:"cover"` // common
  21. Page *HisPage `json:"page,omitempty"` // ugc page
  22. EPMeta *HisEP `json:"bangumi,omitempty"` // pgc ep
  23. CornerMark *model.SnVipCorner `json:"cornermark"`
  24. }
  25. // HisEP is history EP struct
  26. type HisEP struct {
  27. EPID int64 `json:"ep_id"`
  28. Cover string `json:"cover"`
  29. Title string `json:"title"`
  30. LongTitle string `json:"long_title"`
  31. }
  32. // HisPage is history page struct
  33. type HisPage struct {
  34. CID int64 `json:"cid"`
  35. Part string `json:"part"`
  36. Page int `json:"page"`
  37. }
  38. // HisMC is history structure in MC
  39. type HisMC struct {
  40. MID int64
  41. Res []*HisRes
  42. LastViewAt int64 // timestamp the first view_at of cursor
  43. }
  44. // Dur is duration struct
  45. type Dur struct {
  46. Oid int64
  47. Duration int64
  48. }
  49. // RespCacheHis is the the response of cacheHis function
  50. type RespCacheHis struct {
  51. Filtered []*HisRes
  52. Res []*hismodel.Resource
  53. UseCache bool
  54. }
  55. // ReqCombineHis is the request for the combineHis function
  56. type ReqCombineHis struct {
  57. Mid int64
  58. OriRes []*hismodel.Resource
  59. OkSids map[int64]int
  60. OkAids map[int64]int
  61. }