converge.go 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package operate
  2. import (
  3. "encoding/json"
  4. "strconv"
  5. "go-common/app/interface/main/app-card/model"
  6. "go-common/library/log"
  7. )
  8. type Converge struct {
  9. ID int64 `json:"id,omitempty"`
  10. ReType int `json:"re_type,omitempty"`
  11. ReValue string `json:"re_value,omitempty"`
  12. Title string `json:"title,omitempty"`
  13. Cover string `json:"cover,omitempty"`
  14. Content json.RawMessage `json:"content,omitempty"`
  15. // extra
  16. Items []*Converge `json:"contents,omitempty"`
  17. Goto model.Gt `json:"goto,omitempty"`
  18. Pid int64 `json:"pid,omitempty"`
  19. Param string `json:"param,omitempty"`
  20. URI string `json:"uri,omitempty"`
  21. }
  22. func (c *Converge) Change() {
  23. var contents []*struct {
  24. Ctype string `json:"ctype,omitempty"`
  25. Cvalue string `json:"cvalue,omitempty"`
  26. }
  27. if err := json.Unmarshal(c.Content, &contents); err != nil {
  28. log.Error("%+v", err)
  29. return
  30. }
  31. c.Goto = model.OperateType[c.ReType]
  32. c.Param = c.ReValue
  33. c.URI = model.FillURI(c.Goto, c.Param, nil)
  34. c.Items = make([]*Converge, 0, len(contents))
  35. for _, content := range contents {
  36. var gt model.Gt
  37. id, _ := strconv.ParseInt(content.Cvalue, 10, 64)
  38. if id == 0 {
  39. continue
  40. }
  41. switch content.Ctype {
  42. case "0":
  43. gt = model.GotoAv
  44. case "1":
  45. gt = model.GotoLive
  46. case "2":
  47. gt = model.GotoArticle
  48. default:
  49. continue
  50. }
  51. c.Items = append(c.Items, &Converge{Pid: id, Goto: gt})
  52. }
  53. }