-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebhook_integration.go
200 lines (164 loc) · 5.97 KB
/
webhook_integration.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
package scalr
import (
"context"
"errors"
"fmt"
"net/url"
"time"
)
// Compile-time proof of interface implementation.
var _ WebhookIntegrations = (*webhookIntegrations)(nil)
type WebhookIntegrations interface {
List(ctx context.Context, options WebhookIntegrationListOptions) (*WebhookIntegrationList, error)
Create(ctx context.Context, options WebhookIntegrationCreateOptions) (*WebhookIntegration, error)
Read(ctx context.Context, wi string) (*WebhookIntegration, error)
Update(ctx context.Context, wi string, options WebhookIntegrationUpdateOptions) (*WebhookIntegration, error)
Delete(ctx context.Context, wi string) error
}
// webhookIntegrations implements WebhookIntegrations.
type webhookIntegrations struct {
client *Client
}
type WebhookIntegrationList struct {
*Pagination
Items []*WebhookIntegration
}
// WebhookIntegration represents a Scalr IACP webhook integration.
type WebhookIntegration struct {
ID string `jsonapi:"primary,webhook-integrations"`
Name string `jsonapi:"attr,name"`
Enabled bool `jsonapi:"attr,enabled"`
IsShared bool `jsonapi:"attr,is-shared"`
LastTriggeredAt *time.Time `jsonapi:"attr,last-triggered-at,iso8601"`
Url string `jsonapi:"attr,url"`
SecretKey string `jsonapi:"attr,secret-key"`
Timeout int `jsonapi:"attr,timeout"`
MaxAttempts int `jsonapi:"attr,max-attempts"`
HttpMethod string `jsonapi:"attr,http-method"`
Headers []*WebhookHeader `jsonapi:"attr,headers"`
// Relations
Environments []*Environment `jsonapi:"relation,environments"`
Account *Account `jsonapi:"relation,account"`
Events []*EventDefinition `jsonapi:"relation,events"`
}
type WebhookHeader struct {
Name string `json:"name"`
Value string `json:"value"`
Sensitive bool `json:"sensitive"`
}
type EventDefinition struct {
ID string `jsonapi:"primary,event-definitions"`
}
type WebhookIntegrationListOptions struct {
ListOptions
Query *string `url:"query,omitempty"`
Sort *string `url:"sort,omitempty"`
Enabled *bool `url:"filter[enabled],omitempty"`
Event *string `url:"filter[event],omitempty"`
Environment *string `url:"filter[environment],omitempty"`
Account *string `url:"filter[account],omitempty"`
}
type WebhookIntegrationCreateOptions struct {
ID string `jsonapi:"primary,webhook-integrations"`
Name *string `jsonapi:"attr,name"`
Enabled *bool `jsonapi:"attr,enabled,omitempty"`
IsShared *bool `jsonapi:"attr,is-shared,omitempty"`
Url *string `jsonapi:"attr,url"`
SecretKey *string `jsonapi:"attr,secret-key,omitempty"`
Timeout *int `jsonapi:"attr,timeout,omitempty"`
MaxAttempts *int `jsonapi:"attr,max-attempts,omitempty"`
Headers []*WebhookHeader `jsonapi:"attr,headers,omitempty"`
Environments []*Environment `jsonapi:"relation,environments,omitempty"`
Account *Account `jsonapi:"relation,account"`
Events []*EventDefinition `jsonapi:"relation,events,omitempty"`
}
type WebhookIntegrationUpdateOptions struct {
ID string `jsonapi:"primary,webhook-integrations"`
Name *string `jsonapi:"attr,name,omitempty"`
Enabled *bool `jsonapi:"attr,enabled,omitempty"`
IsShared *bool `jsonapi:"attr,is-shared,omitempty"`
Url *string `jsonapi:"attr,url,omitempty"`
SecretKey *string `jsonapi:"attr,secret-key,omitempty"`
Timeout *int `jsonapi:"attr,timeout,omitempty"`
MaxAttempts *int `jsonapi:"attr,max-attempts,omitempty"`
Headers []*WebhookHeader `jsonapi:"attr,headers,omitempty"`
Environments []*Environment `jsonapi:"relation,environments"`
Events []*EventDefinition `jsonapi:"relation,events"`
}
func (s *webhookIntegrations) List(
ctx context.Context, options WebhookIntegrationListOptions,
) (*WebhookIntegrationList, error) {
req, err := s.client.newRequest("GET", "integrations/webhooks", &options)
if err != nil {
return nil, err
}
wl := &WebhookIntegrationList{}
err = s.client.do(ctx, req, wl)
if err != nil {
return nil, err
}
return wl, nil
}
func (s *webhookIntegrations) Create(
ctx context.Context, options WebhookIntegrationCreateOptions,
) (*WebhookIntegration, error) {
// Make sure we don't send a user provided ID.
options.ID = ""
req, err := s.client.newRequest("POST", "integrations/webhooks", &options)
if err != nil {
return nil, err
}
w := &WebhookIntegration{}
err = s.client.do(ctx, req, w)
if err != nil {
return nil, err
}
return w, nil
}
func (s *webhookIntegrations) Read(ctx context.Context, wi string) (*WebhookIntegration, error) {
if !validStringID(&wi) {
return nil, errors.New("invalid value for webhook ID")
}
u := fmt.Sprintf("integrations/webhooks/%s", url.QueryEscape(wi))
req, err := s.client.newRequest("GET", u, nil)
if err != nil {
return nil, err
}
w := &WebhookIntegration{}
err = s.client.do(ctx, req, w)
if err != nil {
return nil, err
}
return w, nil
}
func (s *webhookIntegrations) Update(
ctx context.Context, wi string, options WebhookIntegrationUpdateOptions,
) (*WebhookIntegration, error) {
if !validStringID(&wi) {
return nil, errors.New("invalid value for webhook ID")
}
// Make sure we don't send a user provided ID.
options.ID = ""
u := fmt.Sprintf("integrations/webhooks/%s", url.QueryEscape(wi))
req, err := s.client.newRequest("PATCH", u, &options)
if err != nil {
return nil, err
}
w := &WebhookIntegration{}
err = s.client.do(ctx, req, w)
if err != nil {
return nil, err
}
return w, nil
}
func (s *webhookIntegrations) Delete(ctx context.Context, wi string) error {
if !validStringID(&wi) {
return errors.New("invalid value for webhook ID")
}
u := fmt.Sprintf("integrations/webhooks/%s", url.QueryEscape(wi))
req, err := s.client.newRequest("DELETE", u, nil)
if err != nil {
return err
}
return s.client.do(ctx, req, nil)
}