schematic.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. package model
  2. import (
  3. "encoding/json"
  4. "time"
  5. )
  6. type Schematic struct {
  7. ID string `json:"id,omitempty" bson:"_id,omitempty"`
  8. Manufacturer string `json:"manufacturer" bson:"manufacturer,omitempty"`
  9. Model string `json:"model" bson:"model,omitempty"`
  10. SubTitle string `json:"subtitle" bson:"subtitle,omitempty"`
  11. Tags []string `json:"tags" bson:"tags,omitempty,inline"`
  12. Description string `json:"description" bson:"description,omitempty"`
  13. PrivateFile bool `json:"privateFile" bson:"privateFile,omitempty"`
  14. Owner string `json:"owner" bson:"Owner,omitempty"`
  15. Files []string `json:"files" bson:"files,omitempty,inline"`
  16. ForeignId string `json:"foreignId" bson:"foreignId,omitempty"`
  17. CreatedAt time.Time `json:"createdAt" bson:"createdAt,omitempty"`
  18. LastModifiedAt time.Time `json:"lastModifiedAt" bson:"lastModifiedAt,omitempty"`
  19. BuildIn time.Time `json:"buildIn" bson:"buildIn,omitempty"`
  20. BuildTO time.Time `json:"buildTO" bson:"buildTO,omitempty"`
  21. }
  22. func (s *Schematic) UnmarshalJSON(data []byte) error {
  23. var dat map[string]interface{}
  24. if err := json.Unmarshal(data, &dat); err != nil {
  25. return err
  26. }
  27. s.ID = dat["id"].(string)
  28. if dat["manufacturer"] != nil {
  29. s.Manufacturer = dat["manufacturer"].(string)
  30. }
  31. if dat["model"] != nil {
  32. s.Model = dat["model"].(string)
  33. }
  34. if dat["subtitle"] != nil {
  35. s.SubTitle = dat["subtitle"].(string)
  36. }
  37. if dat["tags"] != nil {
  38. values := dat["tags"].([]interface{})
  39. s.Tags = make([]string, len(values))
  40. for i, d := range values {
  41. s.Tags[i] = d.(string)
  42. }
  43. }
  44. if dat["description"] != nil {
  45. s.Description = dat["description"].(string)
  46. }
  47. if dat["privateFile"] != nil {
  48. s.PrivateFile = dat["privateFile"].(float64) > 0
  49. }
  50. if dat["owner"] != nil {
  51. s.Owner = dat["owner"].(string)
  52. }
  53. if dat["files"] != nil {
  54. values := dat["files"].([]interface{})
  55. s.Files = make([]string, len(values))
  56. for i, d := range values {
  57. s.Files[i] = d.(string)
  58. }
  59. }
  60. if dat["foreignId"] != nil {
  61. s.ForeignId = dat["foreignId"].(string)
  62. }
  63. if dat["createdAt"] != nil {
  64. s.CreatedAt = time.Unix(0, int64(dat["createdAt"].(float64))*int64(time.Millisecond))
  65. }
  66. if dat["lastModifiedAt"] != nil {
  67. s.LastModifiedAt = time.Unix(0, int64(dat["lastModifiedAt"].(float64))*int64(time.Millisecond))
  68. }
  69. // if dat["buildIn"] != nil {
  70. // s.BuildIn = dat["buildIn"].(string)
  71. // }
  72. // if dat["buildTO"] != nil {
  73. // s.BuildTO = dat["buildTO"].(string)
  74. // }
  75. return nil
  76. }