schematic.go 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package model
  2. import (
  3. "encoding/json"
  4. "time"
  5. "go.mongodb.org/mongo-driver/bson/primitive"
  6. )
  7. type Schematic struct {
  8. ID primitive.ObjectID `json:"id,omitempty" bson:"_id,omitempty"`
  9. Manufacturer string `json:"manufacturer" bson:"manufacturer,omitempty"`
  10. Model string `json:"model" bson:"model,omitempty"`
  11. SubTitle string `json:"subtitle" bson:"subtitle,omitempty"`
  12. Tags []string `json:"tags" bson:"tags,omitempty"`
  13. Description string `json:"description" bson:"description,omitempty"`
  14. PrivateFile bool `json:"privateFile" bson:"privateFile,omitempty"`
  15. Owner string `json:"owner" bson:"owner,omitempty"`
  16. Files map[string]string `json:"files" bson:"files,omitempty"`
  17. ForeignId string `json:"foreignId" bson:"foreignId,omitempty"`
  18. CreatedAt time.Time `json:"createdAt" bson:"createdAt,omitempty"`
  19. LastModifiedAt time.Time `json:"lastModifiedAt" bson:"lastModifiedAt,omitempty"`
  20. BuildIn time.Time `json:"buildIn" bson:"buildIn,omitempty"`
  21. BuildTO time.Time `json:"buildTO" bson:"buildTO,omitempty"`
  22. }
  23. func (s *Schematic) UnmarshalJSON(data []byte) error {
  24. var dat map[string]interface{}
  25. if err := json.Unmarshal(data, &dat); err != nil {
  26. return err
  27. }
  28. if dat["id"] != nil {
  29. id, _ := primitive.ObjectIDFromHex(dat["id"].(string))
  30. s.ID = id
  31. }
  32. if dat["manufacturer"] != nil {
  33. s.Manufacturer = dat["manufacturer"].(string)
  34. }
  35. if dat["model"] != nil {
  36. s.Model = dat["model"].(string)
  37. }
  38. if dat["subtitle"] != nil {
  39. s.SubTitle = dat["subtitle"].(string)
  40. }
  41. if dat["tags"] != nil {
  42. values := dat["tags"].([]interface{})
  43. s.Tags = make([]string, len(values))
  44. for i, d := range values {
  45. s.Tags[i] = d.(string)
  46. }
  47. }
  48. if dat["description"] != nil {
  49. s.Description = dat["description"].(string)
  50. }
  51. if dat["privateFile"] != nil {
  52. switch v := dat["privateFile"].(type) {
  53. case float64:
  54. s.PrivateFile = v > 0
  55. case int:
  56. s.PrivateFile = v > 0
  57. case bool:
  58. s.PrivateFile = v
  59. }
  60. }
  61. if dat["owner"] != nil {
  62. s.Owner = dat["owner"].(string)
  63. }
  64. if dat["files"] != nil {
  65. switch v := dat["files"].(type) {
  66. case []interface{}:
  67. values := v
  68. s.Files = make(map[string]string)
  69. for _, d := range values {
  70. s.Files[d.(string)] = ""
  71. }
  72. case map[string]interface{}:
  73. values := v
  74. s.Files = make(map[string]string)
  75. for k, d := range values {
  76. s.Files[k] = d.(string)
  77. }
  78. }
  79. }
  80. if dat["foreignId"] != nil {
  81. s.ForeignId = dat["foreignId"].(string)
  82. }
  83. if dat["createdAt"] != nil {
  84. switch v := dat["createdAt"].(type) {
  85. case string:
  86. layout := "2006-01-02T15:04:05.000Z"
  87. s.CreatedAt, _ = time.Parse(layout, v)
  88. case float64:
  89. s.CreatedAt = time.Unix(0, int64(v)*int64(time.Millisecond))
  90. }
  91. }
  92. if dat["lastModifiedAt"] != nil {
  93. switch v := dat["lastModifiedAt"].(type) {
  94. case string:
  95. layout := "2006-01-02T15:04:05.000Z"
  96. s.LastModifiedAt, _ = time.Parse(layout, v)
  97. case float64:
  98. s.LastModifiedAt = time.Unix(0, int64(v)*int64(time.Millisecond))
  99. }
  100. }
  101. // if dat["buildIn"] != nil {
  102. // s.BuildIn = dat["buildIn"].(string)
  103. // }
  104. // if dat["buildTO"] != nil {
  105. // s.BuildTO = dat["buildTO"].(string)
  106. // }
  107. return nil
  108. }