-
Notifications
You must be signed in to change notification settings - Fork 4
/
webhooks.go
135 lines (109 loc) · 3.42 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
package mailersend
import (
"context"
"fmt"
"net/http"
"time"
)
const webhookBasePath = "/webhooks"
type WebhookService service
// webhookRoot - format of webhook response
type webhookRoot struct {
Data []webhook `json:"data"`
Links Links `json:"links"`
Meta Meta `json:"meta"`
}
// singleWebhookRoot - format of webhook response
type singleWebhookRoot struct {
Data webhook `json:"data"`
}
type webhook struct {
ID string `json:"id"`
URL string `json:"url"`
Events []string `json:"events"`
Name string `json:"name"`
Enabled bool `json:"enabled"`
Editable bool `json:"editable"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
Domain Domain `json:"domain"`
}
// ListWebhookOptions - modifies the behavior of *WebhookService.List Method
type ListWebhookOptions struct {
DomainID string `url:"domain_id"`
Limit int `url:"limit,omitempty"`
}
// CreateWebhookOptions - modifies the behavior of *WebhookService.Create Method
type CreateWebhookOptions struct {
Name string `json:"name"`
DomainID string `json:"domain_id"`
URL string `json:"url"`
Enabled *bool `json:"enabled,omitempty"`
Events []string `json:"events"`
}
// UpdateWebhookOptions - modifies the behavior of *WebhookService.Update Method
type UpdateWebhookOptions struct {
WebhookID string `json:"-"`
Name string `json:"name,omitempty"`
URL string `json:"url,omitempty"`
Enabled *bool `json:"enabled,omitempty"`
Events []string `json:"events,omitempty"`
}
func (s *WebhookService) List(ctx context.Context, options *ListWebhookOptions) (*webhookRoot, *Response, error) {
req, err := s.client.newRequest(http.MethodGet, webhookBasePath, options)
if err != nil {
return nil, nil, err
}
root := new(webhookRoot)
res, err := s.client.do(ctx, req, root)
if err != nil {
return nil, res, err
}
return root, res, nil
}
func (s *WebhookService) Get(ctx context.Context, webhookID string) (*singleWebhookRoot, *Response, error) {
path := fmt.Sprintf("%s/%s", webhookBasePath, webhookID)
req, err := s.client.newRequest(http.MethodGet, path, nil)
if err != nil {
return nil, nil, err
}
root := new(singleWebhookRoot)
res, err := s.client.do(ctx, req, root)
if err != nil {
return nil, res, err
}
return root, res, nil
}
func (s *WebhookService) Create(ctx context.Context, options *CreateWebhookOptions) (*singleWebhookRoot, *Response, error) {
req, err := s.client.newRequest(http.MethodPost, webhookBasePath, options)
if err != nil {
return nil, nil, err
}
root := new(singleWebhookRoot)
res, err := s.client.do(ctx, req, root)
if err != nil {
return nil, res, err
}
return root, res, nil
}
func (s *WebhookService) Update(ctx context.Context, options *UpdateWebhookOptions) (*singleWebhookRoot, *Response, error) {
path := fmt.Sprintf("%s/%s", webhookBasePath, options.WebhookID)
req, err := s.client.newRequest(http.MethodPut, path, options)
if err != nil {
return nil, nil, err
}
root := new(singleWebhookRoot)
res, err := s.client.do(ctx, req, root)
if err != nil {
return nil, res, err
}
return root, res, nil
}
func (s *WebhookService) Delete(ctx context.Context, webhookID string) (*Response, error) {
path := fmt.Sprintf("%s/%s", webhookBasePath, webhookID)
req, err := s.client.newRequest(http.MethodDelete, path, nil)
if err != nil {
return nil, err
}
return s.client.do(ctx, req, nil)
}