forked from seppestas/go-confluence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.go
166 lines (138 loc) · 3.83 KB
/
content.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
package confluence
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"net/url"
"strings"
)
type ContentAncestor struct {
ID string `json:"id"`
}
type Content struct {
ID string `json:"id,omitempty"`
Type string `json:"type"`
Status string `json:"status,omitempty"`
Title string `json:"title"`
Body struct {
Storage struct {
Value string `json:"value"`
Representation string `json:"representation"`
} `json:"storage"`
} `json:"body"`
Version struct {
Number int `json:"number"`
} `json:"version"`
Space struct {
Key string `json:"key"`
} `json:"space,omitempty"`
Ancestors []ContentAncestor `json:"ancestors,omitempty"`
}
type ChildrenResults struct {
GenericResults
Results []Content `json:"results"`
}
func (w *Wiki) existingContentEndpoint(contentID string) (*url.URL, error) {
return url.ParseRequestURI(w.endPoint.String() + "/content/" + contentID)
}
func (w *Wiki) newContentEndpoint() (*url.URL, error) {
return url.ParseRequestURI(w.endPoint.String() + "/content")
}
func (w *Wiki) contentChildrenPagesEndpoint(contentID string) (*url.URL, error) {
return url.ParseRequestURI(w.endPoint.String() + "/content/" + contentID + "/child/page")
}
func (w *Wiki) DeleteContent(contentID string) error {
contentEndPoint, err := w.existingContentEndpoint(contentID)
if err != nil {
return err
}
req, err := http.NewRequest("DELETE", contentEndPoint.String(), nil)
if err != nil {
return err
}
_, err = w.sendRequest(req)
if err != nil {
return err
}
return nil
}
func (w *Wiki) GetContent(contentID string, expand []string) (*Content, error) {
contentEndPoint, err := w.existingContentEndpoint(contentID)
if err != nil {
return nil, err
}
data := url.Values{}
data.Set("expand", strings.Join(expand, ","))
contentEndPoint.RawQuery = data.Encode()
req, err := http.NewRequest("GET", contentEndPoint.String(), nil)
if err != nil {
return nil, err
}
res, err := w.sendRequest(req)
if err != nil {
return nil, err
}
var content Content
err = json.Unmarshal(res, &content)
if err != nil {
return nil, err
}
return &content, nil
}
func (w *Wiki) UpdateContent(content *Content) (*Content, []byte, error) {
contentEndPoint, err := w.existingContentEndpoint(content.ID)
if err != nil {
return nil, nil, err
}
return w.internalCreateOrUpdateContent(content, contentEndPoint, "PUT")
}
func (w *Wiki) CreateContent(content *Content) (*Content, []byte, error) {
contentEndPoint, err := w.newContentEndpoint()
if err != nil {
return nil, nil, err
}
return w.internalCreateOrUpdateContent(content, contentEndPoint, "POST")
}
func (w *Wiki) internalCreateOrUpdateContent(content *Content, contentEndPoint *url.URL, method string) (*Content, []byte, error) {
jsonBody, err := json.Marshal(content)
if err != nil {
return nil, nil, err
}
fmt.Printf("sending to %s: %v\n", contentEndPoint.String(), string(jsonBody))
req, err := http.NewRequest(method, contentEndPoint.String(), bytes.NewReader(jsonBody))
req.Header.Add("Content-Type", "application/json")
res, err := w.sendRequest(req)
if err != nil {
return nil, res, err
}
var newContent Content
err = json.Unmarshal(res, &newContent)
if err != nil {
return nil, res, err
}
return &newContent, res, nil
}
func (w *Wiki) GetContentChildrenPages(contentID string, expand []string) (*ChildrenResults, error) {
contentEndPoint, err := w.contentChildrenPagesEndpoint(contentID)
if err != nil {
return nil, err
}
data := url.Values{}
data.Set("expand", strings.Join(expand, ","))
contentEndPoint.RawQuery = data.Encode()
req, err := http.NewRequest("GET", contentEndPoint.String(), nil)
if err != nil {
return nil, err
}
res, err := w.sendRequest(req)
if err != nil {
return nil, err
}
var content ChildrenResults
err = json.Unmarshal(res, &content)
if err != nil {
return nil, err
}
return &content, nil
}