-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontent.go
178 lines (162 loc) · 4.32 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
167
168
169
170
171
172
173
174
175
176
177
178
package confluence
import (
"encoding/json"
"net/http"
"net/url"
"strings"
)
type ContentUpdate struct {
Body struct {
Storage struct {
Representation string `json:"representation"`
Value string `json:"value"`
} `json:"storage"`
} `json:"body"`
Id string `json:"id"`
Title string `json:"title"`
Type string `json:"type"`
Version struct {
Number int `json:"number"`
} `json:"version"`
}
type Content struct {
Expandable struct {
Ancestors string `json:"ancestors"`
Children string `json:"children"`
Descendants string `json:"descendants"`
History string `json:"history"`
Metadata string `json:"metadata"`
} `json:"_expandable"`
Links struct {
Base string `json:"base"`
Collection string `json:"collection"`
Self string `json:"self"`
Tinyui string `json:"tinyui"`
Webui string `json:"webui"`
} `json:"_links"`
Body struct {
Expandable struct {
Editor string `json:"editor"`
ExportView string `json:"export_view"`
Storage string `json:"storage"`
} `json:"_expandable"`
View struct {
Expandable struct {
Content string `json:"content"`
} `json:"_expandable"`
Representation string `json:"representation"`
Value string `json:"value"`
} `json:"view"`
} `json:"body"`
Container struct {
Expandable struct {
Description string `json:"description"`
Homepage string `json:"homepage"`
Icon string `json:"icon"`
} `json:"_expandable"`
Links struct {
Self string `json:"self"`
} `json:"_links"`
ID int `json:"id"`
Key string `json:"key"`
Name string `json:"name"`
Type string `json:"type"`
} `json:"container"`
Id string `json:"id"`
Space struct {
Expandable struct {
Description string `json:"description"`
Homepage string `json:"homepage"`
Icon string `json:"icon"`
} `json:"_expandable"`
Links struct {
Self string `json:"self"`
} `json:"_links"`
ID int `json:"id"`
Key string `json:"key"`
Name string `json:"name"`
Type string `json:"type"`
} `json:"space"`
Title string `json:"title"`
Type string `json:"type"`
Version struct {
By struct {
DisplayName string `json:"displayName"`
ProfilePicture struct {
Height int `json:"height"`
IsDefault bool `json:"isDefault"`
Path string `json:"path"`
Width int `json:"width"`
} `json:"profilePicture"`
Type string `json:"type"`
Username string `json:"username"`
} `json:"by"`
Message string `json:"message"`
MinorEdit bool `json:"minorEdit"`
Number int `json:"number"`
When string `json:"when"`
} `json:"version"`
}
func (w *Wiki) contentEndpoint(contentID string) (*url.URL, error) {
return url.ParseRequestURI(w.endPoint.String() + "/content/" + contentID)
}
func (w *Wiki) DeleteContent(contentID string) error {
contentEndPoint, err := w.contentEndpoint(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.contentEndpoint(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
}
// dataRes := string(res)
// fmt.Println(dataRes)
var content Content
err = json.Unmarshal(res, &content)
if err != nil {
return nil, err
}
return &content, nil
}
func (w *Wiki) UpdateContent(content *ContentUpdate) (*ContentUpdate, error) {
jsonbody, err := json.Marshal(content)
if err != nil {
return nil, err
}
contentEndPoint, err := w.contentEndpoint(content.Id)
req, err := http.NewRequest("PUT", contentEndPoint.String(), strings.NewReader(string(jsonbody)))
req.Header.Add("Content-Type", "application/json; charset=utf-8")
// fmt.Println(string(jsonbody))
res, err := w.sendRequest(req)
if err != nil {
return nil, err
}
var newContent ContentUpdate
err = json.Unmarshal(res, &newContent)
if err != nil {
return nil, err
}
return &newContent, nil
}