-
Notifications
You must be signed in to change notification settings - Fork 57
/
template.go
117 lines (100 loc) · 2.7 KB
/
template.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
package goconfluence
import (
"encoding/json"
"net/http"
"net/url"
"strconv"
"strings"
)
// Template contains blueprint data
type Template struct {
ID string `json:"templateId,omitempty"`
Name string `json:"name,omitempty"`
Type string `json:"templateType,omitempty"`
Description string `json:"description"`
Body Body `json:"body"`
Space Space `json:"space"`
}
// TemplateQuery defines the query parameters
type TemplateQuery struct {
SpaceKey string
Start int // page start
Limit int // page limit
Expand []string
}
// TemplateSearch contains blueprint search results
type TemplateSearch struct {
Results []Template `json:"results"`
Start int `json:"start,omitempty"`
Limit int `json:"limit,omitempty"`
Size int `json:"size,omitempty"`
}
func (a *API) getBlueprintTemplatesEndpoint() (*url.URL, error) {
return url.ParseRequestURI(a.endPoint.String() + "/template/blueprint")
}
func (a *API) getContentTemplatesEndpoint() (*url.URL, error) {
return url.ParseRequestURI(a.endPoint.String() + "/template/page")
}
// GetBlueprintTemplates querys for content blueprints defined by TemplateQuery parameters
func (a *API) GetBlueprintTemplates(query TemplateQuery) (*TemplateSearch, error) {
ep, err := a.getBlueprintTemplatesEndpoint()
if err != nil {
return nil, err
}
ep.RawQuery = addTemplateQueryParams(query).Encode()
req, err := http.NewRequest("GET", ep.String(), nil)
if err != nil {
return nil, err
}
res, err := a.Request(req)
if err != nil {
return nil, err
}
var search TemplateSearch
err = json.Unmarshal(res, &search)
if err != nil {
return nil, err
}
return &search, nil
}
// GetContentTemplates querys for content templates
func (a *API) GetContentTemplates(query TemplateQuery) (*TemplateSearch, error) {
ep, err := a.getContentTemplatesEndpoint()
if err != nil {
return nil, err
}
ep.RawQuery = addTemplateQueryParams(query).Encode()
req, err := http.NewRequest("GET", ep.String(), nil)
if err != nil {
return nil, err
}
res, err := a.Request(req)
if err != nil {
return nil, err
}
var search TemplateSearch
err = json.Unmarshal(res, &search)
if err != nil {
return nil, err
}
return &search, nil
}
func addTemplateQueryParams(query TemplateQuery) *url.Values {
data := url.Values{}
if len(query.Expand) != 0 {
data.Set("expand", strings.Join(query.Expand, ","))
}
if query.Limit != 0 {
data.Set("limit", strconv.Itoa(query.Limit))
}
if query.SpaceKey != "" {
data.Set("spaceKey", query.SpaceKey)
}
if len(query.Expand) != 0 {
data.Set("expand", strings.Join(query.Expand, ","))
}
if query.Start != 0 {
data.Set("start", strconv.Itoa(query.Start))
}
return &data
}