live.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package live
  2. import "encoding/json"
  3. // Feed is live feed
  4. type Feed struct {
  5. Count int `json:"count"`
  6. Lives []*Room `json:"lives"`
  7. }
  8. // Recommend is live recommend
  9. type Recommend struct {
  10. Count int `json:"count"`
  11. Lives struct {
  12. Subject []*Room `json:"subject"`
  13. Hot []*Room `json:"hot"`
  14. } `json:"lives"`
  15. }
  16. type Room struct {
  17. Owner struct {
  18. Face string `json:"face"`
  19. Mid int `json:"mid"`
  20. Name string `json:"name"`
  21. } `json:"owner"`
  22. Cover struct {
  23. Src string `json:"src"`
  24. Height int `json:"height"`
  25. Width int `json:"width"`
  26. } `json:"cover"`
  27. Title string `json:"title"`
  28. ID int64 `json:"room_id"`
  29. Online int `json:"online"`
  30. Area string `json:"area"`
  31. AreaID int `json:"area_id"`
  32. }
  33. type TopicHot struct {
  34. TID int `json:"topic_id"`
  35. TName string `json:"topic_name"`
  36. Picture string `json:"picture"`
  37. ImageURL string `json:"-"`
  38. }
  39. type TopicImage struct {
  40. ImageSrc string `json:"image_src"`
  41. ImageWidth int `json:"image_width"`
  42. ImageHeight int `json:"image_height"`
  43. }
  44. func (t *TopicHot) TopicJSONChange() (err error) {
  45. var tmp TopicImage
  46. if err = json.Unmarshal([]byte(t.Picture), &tmp); err != nil {
  47. return
  48. }
  49. t.ImageURL = tmp.ImageSrc
  50. return
  51. }