-
Notifications
You must be signed in to change notification settings - Fork 0
/
webhooks.go
executable file
·383 lines (319 loc) · 10.6 KB
/
webhooks.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
package formance
import (
"context"
"fmt"
"github.com/speakeasy-sdks/formance-go-sdk/pkg/models/operations"
"github.com/speakeasy-sdks/formance-go-sdk/pkg/models/shared"
"github.com/speakeasy-sdks/formance-go-sdk/pkg/utils"
"io"
"net/http"
"strings"
)
type webhooks struct {
defaultClient HTTPClient
securityClient HTTPClient
serverURL string
language string
sdkVersion string
genVersion string
}
func newWebhooks(defaultClient, securityClient HTTPClient, serverURL, language, sdkVersion, genVersion string) *webhooks {
return &webhooks{
defaultClient: defaultClient,
securityClient: securityClient,
serverURL: serverURL,
language: language,
sdkVersion: sdkVersion,
genVersion: genVersion,
}
}
// ActivateConfig - Activate one config
// Activate a webhooks config by ID, to start receiving webhooks to its endpoint.
func (s *webhooks) ActivateConfig(ctx context.Context, request operations.ActivateConfigRequest) (*operations.ActivateConfigResponse, error) {
baseURL := s.serverURL
url := utils.GenerateURL(ctx, baseURL, "/api/webhooks/configs/{id}/activate", request, nil)
req, err := http.NewRequestWithContext(ctx, "PUT", url, nil)
if err != nil {
return nil, fmt.Errorf("error creating request: %w", err)
}
client := s.securityClient
httpRes, err := client.Do(req)
if err != nil {
return nil, fmt.Errorf("error sending request: %w", err)
}
if httpRes == nil {
return nil, fmt.Errorf("error sending request: no response")
}
defer httpRes.Body.Close()
contentType := httpRes.Header.Get("Content-Type")
res := &operations.ActivateConfigResponse{
StatusCode: httpRes.StatusCode,
ContentType: contentType,
RawResponse: httpRes,
}
switch {
case httpRes.StatusCode == 200:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *shared.ConfigResponse
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.ConfigResponse = out
}
case httpRes.StatusCode == 304:
}
return res, nil
}
// ChangeConfigSecret - Change the signing secret of a config
// Change the signing secret of the endpoint of a webhooks config.
//
// If not passed or empty, a secret is automatically generated.
// The format is a random string of bytes of size 24, base64 encoded. (larger size after encoding)
func (s *webhooks) ChangeConfigSecret(ctx context.Context, request operations.ChangeConfigSecretRequest) (*operations.ChangeConfigSecretResponse, error) {
baseURL := s.serverURL
url := utils.GenerateURL(ctx, baseURL, "/api/webhooks/configs/{id}/secret/change", request, nil)
bodyReader, reqContentType, err := utils.SerializeRequestBody(ctx, request, "ConfigChangeSecret", "json")
if err != nil {
return nil, fmt.Errorf("error serializing request body: %w", err)
}
req, err := http.NewRequestWithContext(ctx, "PUT", url, bodyReader)
if err != nil {
return nil, fmt.Errorf("error creating request: %w", err)
}
req.Header.Set("Content-Type", reqContentType)
client := s.securityClient
httpRes, err := client.Do(req)
if err != nil {
return nil, fmt.Errorf("error sending request: %w", err)
}
if httpRes == nil {
return nil, fmt.Errorf("error sending request: no response")
}
defer httpRes.Body.Close()
contentType := httpRes.Header.Get("Content-Type")
res := &operations.ChangeConfigSecretResponse{
StatusCode: httpRes.StatusCode,
ContentType: contentType,
RawResponse: httpRes,
}
switch {
case httpRes.StatusCode == 200:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *shared.ConfigResponse
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.ConfigResponse = out
}
}
return res, nil
}
// DeactivateConfig - Deactivate one config
// Deactivate a webhooks config by ID, to stop receiving webhooks to its endpoint.
func (s *webhooks) DeactivateConfig(ctx context.Context, request operations.DeactivateConfigRequest) (*operations.DeactivateConfigResponse, error) {
baseURL := s.serverURL
url := utils.GenerateURL(ctx, baseURL, "/api/webhooks/configs/{id}/deactivate", request, nil)
req, err := http.NewRequestWithContext(ctx, "PUT", url, nil)
if err != nil {
return nil, fmt.Errorf("error creating request: %w", err)
}
client := s.securityClient
httpRes, err := client.Do(req)
if err != nil {
return nil, fmt.Errorf("error sending request: %w", err)
}
if httpRes == nil {
return nil, fmt.Errorf("error sending request: no response")
}
defer httpRes.Body.Close()
contentType := httpRes.Header.Get("Content-Type")
res := &operations.DeactivateConfigResponse{
StatusCode: httpRes.StatusCode,
ContentType: contentType,
RawResponse: httpRes,
}
switch {
case httpRes.StatusCode == 200:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *shared.ConfigResponse
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.ConfigResponse = out
}
case httpRes.StatusCode == 304:
}
return res, nil
}
// DeleteConfig - Delete one config
// Delete a webhooks config by ID.
func (s *webhooks) DeleteConfig(ctx context.Context, request operations.DeleteConfigRequest) (*operations.DeleteConfigResponse, error) {
baseURL := s.serverURL
url := utils.GenerateURL(ctx, baseURL, "/api/webhooks/configs/{id}", request, nil)
req, err := http.NewRequestWithContext(ctx, "DELETE", url, nil)
if err != nil {
return nil, fmt.Errorf("error creating request: %w", err)
}
client := s.securityClient
httpRes, err := client.Do(req)
if err != nil {
return nil, fmt.Errorf("error sending request: %w", err)
}
if httpRes == nil {
return nil, fmt.Errorf("error sending request: no response")
}
defer httpRes.Body.Close()
contentType := httpRes.Header.Get("Content-Type")
res := &operations.DeleteConfigResponse{
StatusCode: httpRes.StatusCode,
ContentType: contentType,
RawResponse: httpRes,
}
switch {
case httpRes.StatusCode == 200:
}
return res, nil
}
// GetManyConfigs - Get many configs
// Sorted by updated date descending
func (s *webhooks) GetManyConfigs(ctx context.Context, request operations.GetManyConfigsRequest) (*operations.GetManyConfigsResponse, error) {
baseURL := s.serverURL
url := strings.TrimSuffix(baseURL, "/") + "/api/webhooks/configs"
req, err := http.NewRequestWithContext(ctx, "GET", url, nil)
if err != nil {
return nil, fmt.Errorf("error creating request: %w", err)
}
if err := utils.PopulateQueryParams(ctx, req, request, nil); err != nil {
return nil, fmt.Errorf("error populating query params: %w", err)
}
client := s.securityClient
httpRes, err := client.Do(req)
if err != nil {
return nil, fmt.Errorf("error sending request: %w", err)
}
if httpRes == nil {
return nil, fmt.Errorf("error sending request: no response")
}
defer httpRes.Body.Close()
contentType := httpRes.Header.Get("Content-Type")
res := &operations.GetManyConfigsResponse{
StatusCode: httpRes.StatusCode,
ContentType: contentType,
RawResponse: httpRes,
}
switch {
case httpRes.StatusCode == 200:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *shared.ConfigsResponse
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.ConfigsResponse = out
}
}
return res, nil
}
// InsertConfig - Insert a new config
// Insert a new webhooks config.
//
// The endpoint should be a valid https URL and be unique.
//
// The secret is the endpoint's verification secret.
// If not passed or empty, a secret is automatically generated.
// The format is a random string of bytes of size 24, base64 encoded. (larger size after encoding)
//
// All eventTypes are converted to lower-case when inserted.
func (s *webhooks) InsertConfig(ctx context.Context, request shared.ConfigUser) (*operations.InsertConfigResponse, error) {
baseURL := s.serverURL
url := strings.TrimSuffix(baseURL, "/") + "/api/webhooks/configs"
bodyReader, reqContentType, err := utils.SerializeRequestBody(ctx, request, "Request", "json")
if err != nil {
return nil, fmt.Errorf("error serializing request body: %w", err)
}
if bodyReader == nil {
return nil, fmt.Errorf("request body is required")
}
req, err := http.NewRequestWithContext(ctx, "POST", url, bodyReader)
if err != nil {
return nil, fmt.Errorf("error creating request: %w", err)
}
req.Header.Set("Content-Type", reqContentType)
client := s.securityClient
httpRes, err := client.Do(req)
if err != nil {
return nil, fmt.Errorf("error sending request: %w", err)
}
if httpRes == nil {
return nil, fmt.Errorf("error sending request: no response")
}
defer httpRes.Body.Close()
contentType := httpRes.Header.Get("Content-Type")
res := &operations.InsertConfigResponse{
StatusCode: httpRes.StatusCode,
ContentType: contentType,
RawResponse: httpRes,
}
switch {
case httpRes.StatusCode == 200:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *shared.ConfigResponse
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.ConfigResponse = out
}
case httpRes.StatusCode == 400:
switch {
case utils.MatchContentType(contentType, `text/plain`):
data, err := io.ReadAll(httpRes.Body)
if err != nil {
return nil, fmt.Errorf("error reading response body: %w", err)
}
out := string(data)
res.InsertConfig400TextPlainString = &out
}
}
return res, nil
}
// TestConfig - Test one config
// Test a config by sending a webhook to its endpoint.
func (s *webhooks) TestConfig(ctx context.Context, request operations.TestConfigRequest) (*operations.TestConfigResponse, error) {
baseURL := s.serverURL
url := utils.GenerateURL(ctx, baseURL, "/api/webhooks/configs/{id}/test", request, nil)
req, err := http.NewRequestWithContext(ctx, "GET", url, nil)
if err != nil {
return nil, fmt.Errorf("error creating request: %w", err)
}
client := s.securityClient
httpRes, err := client.Do(req)
if err != nil {
return nil, fmt.Errorf("error sending request: %w", err)
}
if httpRes == nil {
return nil, fmt.Errorf("error sending request: no response")
}
defer httpRes.Body.Close()
contentType := httpRes.Header.Get("Content-Type")
res := &operations.TestConfigResponse{
StatusCode: httpRes.StatusCode,
ContentType: contentType,
RawResponse: httpRes,
}
switch {
case httpRes.StatusCode == 200:
switch {
case utils.MatchContentType(contentType, `application/json`):
var out *shared.AttemptResponse
if err := utils.UnmarshalJsonFromResponseBody(httpRes.Body, &out); err != nil {
return nil, err
}
res.AttemptResponse = out
}
}
return res, nil
}