-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathannotation.go
235 lines (190 loc) · 6.31 KB
/
annotation.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
// Copyright 2016 Circonus, Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Annotation API support - Fetch, Create, Update, Delete, and Search
// See: https://login.circonus.com/resources/api/calls/annotation
package apiclient
import (
"encoding/json"
"fmt"
"net/url"
"regexp"
"strings"
"github.com/circonus-labs/go-apiclient/config"
"github.com/pkg/errors"
)
// Annotation defines a annotation. See https://login.circonus.com/resources/api/calls/annotation for more information.
type Annotation struct {
Category string `json:"category"` // string
CID string `json:"_cid,omitempty"` // string
Description string `json:"description"` // string
LastModifiedBy string `json:"_last_modified_by,omitempty"` // string
Title string `json:"title"` // string
RelatedMetrics []string `json:"rel_metrics"` // [] len >= 0
LastModified uint `json:"_last_modified,omitempty"` // uint
Created uint `json:"_created,omitempty"` // uint
Start uint `json:"start"` // uint
Stop uint `json:"stop"` // uint
}
// NewAnnotation returns a new Annotation (with defaults, if applicable)
func NewAnnotation() *Annotation {
return &Annotation{}
}
// FetchAnnotation retrieves annotation with passed cid.
func (a *API) FetchAnnotation(cid CIDType) (*Annotation, error) {
if cid == nil || *cid == "" {
return nil, errors.New("invalid annotation CID (none)")
}
var annotationCID string
if !strings.HasPrefix(*cid, config.AnnotationPrefix) {
annotationCID = fmt.Sprintf("%s/%s", config.AnnotationPrefix, *cid)
} else {
annotationCID = *cid
}
matched, err := regexp.MatchString(config.AnnotationCIDRegex, annotationCID)
if err != nil {
return nil, err
}
if !matched {
return nil, errors.Errorf("invalid annotation CID (%s)", annotationCID)
}
result, err := a.Get(annotationCID)
if err != nil {
return nil, errors.Wrap(err, "fetching annotation")
}
if a.Debug {
a.Log.Printf("fetch annotation, received JSON: %s", string(result))
}
annotation := &Annotation{}
if err := json.Unmarshal(result, annotation); err != nil {
return nil, errors.Wrap(err, "parsing annotation")
}
return annotation, nil
}
// FetchAnnotations retrieves all annotations available to the API Token.
func (a *API) FetchAnnotations() (*[]Annotation, error) {
result, err := a.Get(config.AnnotationPrefix)
if err != nil {
return nil, errors.Wrap(err, "fetching annotations")
}
var annotations []Annotation
if err := json.Unmarshal(result, &annotations); err != nil {
return nil, errors.Wrap(err, "parsing annotations")
}
return &annotations, nil
}
// UpdateAnnotation updates passed annotation.
func (a *API) UpdateAnnotation(cfg *Annotation) (*Annotation, error) {
if cfg == nil {
return nil, errors.New("invalid annotation config (nil)")
}
annotationCID := cfg.CID
matched, err := regexp.MatchString(config.AnnotationCIDRegex, annotationCID)
if err != nil {
return nil, err
}
if !matched {
return nil, errors.Errorf("invalid annotation CID (%s)", annotationCID)
}
jsonCfg, err := json.Marshal(cfg)
if err != nil {
return nil, err
}
if a.Debug {
a.Log.Printf("update annotation, sending JSON: %s", string(jsonCfg))
}
result, err := a.Put(annotationCID, jsonCfg)
if err != nil {
return nil, errors.Wrap(err, "updating annotation")
}
annotation := &Annotation{}
if err := json.Unmarshal(result, annotation); err != nil {
return nil, errors.Wrap(err, "parsing annotation")
}
return annotation, nil
}
// CreateAnnotation creates a new annotation.
func (a *API) CreateAnnotation(cfg *Annotation) (*Annotation, error) {
if cfg == nil {
return nil, errors.New("invalid annotation config (nil)")
}
jsonCfg, err := json.Marshal(cfg)
if err != nil {
return nil, err
}
if a.Debug {
a.Log.Printf("create annotation, sending JSON: %s", string(jsonCfg))
}
result, err := a.Post(config.AnnotationPrefix, jsonCfg)
if err != nil {
return nil, errors.Wrap(err, "creating annotation")
}
annotation := &Annotation{}
if err := json.Unmarshal(result, annotation); err != nil {
return nil, errors.Wrap(err, "parsing annotation")
}
return annotation, nil
}
// DeleteAnnotation deletes passed annotation.
func (a *API) DeleteAnnotation(cfg *Annotation) (bool, error) {
if cfg == nil {
return false, errors.New("invalid annotation config (nil)")
}
return a.DeleteAnnotationByCID(CIDType(&cfg.CID))
}
// DeleteAnnotationByCID deletes annotation with passed cid.
func (a *API) DeleteAnnotationByCID(cid CIDType) (bool, error) {
if cid == nil || *cid == "" {
return false, errors.New("invalid annotation CID (none)")
}
var annotationCID string
if !strings.HasPrefix(*cid, config.AnnotationPrefix) {
annotationCID = fmt.Sprintf("%s/%s", config.AnnotationPrefix, *cid)
} else {
annotationCID = *cid
}
matched, err := regexp.MatchString(config.AnnotationCIDRegex, annotationCID)
if err != nil {
return false, err
}
if !matched {
return false, errors.Errorf("invalid annotation CID (%s)", annotationCID)
}
_, err = a.Delete(annotationCID)
if err != nil {
return false, errors.Wrap(err, "deleting annotation")
}
return true, nil
}
// SearchAnnotations returns annotations matching the specified
// search query and/or filter. If nil is passed for both parameters
// all annotations will be returned.
func (a *API) SearchAnnotations(searchCriteria *SearchQueryType, filterCriteria *SearchFilterType) (*[]Annotation, error) {
q := url.Values{}
if searchCriteria != nil && *searchCriteria != "" {
q.Set("search", string(*searchCriteria))
}
if filterCriteria != nil && len(*filterCriteria) > 0 {
for filter, criteria := range *filterCriteria {
for _, val := range criteria {
q.Add(filter, val)
}
}
}
if q.Encode() == "" {
return a.FetchAnnotations()
}
reqURL := url.URL{
Path: config.AnnotationPrefix,
RawQuery: q.Encode(),
}
result, err := a.Get(reqURL.String())
if err != nil {
return nil, errors.Wrap(err, "searching annotations")
}
var annotations []Annotation
if err := json.Unmarshal(result, &annotations); err != nil {
return nil, errors.Wrap(err, "parsing annotations")
}
return &annotations, nil
}