forked from contentful-labs/contentful-go
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcontent_type.go
474 lines (367 loc) · 12.7 KB
/
content_type.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
package contentful
import (
"bytes"
"encoding/json"
"fmt"
"strconv"
)
// ContentTypesService service
type ContentTypesService service
// ContentType model
type ContentType struct {
Sys *Sys `json:"sys"`
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
Fields []*Field `json:"fields,omitempty"`
DisplayField string `json:"displayField,omitempty"`
}
// noinspection GoUnusedConst
const (
// FieldTypeText content type field type for text data
FieldTypeText = "Text"
// FieldTypeSymbol content type field type for text data
FieldTypeSymbol = "Symbol"
// FieldTypeArray content type field type for array data
FieldTypeArray = "Array"
// FieldTypeLink content type field type for link data
FieldTypeLink = "Link"
// FieldTypeInteger content type field type for integer data
FieldTypeInteger = "Integer"
// FieldTypeLocation content type field type for location data
FieldTypeLocation = "Location"
// FieldTypeBoolean content type field type for boolean data
FieldTypeBoolean = "Boolean"
// FieldTypeDate content type field type for date data
FieldTypeDate = "Date"
// FieldTypeObject content type field type for object data
FieldTypeObject = "Object"
)
// Field model
type Field struct {
ID string `json:"id,omitempty"`
Name string `json:"name"`
Type string `json:"type"`
LinkType string `json:"linkType,omitempty"`
Items *FieldTypeArrayItem `json:"items,omitempty"`
Required bool `json:"required,omitempty"`
Localized bool `json:"localized,omitempty"`
Disabled bool `json:"disabled,omitempty"`
Omitted bool `json:"omitted,omitempty"`
Validations []FieldValidation `json:"validations,omitempty"`
}
// UnmarshalJSON for custom json unmarshaling
func (field *Field) UnmarshalJSON(data []byte) error {
payload := map[string]interface{}{}
if err := json.Unmarshal(data, &payload); err != nil {
return err
}
if val, ok := payload["id"]; ok {
field.ID = val.(string)
}
if val, ok := payload["name"]; ok {
field.Name = val.(string)
}
if val, ok := payload["type"]; ok {
field.Type = val.(string)
}
if val, ok := payload["linkType"]; ok {
field.LinkType = val.(string)
}
if val, ok := payload["items"]; ok {
byteArray, err := json.Marshal(val)
if err != nil {
return nil
}
var fieldTypeArrayItem FieldTypeArrayItem
if err := json.Unmarshal(byteArray, &fieldTypeArrayItem); err != nil {
return err
}
field.Items = &fieldTypeArrayItem
}
if val, ok := payload["required"]; ok {
field.Required = val.(bool)
}
if val, ok := payload["localized"]; ok {
field.Localized = val.(bool)
}
if val, ok := payload["disabled"]; ok {
field.Disabled = val.(bool)
}
if val, ok := payload["omitted"]; ok {
field.Omitted = val.(bool)
}
if val, ok := payload["validations"]; ok {
validations, err := ParseValidations(val.([]interface{}))
if err != nil {
return err
}
field.Validations = validations
}
return nil
}
// ParseValidations converts json representation to go struct
func ParseValidations(data []interface{}) (validations []FieldValidation, err error) {
for _, value := range data {
var validation map[string]interface{}
var byteArray []byte
if validationStr, ok := value.(string); ok {
if err := json.Unmarshal([]byte(validationStr), &validation); err != nil {
return nil, err
}
byteArray = []byte(validationStr)
}
if validationMap, ok := value.(map[string]interface{}); ok {
byteArray, err = json.Marshal(validationMap)
if err != nil {
return nil, err
}
validation = validationMap
}
if _, ok := validation["linkContentType"]; ok {
var fieldValidationLink FieldValidationLink
if err := json.Unmarshal(byteArray, &fieldValidationLink); err != nil {
return nil, err
}
validations = append(validations, fieldValidationLink)
}
if _, ok := validation["linkMimetypeGroup"]; ok {
var fieldValidationMimeType FieldValidationMimeType
if err := json.Unmarshal(byteArray, &fieldValidationMimeType); err != nil {
return nil, err
}
validations = append(validations, fieldValidationMimeType)
}
if _, ok := validation["assetImageDimensions"]; ok {
var fieldValidationDimension FieldValidationDimension
if err := json.Unmarshal(byteArray, &fieldValidationDimension); err != nil {
return nil, err
}
validations = append(validations, fieldValidationDimension)
}
if _, ok := validation["assetFileSize"]; ok {
var fieldValidationFileSize FieldValidationFileSize
if err := json.Unmarshal(byteArray, &fieldValidationFileSize); err != nil {
return nil, err
}
validations = append(validations, fieldValidationFileSize)
}
if _, ok := validation["unique"]; ok {
var fieldValidationUnique FieldValidationUnique
if err := json.Unmarshal(byteArray, &fieldValidationUnique); err != nil {
return nil, err
}
validations = append(validations, fieldValidationUnique)
}
if _, ok := validation["in"]; ok {
var fieldValidationPredefinedValues FieldValidationPredefinedValues
if err := json.Unmarshal(byteArray, &fieldValidationPredefinedValues); err != nil {
return nil, err
}
validations = append(validations, fieldValidationPredefinedValues)
}
if _, ok := validation["range"]; ok {
var fieldValidationRange FieldValidationRange
if err := json.Unmarshal(byteArray, &fieldValidationRange); err != nil {
return nil, err
}
validations = append(validations, fieldValidationRange)
}
if _, ok := validation["dateRange"]; ok {
var fieldValidationDate FieldValidationDate
if err := json.Unmarshal(byteArray, &fieldValidationDate); err != nil {
return nil, err
}
validations = append(validations, fieldValidationDate)
}
if _, ok := validation["size"]; ok {
var fieldValidationSize FieldValidationSize
if err := json.Unmarshal(byteArray, &fieldValidationSize); err != nil {
return nil, err
}
validations = append(validations, fieldValidationSize)
}
if _, ok := validation["regexp"]; ok {
var fieldValidationRegex FieldValidationRegex
if err := json.Unmarshal(byteArray, &fieldValidationRegex); err != nil {
return nil, err
}
validations = append(validations, fieldValidationRegex)
}
}
return validations, nil
}
// FieldTypeArrayItem model
type FieldTypeArrayItem struct {
Type string `json:"type,omitempty"`
Validations []FieldValidation `json:"validations,omitempty"`
LinkType string `json:"linkType,omitempty"`
}
// UnmarshalJSON for custom json unmarshaling
func (item *FieldTypeArrayItem) UnmarshalJSON(data []byte) error {
payload := map[string]interface{}{}
if err := json.Unmarshal(data, &payload); err != nil {
return err
}
if val, ok := payload["type"]; ok {
item.Type = val.(string)
}
if val, ok := payload["validations"]; ok {
validations, err := ParseValidations(val.([]interface{}))
if err != nil {
return err
}
item.Validations = validations
}
if val, ok := payload["linktype"]; ok {
item.LinkType = val.(string)
}
return nil
}
// GetVersion returns entity version
func (ct *ContentType) GetVersion() int {
version := 1
if ct.Sys != nil {
version = ct.Sys.Version
}
return version
}
// List return a content type collection
func (service *ContentTypesService) List(spaceID string) *Collection {
path := fmt.Sprintf("/spaces/%s/content_types", spaceID)
method := "GET"
req, err := service.c.newRequest(method, path, nil, nil)
if err != nil {
return nil
}
col := NewCollection(&CollectionOptions{})
col.c = service.c
col.req = req
return col
}
// ListActivated return a content type collection, with only activated content types
func (service *ContentTypesService) ListActivated(spaceID string) *Collection {
path := fmt.Sprintf("/spaces/%s/public/content_types", spaceID)
method := "GET"
req, err := service.c.newRequest(method, path, nil, nil)
if err != nil {
return nil
}
col := NewCollection(&CollectionOptions{})
col.c = service.c
col.req = req
return col
}
// Get fetched a content type specified by `contentTypeID`
func (service *ContentTypesService) Get(spaceID, contentTypeID string) (*ContentType, error) {
path := fmt.Sprintf("/spaces/%s/content_types/%s", spaceID, contentTypeID)
return service.doGet(path)
}
// GetFromEnv a content type by `contentTypeID` from an environment
func (service *ContentTypesService) GetWithEnv(env *Environment, contentTypeID string) (*ContentType, error) {
path := fmt.Sprintf("/spaces/%s/environments/%s/content_types/%s", env.Sys.Space.Sys.ID, env.Sys.ID, contentTypeID)
return service.doGet(path)
}
func (service *ContentTypesService) doGet(path string) (*ContentType, error) {
req, err := service.c.newRequest("GET", path, nil, nil)
if err != nil {
return nil, err
}
var ct ContentType
if err = service.c.do(req, &ct); err != nil {
return nil, err
}
return &ct, nil
}
// Upsert updates or creates a new content type
func (service *ContentTypesService) Upsert(spaceID string, ct *ContentType) error {
var path string
if ct.Sys != nil && ct.Sys.ID != "" {
path = fmt.Sprintf("/spaces/%s/content_types/%s", spaceID, ct.Sys.ID)
} else {
path = fmt.Sprintf("/spaces/%s/content_types/%s", spaceID, ct.Name)
}
return service.doUpsert(path, ct)
}
// UpsertEnv a content type for an environment
func (service *ContentTypesService) UpsertWithEnv(env *Environment, ct *ContentType) error {
var path string
path = fmt.Sprintf("/spaces/%s/environments/%s", env.Sys.Space.Sys.ID, env.Sys.ID)
if ct.Sys != nil && ct.Sys.ID != "" {
path = fmt.Sprintf("%s/content_types/%s", path, ct.Sys.ID)
} else {
path = fmt.Sprintf("%s/content_types/%s", path, ct.Name)
}
return service.doUpsert(path, ct)
}
func (service *ContentTypesService) doUpsert(path string, ct *ContentType) error {
bytesArray, err := json.Marshal(ct)
if err != nil {
return err
}
req, err := service.c.newRequest("PUT", path, nil, bytes.NewReader(bytesArray))
if err != nil {
return err
}
req.Header.Set("X-Contentful-Version", strconv.Itoa(ct.GetVersion()))
return service.c.do(req, ct)
}
// Delete the content_type
func (service *ContentTypesService) Delete(spaceID string, ct *ContentType) error {
path := fmt.Sprintf("/spaces/%s/content_types/%s", spaceID, ct.Sys.ID)
return service.doDelete(path, ct)
}
// DeleteFromEnv a content type from an environment
func (service *ContentTypesService) DeleteWithEnv(env *Environment, ct *ContentType) error {
path := fmt.Sprintf("/spaces/%s/environments/%s/content_types/%s", env.Sys.Space.Sys.ID, env.Sys.ID, ct.Sys.ID)
return service.doDelete(path, ct)
}
func (service *ContentTypesService) doDelete(path string, ct *ContentType) error {
method := "DELETE"
req, err := service.c.newRequest(method, path, nil, nil)
if err != nil {
return err
}
version := strconv.Itoa(ct.Sys.Version)
req.Header.Set("X-Contentful-Version", version)
return service.c.do(req, nil)
}
// Activate a contenttype, a.k.a publish
func (service *ContentTypesService) Activate(spaceID string, ct *ContentType) error {
path := fmt.Sprintf("/spaces/%s/content_types/%s/published", spaceID, ct.Sys.ID)
return service.doActivate(path, ct)
}
// Activate a contenttype in a specific environment, a.k.a publish
func (service *ContentTypesService) ActivateWithEnv(env *Environment, ct *ContentType) error {
path := fmt.Sprintf("/spaces/%s/environments/%s/content_types/%s/published", env.Sys.Space.Sys.ID, env.Sys.ID, ct.Sys.ID)
return service.doActivate(path, ct)
}
func (service *ContentTypesService) doActivate(path string, ct *ContentType) error {
method := "PUT"
req, err := service.c.newRequest(method, path, nil, nil)
if err != nil {
return err
}
version := strconv.Itoa(ct.Sys.Version)
req.Header.Set("X-Contentful-Version", version)
return service.c.do(req, ct)
}
// Deactivate a contenttype, a.k.a unpublish
func (service *ContentTypesService) Deactivate(spaceID string, ct *ContentType) error {
path := fmt.Sprintf("/spaces/%s/content_types/%s/published", spaceID, ct.Sys.ID)
return service.doDeactivate(path, ct)
}
// Deactivate a contenttype in a specific environment, a.k.a unpublish
func (service *ContentTypesService) DeactivateWithEnv(env *Environment, ct *ContentType) error {
path := fmt.Sprintf("/spaces/%s/environments/%s/content_types/%s/published", env.Sys.Space.Sys.ID, env.Sys.ID, ct.Sys.ID)
return service.doDeactivate(path, ct)
}
func (service *ContentTypesService) doDeactivate(path string, ct *ContentType) error {
method := "DELETE"
req, err := service.c.newRequest(method, path, nil, nil)
if err != nil {
return err
}
version := strconv.Itoa(ct.Sys.Version)
req.Header.Set("X-Contentful-Version", version)
return service.c.do(req, ct)
}