-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsubscribers.go
197 lines (162 loc) · 5.9 KB
/
subscribers.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
package mailerlite
import (
"context"
"fmt"
"net/http"
)
const subscriberEndpoint = "/subscribers"
// SubscriberService defines an interface for subscriber-related operations.
type SubscriberService interface {
List(ctx context.Context, options *ListSubscriberOptions) (*RootSubscribers, *Response, error)
Count(ctx context.Context) (*Count, *Response, error)
Get(ctx context.Context, options *GetSubscriberOptions) (*RootSubscriber, *Response, error)
Create(ctx context.Context, subscriber *Subscriber) (*RootSubscriber, *Response, error)
Update(ctx context.Context, subscriber *Subscriber) (*RootSubscriber, *Response, error)
Delete(ctx context.Context, subscriberID string) (*Response, error)
Forget(ctx context.Context, subscriberID string) (*RootSubscriber, *Response, error)
}
// subscriberService implements SubscriberService.
type subscriberService struct {
*service
}
// subscribers - subscribers response
type RootSubscribers struct {
Data []Subscriber `json:"data"`
Links Links `json:"links"`
Meta Meta `json:"meta"`
}
// subscribers - subscribers response
type RootSubscriber struct {
Data Subscriber `json:"data"`
}
type Count struct {
Total int `json:"total"`
}
type Subscriber struct {
ID string `json:"id,omitempty"`
Email string `json:"email,omitempty"`
Status string `json:"status,omitempty"`
Source string `json:"source,omitempty"`
Sent int `json:"sent,omitempty"`
OpensCount int `json:"opens_count,omitempty"`
ClicksCount int `json:"clicks_count,omitempty"`
OpenRate float64 `json:"open_rate,omitempty"`
ClickRate float64 `json:"click_rate,omitempty"`
IPAddress interface{} `json:"ip_address,omitempty"`
SubscribedAt string `json:"subscribed_at,omitempty"`
UnsubscribedAt interface{} `json:"unsubscribed_at,omitempty"`
CreatedAt string `json:"created_at,omitempty"`
UpdatedAt string `json:"updated_at,omitempty"`
Fields map[string]interface{} `json:"fields,omitempty"`
Groups []Group `json:"groups,omitempty"`
OptedInAt string `json:"opted_in_at,omitempty"`
OptinIP string `json:"optin_ip,omitempty"`
}
// ListSubscriberOptions - modifies the behavior of SubscriberService.List method
type ListSubscriberOptions struct {
Filters *[]Filter `json:"filters,omitempty"`
Page int `url:"page,omitempty"`
Limit int `url:"limit,omitempty"`
}
// GetSubscriberOptions - modifies the behavior of SubscriberService.Get method
type GetSubscriberOptions struct {
SubscriberID string `json:"id,omitempty"`
Email string `json:"email,omitempty"`
}
func (s *subscriberService) List(ctx context.Context, options *ListSubscriberOptions) (*RootSubscribers, *Response, error) {
req, err := s.client.newRequest(http.MethodGet, subscriberEndpoint, options)
if err != nil {
return nil, nil, err
}
root := new(RootSubscribers)
res, err := s.client.do(ctx, req, root)
if err != nil {
return nil, res, err
}
return root, res, nil
}
// Count - get a count of subscribers
func (s *subscriberService) Count(ctx context.Context) (*Count, *Response, error) {
path := fmt.Sprintf("%s?limit=0", subscriberEndpoint)
req, err := s.client.newRequest(http.MethodGet, path, nil)
if err != nil {
return nil, nil, err
}
root := new(Count)
res, err := s.client.do(ctx, req, root)
if err != nil {
return nil, res, err
}
return root, res, nil
}
// Get - get a single subscriber by email or ID
func (s *subscriberService) Get(ctx context.Context, options *GetSubscriberOptions) (*RootSubscriber, *Response, error) {
param := options.SubscriberID
if options.Email != "" {
param = options.Email
}
path := fmt.Sprintf("%s/%s", subscriberEndpoint, param)
req, err := s.client.newRequest(http.MethodGet, path, nil)
if err != nil {
return nil, nil, err
}
root := new(RootSubscriber)
res, err := s.client.do(ctx, req, root)
if err != nil {
return nil, res, err
}
return root, res, nil
}
func (s *subscriberService) Create(ctx context.Context, subscriber *Subscriber) (*RootSubscriber, *Response, error) {
req, err := s.client.newRequest(http.MethodPost, subscriberEndpoint, subscriber)
if err != nil {
return nil, nil, err
}
root := new(RootSubscriber)
res, err := s.client.do(ctx, req, root)
if err != nil {
return nil, res, err
}
return root, res, nil
}
func (s *subscriberService) Upsert(ctx context.Context, subscriber *Subscriber) (*RootSubscriber, *Response, error) {
return s.Create(ctx, subscriber)
}
func (s *subscriberService) Update(ctx context.Context, subscriber *Subscriber) (*RootSubscriber, *Response, error) {
path := fmt.Sprintf("%s/%s", subscriberEndpoint, subscriber.ID)
req, err := s.client.newRequest(http.MethodPut, path, subscriber)
if err != nil {
return nil, nil, err
}
root := new(RootSubscriber)
res, err := s.client.do(ctx, req, root)
if err != nil {
return nil, res, err
}
return root, res, nil
}
func (s *subscriberService) Delete(ctx context.Context, subscriberID string) (*Response, error) {
path := fmt.Sprintf("%s/%s", subscriberEndpoint, subscriberID)
req, err := s.client.newRequest(http.MethodDelete, path, nil)
if err != nil {
return nil, err
}
res, err := s.client.do(ctx, req, nil)
if err != nil {
return res, err
}
return res, nil
}
func (s *subscriberService) Forget(ctx context.Context, subscriberID string) (*RootSubscriber, *Response, error) {
path := fmt.Sprintf("%s/%s/forget", subscriberEndpoint, subscriberID)
req, err := s.client.newRequest(http.MethodPost, path, nil)
if err != nil {
return nil, nil, err
}
root := new(RootSubscriber)
res, err := s.client.do(ctx, req, root)
if err != nil {
return nil, res, err
}
return root, res, nil
}