follow.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package operate
  2. import (
  3. "encoding/json"
  4. "go-common/app/interface/main/app-card/model"
  5. "go-common/library/log"
  6. )
  7. type Follow struct {
  8. ID int64 `json:"id,omitempty"`
  9. Type string `json:"type,omitempty"`
  10. Title string `json:"title,omitempty"`
  11. Content json.RawMessage `json:"content,omitempty"`
  12. // extra
  13. Items []*Follow `json:"items,omitempty"`
  14. Goto model.Gt `json:"goto,omitempty"`
  15. Pid int64 `json:"pid,omitempty"`
  16. Tid int64 `json:"tid,omitempty"`
  17. }
  18. func (c *Follow) Change() {
  19. switch c.Type {
  20. case "upper", "channel_three":
  21. var contents []*struct {
  22. Ctype string `json:"ctype,omitempty"`
  23. Cvalue int64 `json:"cvalue,omitempty"`
  24. }
  25. if err := json.Unmarshal(c.Content, &contents); err != nil {
  26. log.Error("%+v", err)
  27. return
  28. }
  29. items := make([]*Follow, 0, len(contents))
  30. for _, content := range contents {
  31. item := &Follow{Type: content.Ctype, Pid: content.Cvalue}
  32. switch content.Ctype {
  33. case "mid":
  34. item.Goto = model.GotoMid
  35. case "channel_id":
  36. item.Goto = model.GotoTag
  37. }
  38. items = append(items, item)
  39. }
  40. if len(items) < 3 {
  41. return
  42. }
  43. c.Items = items
  44. case "channel_single":
  45. var content struct {
  46. Aid int64 `json:"aid"`
  47. ChannelID int64 `json:"channel_id"`
  48. }
  49. if err := json.Unmarshal(c.Content, &content); err != nil {
  50. log.Error("%+v", err)
  51. return
  52. }
  53. c.Pid = content.Aid
  54. c.Tid = content.ChannelID
  55. }
  56. }