daily.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package daily
  2. import (
  3. xtime "go-common/library/time"
  4. "strconv"
  5. "go-common/app/interface/main/app-show/model"
  6. "go-common/app/service/main/archive/api"
  7. )
  8. // Show is module.
  9. type Show struct {
  10. *Head
  11. Body []*Item `json:"body"`
  12. }
  13. // Head is show head.
  14. type Head struct {
  15. ID int `json:"-"`
  16. ColumnID int `json:"column_id,omitempty"`
  17. Plat int8 `json:"-"`
  18. Title string `json:"title"`
  19. Desc string `json:"desc"`
  20. Rank int `json:"-"`
  21. Build int `json:"-"`
  22. Condition string `json:"-"`
  23. Date int64 `json:"date,omitempty"`
  24. Cover string `json:"cover,omitempty"`
  25. Type string `json:"type,omitempty"`
  26. Goto string `json:"goto,omitempty"`
  27. Param string `json:"param,omitempty"`
  28. URI string `json:"uri,omitempty"`
  29. }
  30. type Item struct {
  31. Title string `json:"title"`
  32. Cover string `json:"cover"`
  33. URI string `json:"uri"`
  34. Param string `json:"param"`
  35. Goto string `json:"goto"`
  36. // up
  37. Name string `json:"name,omitempty"`
  38. // stat
  39. Play int `json:"play,omitempty"`
  40. Danmaku int `json:"danmaku,omitempty"`
  41. Reply int `json:"reply,omitempty"`
  42. Fav int `json:"favourite,omitempty"`
  43. // movie and bangumi badge
  44. Status int8 `json:"status,omitempty"`
  45. CoverMark string `json:"cover_mark,omitempty"`
  46. // ranking
  47. Pts int64 `json:"pts,omitempty"`
  48. // av
  49. PubDate xtime.Time `json:"pubdate"`
  50. // av stat
  51. Duration int64 `json:"duration,omitempty"`
  52. // region
  53. Rid int `json:"rid,omitempty"`
  54. Rname string `json:"rname,omitempty"`
  55. // tag
  56. TagID int64 `json:"tag_id,omitempty"`
  57. TagName string `json:"tag_name,omitempty"`
  58. }
  59. // ColumnList
  60. type ColumnList struct {
  61. Cid int `json:"cid,omitempty"`
  62. Ceid int `json:"ceid,omitempty"`
  63. Name string `json:"name,omitempty"`
  64. Cname string `json:"-"`
  65. Children []*ColumnList `json:"children,omitempty"`
  66. }
  67. // FromArchivePB from archive.
  68. func (i *Item) FromArchivePB(a *api.Arc) {
  69. i.Title = a.Title
  70. i.Cover = a.Pic
  71. i.Param = strconv.FormatInt(a.Aid, 10)
  72. i.URI = model.FillURI(model.GotoAv, i.Param, nil)
  73. i.Goto = model.GotoAv
  74. i.Play = int(a.Stat.View)
  75. i.Danmaku = int(a.Stat.Danmaku)
  76. i.Name = a.Author.Name
  77. i.Reply = int(a.Stat.Reply)
  78. i.Fav = int(a.Stat.Fav)
  79. i.PubDate = a.PubDate
  80. i.Rid = int(a.TypeID)
  81. i.Rname = a.TypeName
  82. i.Duration = a.Duration
  83. if a.Access > 0 {
  84. i.Play = 0
  85. }
  86. }