-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtag.go
187 lines (155 loc) · 4.26 KB
/
tag.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
package scalr
import (
"context"
"errors"
"fmt"
"net/url"
)
// Compile-time proof of interface implementation.
var _ Tags = (*tags)(nil)
// Tags describes all the tags related methods that the Scalr API supports.
type Tags interface {
// List all the tags.
List(ctx context.Context, options TagListOptions) (*TagList, error)
// Create is used to create a new tag.
Create(ctx context.Context, options TagCreateOptions) (*Tag, error)
// Read reads a tag by its ID.
Read(ctx context.Context, tagID string) (*Tag, error)
// Update existing tag by its ID.
Update(ctx context.Context, tagID string, options TagUpdateOptions) (*Tag, error)
// Delete deletes a tag by its ID.
Delete(ctx context.Context, tagID string) error
}
// tags implements Tags.
type tags struct {
client *Client
}
// TagList represents a list of tags.
type TagList struct {
*Pagination
Items []*Tag
}
type Tag struct {
ID string `jsonapi:"primary,tags"`
Name string `jsonapi:"attr,name"`
// Relations
Account *Account `jsonapi:"relation,account"`
}
type TagRelation struct {
ID string `jsonapi:"primary,tags"`
}
// TagListOptions represents the options for listing tags.
type TagListOptions struct {
ListOptions
Tag *string `url:"filter[tag],omitempty"`
Account *string `url:"filter[account],omitempty"`
Name *string `url:"filter[name],omitempty"`
Query *string `url:"query,omitempty"`
}
// TagCreateOptions represents the options for creating a new tag.
type TagCreateOptions struct {
// For internal use only!
ID string `jsonapi:"primary,tags"`
// The name of the tag, it must be unique within the account.
Name *string `jsonapi:"attr,name"`
// Specifies the Account for the tag.
Account *Account `jsonapi:"relation,account"`
}
// TagUpdateOptions represents the options for updating a tag.
type TagUpdateOptions struct {
// For internal use only!
ID string `jsonapi:"primary,tags"`
// The name of the tag, it must be unique within the account.
Name *string `jsonapi:"attr,name"`
}
// List all the tags.
func (s *tags) List(ctx context.Context, options TagListOptions) (*TagList, error) {
req, err := s.client.newRequest("GET", "tags", &options)
if err != nil {
return nil, err
}
tl := &TagList{}
err = s.client.do(ctx, req, tl)
if err != nil {
return nil, err
}
return tl, nil
}
// Read reads a tag by its ID.
func (s *tags) Read(ctx context.Context, tagID string) (*Tag, error) {
if !validStringID(&tagID) {
return nil, errors.New("invalid value for tag ID")
}
u := fmt.Sprintf("tags/%s", url.QueryEscape(tagID))
req, err := s.client.newRequest("GET", u, nil)
if err != nil {
return nil, err
}
t := &Tag{}
err = s.client.do(ctx, req, t)
if err != nil {
return nil, err
}
return t, nil
}
func (o TagCreateOptions) valid() error {
if o.Account == nil {
return errors.New("account is required")
}
if !validStringID(&o.Account.ID) {
return errors.New("invalid value for account ID")
}
if o.Name == nil {
return errors.New("name is required")
}
return nil
}
// Create is used to create a new tag.
func (s *tags) Create(ctx context.Context, options TagCreateOptions) (*Tag, error) {
if err := options.valid(); err != nil {
return nil, err
}
// Make sure we don't send a user provided ID.
options.ID = ""
req, err := s.client.newRequest("POST", "tags", &options)
if err != nil {
return nil, err
}
t := &Tag{}
err = s.client.do(ctx, req, t)
if err != nil {
return nil, err
}
return t, nil
}
// Update is used to update a tag.
func (s *tags) Update(ctx context.Context, tagID string, options TagUpdateOptions) (*Tag, error) {
if !validStringID(&tagID) {
return nil, errors.New("invalid value for tag ID")
}
// Make sure we don't send a user provided ID.
options.ID = ""
u := fmt.Sprintf("tags/%s", url.QueryEscape(tagID))
req, err := s.client.newRequest("PATCH", u, &options)
if err != nil {
return nil, err
}
t := &Tag{}
err = s.client.do(ctx, req, t)
if err != nil {
return nil, err
}
return t, nil
}
// Delete tag by its ID.
func (s *tags) Delete(ctx context.Context, tagID string) error {
if !validStringID(&tagID) {
return errors.New("invalid value for tag ID")
}
u := fmt.Sprintf("tags/%s", url.QueryEscape(tagID))
req, err := s.client.newRequest("DELETE", u, nil)
if err != nil {
return err
}
return s.client.do(ctx, req, nil)
}