-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhook.go
222 lines (180 loc) · 5.5 KB
/
hook.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
package scalr
import (
"context"
"errors"
"fmt"
"net/url"
)
// Compile-time proof of interface implementation.
var _ Hooks = (*hooks)(nil)
// Hooks describes all the hook related methods that the Scalr API supports
type Hooks interface {
List(ctx context.Context, options HookListOptions) (*HookList, error)
Create(ctx context.Context, options HookCreateOptions) (*Hook, error)
Read(ctx context.Context, id string) (*Hook, error)
Update(ctx context.Context, id string, options HookUpdateOptions) (*Hook, error)
Delete(ctx context.Context, id string) error
}
// hooks implements Hooks
type hooks struct {
client *Client
}
// Hook represents a Scalr hook
type Hook struct {
ID string `jsonapi:"primary,hooks"`
Name string `jsonapi:"attr,name"`
Description string `jsonapi:"attr,description"`
Interpreter string `jsonapi:"attr,interpreter"`
ScriptfilePath string `jsonapi:"attr,scriptfile-path"`
VcsRepo *HookVcsRepo `jsonapi:"attr,vcs-repo"`
// Relations
VcsProvider *VcsProvider `jsonapi:"relation,vcs-provider"`
}
// HookVcsRepo represents a repository in a VCS provider
type HookVcsRepo struct {
Identifier string `json:"identifier"`
Branch string `json:"branch,omitempty"`
}
// HookList represents a list of hooks
type HookList struct {
*Pagination
Items []*Hook
}
// HookListOptions represents the options for listing hooks
type HookListOptions struct {
ListOptions
Hook *string `url:"filter[hook],omitempty"`
Name string `url:"filter[name],omitempty"`
Query string `url:"query,omitempty"`
Sort string `url:"sort,omitempty"`
Include string `url:"include,omitempty"`
}
// HookCreateOptions represents the options for creating a hook
type HookCreateOptions struct {
ID string `jsonapi:"primary,hooks"`
Name string `jsonapi:"attr,name"`
Description *string `jsonapi:"attr,description,omitempty"`
Interpreter string `jsonapi:"attr,interpreter"`
ScriptfilePath string `jsonapi:"attr,scriptfile-path"`
VcsRepo *HookVcsRepo `jsonapi:"attr,vcs-repo"`
// Relations
VcsProvider *VcsProvider `jsonapi:"relation,vcs-provider"`
}
// HookUpdateOptions represents the options for updating a hook
type HookUpdateOptions struct {
ID string `jsonapi:"primary,hooks"`
Name *string `jsonapi:"attr,name,omitempty"`
Description *string `jsonapi:"attr,description,omitempty"`
Interpreter *string `jsonapi:"attr,interpreter,omitempty"`
ScriptfilePath *string `jsonapi:"attr,scriptfile-path,omitempty"`
VcsRepo *HookVcsRepo `jsonapi:"attr,vcs-repo,omitempty"`
// Relations
VcsProvider *VcsProvider `jsonapi:"relation,vcs-provider,omitempty"`
}
// List lists all hooks based on the provided options
func (s *hooks) List(ctx context.Context, options HookListOptions) (*HookList, error) {
req, err := s.client.newRequest("GET", "hooks", &options)
if err != nil {
return nil, err
}
hookList := &HookList{}
err = s.client.do(ctx, req, hookList)
if err != nil {
return nil, err
}
return hookList, nil
}
// Create creates a new hook
func (s *hooks) Create(ctx context.Context, options HookCreateOptions) (*Hook, 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", "hooks", &options)
if err != nil {
return nil, err
}
hook := &Hook{}
err = s.client.do(ctx, req, hook)
if err != nil {
return nil, err
}
return hook, nil
}
// Read reads a hook by its ID
func (s *hooks) Read(ctx context.Context, id string) (*Hook, error) {
if !validStringID(&id) {
return nil, errors.New("invalid value for Hook ID")
}
u := fmt.Sprintf("hooks/%s", url.QueryEscape(id))
req, err := s.client.newRequest("GET", u, nil)
if err != nil {
return nil, err
}
hook := &Hook{}
err = s.client.do(ctx, req, hook)
if err != nil {
return nil, err
}
return hook, nil
}
// Update updates a hook by its ID
func (s *hooks) Update(ctx context.Context, id string, options HookUpdateOptions) (*Hook, error) {
if !validStringID(&id) {
return nil, errors.New("invalid value for Hook ID")
}
if err := options.valid(); err != nil {
return nil, err
}
// Make sure we don't send a user provided ID
options.ID = ""
u := fmt.Sprintf("hooks/%s", url.QueryEscape(id))
req, err := s.client.newRequest("PATCH", u, &options)
if err != nil {
return nil, err
}
hook := &Hook{}
err = s.client.do(ctx, req, hook)
if err != nil {
return nil, err
}
return hook, nil
}
// Delete deletes a hook by its ID
func (s *hooks) Delete(ctx context.Context, id string) error {
if !validStringID(&id) {
return errors.New("invalid value for Hook ID")
}
u := fmt.Sprintf("hooks/%s", url.QueryEscape(id))
req, err := s.client.newRequest("DELETE", u, nil)
if err != nil {
return err
}
return s.client.do(ctx, req, nil)
}
func (o HookCreateOptions) valid() error {
if o.VcsProvider == nil {
return errors.New("vcs provider is required")
}
if !validStringID(&o.VcsProvider.ID) {
return errors.New("invalid value for vcs provider ID")
}
if o.VcsRepo == nil {
return errors.New("vcs repo is required")
}
if o.Name == "" {
return errors.New("name is required")
}
if o.Interpreter == "" {
return errors.New("interpreter is required")
}
if o.ScriptfilePath == "" {
return errors.New("scriptfile path is required")
}
return nil
}
// valid validates the hook update options
func (o HookUpdateOptions) valid() error {
return nil
}