forked from contentful-labs/contentful-go
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathentry.go
136 lines (106 loc) · 2.8 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
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
package contentful
import (
"fmt"
"net/url"
"strconv"
)
// 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
}
// GetEntryKey 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{}
method := "GET"
req, err := service.c.newRequest(method, 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
}
// Delete the entry
func (service *EntriesService) Delete(spaceID string, entryID string) error {
path := fmt.Sprintf("/spaces/%s/entries/%s", spaceID, entryID)
method := "DELETE"
req, err := service.c.newRequest(method, path, nil, nil)
if err != nil {
return err
}
return service.c.do(req, nil)
}
// Publish the entry
func (service *EntriesService) Publish(spaceID string, entry *Entry) error {
path := fmt.Sprintf("/spaces/%s/entries/%s/published", spaceID, entry.Sys.ID)
method := "PUT"
req, err := service.c.newRequest(method, path, nil, nil)
if err != nil {
return err
}
version := strconv.Itoa(entry.Sys.Version)
req.Header.Set("X-Contentful-Version", version)
return service.c.do(req, nil)
}
// Unpublish the entry
func (service *EntriesService) Unpublish(spaceID string, entry *Entry) error {
path := fmt.Sprintf("/spaces/%s/entries/%s/published", spaceID, entry.Sys.ID)
method := "DELETE"
req, err := service.c.newRequest(method, path, nil, nil)
if err != nil {
return err
}
version := strconv.Itoa(entry.Sys.Version)
req.Header.Set("X-Contentful-Version", version)
return service.c.do(req, nil)
}