recommend.go 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package recommend
  2. import (
  3. "go-common/app/interface/main/app-show/model/card"
  4. )
  5. // Arc is index show recommend.
  6. type Arc struct {
  7. Aid interface{} `json:"aid"`
  8. Author string `json:"author"`
  9. Title string `json:"title"`
  10. Description string `json:"description"`
  11. Pic string `json:"pic"`
  12. Views interface{} `json:"play"`
  13. Comments int64 `json:"review"`
  14. Coins int64 `json:"coins"`
  15. Danmaku int `json:"video_review"`
  16. Favorites int64 `json:"favorites"`
  17. Pts int64 `json:"pts"`
  18. Others []*Arc `json:"others"`
  19. }
  20. type List struct {
  21. Aid int64 `json:"aid"`
  22. Desc string `json:"desc"`
  23. CornerMark int8 `json:"corner_mark"`
  24. }
  25. type CardList struct {
  26. ID int64 `json:"id"`
  27. Goto string `json:"goto"`
  28. FromType string `json:"from_type"`
  29. Desc string `json:"desc"`
  30. CornerMark int8 `json:"corner_mark"`
  31. Condition []*CardCondition `json:"condition"`
  32. }
  33. type CardCondition struct {
  34. Plat int8 `json:"plat"`
  35. Condition string `json:"conditions"`
  36. Build int `json:"build"`
  37. }
  38. func (c *CardList) CardListChange() (p *card.PopularCard) {
  39. p = &card.PopularCard{
  40. Value: c.ID,
  41. Type: c.Goto,
  42. FromType: c.FromType,
  43. Reason: c.Desc,
  44. CornerMark: c.CornerMark,
  45. }
  46. if p.Reason != "" {
  47. p.ReasonType = 3
  48. }
  49. if len(c.Condition) > 0 {
  50. tmpcondition := map[int8][]*card.PopularCardPlat{}
  51. for _, condition := range c.Condition {
  52. tmpcondition[condition.Plat] = append(tmpcondition[condition.Plat], &card.PopularCardPlat{
  53. Plat: condition.Plat,
  54. Condition: condition.Condition,
  55. Build: condition.Build,
  56. })
  57. }
  58. p.PopularCardPlat = tmpcondition
  59. }
  60. return
  61. }