tab.go 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package tab
  2. import (
  3. "encoding/json"
  4. "strconv"
  5. "go-common/library/log"
  6. xtime "go-common/library/time"
  7. )
  8. type Menu struct {
  9. ID int64 `json:"id,omitempty"`
  10. Name string `json:"name,omitempty"`
  11. Img string `json:"img,omitempty"`
  12. Icon string `json:"icon,omitempty"`
  13. Color string `json:"color,omitempty"`
  14. TabID int64 `json:"tab_id,omitempty"`
  15. Plat int `json:"-"`
  16. CType int `json:"-"`
  17. CValue string `json:"-"`
  18. PlatVersion json.RawMessage `json:"-"`
  19. STime xtime.Time `json:"-"`
  20. ETime xtime.Time `json:"-"`
  21. Status int `json:"-"`
  22. Badge string `json:"-"`
  23. Versions map[int8][]*Version `json:"-"`
  24. }
  25. type Version struct {
  26. PlatStr string `json:"plat"`
  27. BuildStr string `json:"build"`
  28. Condition string `json:"conditions"`
  29. Plat int8 `json:"-"`
  30. Build int `json:"-"`
  31. }
  32. func (m *Menu) Change() {
  33. m.Icon = m.Badge
  34. var vs []*Version
  35. if err := json.Unmarshal(m.PlatVersion, &vs); err != nil {
  36. log.Error("json.Unmarshal(%s) error(%v)", m.PlatVersion, err)
  37. return
  38. }
  39. vm := make(map[int8][]*Version, len(vs))
  40. for _, v := range vs {
  41. if v.PlatStr == "" || v.BuildStr == "" {
  42. continue
  43. }
  44. if plat, err := strconv.ParseInt(v.PlatStr, 10, 8); err != nil {
  45. log.Error("strconv.ParseInt(%s,10,8) error(%v)", v.PlatStr, err)
  46. continue
  47. } else {
  48. v.Plat = int8(plat)
  49. }
  50. if build, err := strconv.Atoi(v.BuildStr); err != nil {
  51. log.Error("strconv.Atoi(%s) error(%v)", v.BuildStr, err)
  52. continue
  53. } else {
  54. v.Build = build
  55. }
  56. vm[v.Plat] = append(vm[v.Plat], v)
  57. }
  58. m.Versions = vm
  59. if m.CType == 1 {
  60. var err error
  61. if m.ID, err = strconv.ParseInt(m.CValue, 10, 64); err != nil {
  62. log.Error("strconv.ParseInt(%s) error(%v)", m.CValue, err)
  63. return
  64. }
  65. }
  66. }