forked from contentful-labs/contentful-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entry.go
89 lines (70 loc) · 1.65 KB
/
entry.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
package contentful
import (
"fmt"
"net/url"
)
// EntriesService servıce
type EntriesService service
//Entry model
type Entry struct {
locale string
Sys *Sys `json:"sys"`
Fields map[string]interface{}
}
// GetVersion returns entity version
func (entry *Entry) GetVersion() int {
version := 1
if entry.Sys != nil {
version = entry.Sys.Version
}
return version
}
// GetKey returns the entry's keys
func (service *EntriesService) GetEntryKey(entry *Entry, key string) (*EntryField, error) {
ef := EntryField{
value: entry.Fields[key],
}
col, err := service.c.ContentTypes.List(entry.Sys.Space.Sys.ID).Next()
if err != nil {
return nil, err
}
for _, ct := range col.ToContentType() {
if ct.Sys.ID != entry.Sys.ContentType.Sys.ID {
continue
}
for _, field := range ct.Fields {
if field.ID != key {
continue
}
ef.dataType = field.Type
}
}
return &ef, nil
}
// List returns entries collection
func (service *EntriesService) List(spaceID string) *Collection {
path := fmt.Sprintf("/spaces/%s/entries", spaceID)
method := "GET"
req, err := service.c.newRequest(method, path, nil, nil)
if err != nil {
return &Collection{}
}
col := NewCollection(&CollectionOptions{})
col.c = service.c
col.req = req
return col
}
// Get returns a single entry
func (service *EntriesService) Get(spaceID, entryID string) (*Entry, error) {
path := fmt.Sprintf("/spaces/%s/entries/%s", spaceID, entryID)
query := url.Values{}
req, err := service.c.newRequest("GET", path, query, nil)
if err != nil {
return &Entry{}, err
}
var entry Entry
if ok := service.c.do(req, &entry); ok != nil {
return nil, err
}
return &entry, err
}