-
Notifications
You must be signed in to change notification settings - Fork 16
/
contact.go
201 lines (156 loc) · 4.78 KB
/
contact.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
package proton
import (
"context"
"strconv"
"github.com/go-resty/resty/v2"
)
func (c *Client) GetContact(ctx context.Context, contactID string) (Contact, error) {
var res struct {
Contact Contact
}
if err := c.do(ctx, func(r *resty.Request) (*resty.Response, error) {
return r.SetResult(&res).Get("/contacts/v4/" + contactID)
}); err != nil {
return Contact{}, err
}
return res.Contact, nil
}
func (c *Client) CountContacts(ctx context.Context) (int, error) {
var res struct {
Total int
}
if err := c.do(ctx, func(r *resty.Request) (*resty.Response, error) {
return r.SetResult(&res).Get("/contacts/v4")
}); err != nil {
return 0, err
}
return res.Total, nil
}
func (c *Client) CountContactEmails(ctx context.Context, email string) (int, error) {
var res struct {
Total int
}
if err := c.do(ctx, func(r *resty.Request) (*resty.Response, error) {
return r.SetResult(&res).SetQueryParam("Email", email).Get("/contacts/v4/emails")
}); err != nil {
return 0, err
}
return res.Total, nil
}
func (c *Client) GetContacts(ctx context.Context, page, pageSize int) ([]Contact, error) {
_, contacts, err := c.getContactsImpl(ctx, page, pageSize)
return contacts, err
}
func (c *Client) getContactsImpl(ctx context.Context, page, pageSize int) (int, []Contact, error) {
var res struct {
Contacts []Contact
Total int
}
if err := c.do(ctx, func(r *resty.Request) (*resty.Response, error) {
return r.SetQueryParams(map[string]string{
"Page": strconv.Itoa(page),
"PageSize": strconv.Itoa(pageSize),
}).SetResult(&res).Get("/contacts/v4")
}); err != nil {
return 0, nil, err
}
return res.Total, res.Contacts, nil
}
func (c *Client) GetAllContacts(ctx context.Context) ([]Contact, error) {
return c.GetAllContactsPaged(ctx, maxPageSize)
}
func (c *Client) GetAllContactsPaged(ctx context.Context, pageSize int) ([]Contact, error) {
if pageSize > maxPageSize {
pageSize = maxPageSize
}
total, firstBatch, err := c.getContactsImpl(ctx, 0, pageSize)
if err != nil {
return nil, err
}
if total <= pageSize {
return firstBatch, nil
}
remainingPages := (total / pageSize) + 1
for i := 1; i < remainingPages; i++ {
_, batch, err := c.getContactsImpl(ctx, i, pageSize)
if err != nil {
return nil, err
}
firstBatch = append(firstBatch, batch...)
}
return firstBatch, err
}
func (c *Client) GetContactEmails(ctx context.Context, email string, page, pageSize int) ([]ContactEmail, error) {
if pageSize > maxPageSize {
pageSize = maxPageSize
}
_, contacts, err := c.getContactEmailsImpl(ctx, email, page, pageSize)
return contacts, err
}
func (c *Client) getContactEmailsImpl(ctx context.Context, email string, page, pageSize int) (int, []ContactEmail, error) {
var res struct {
ContactEmails []ContactEmail
Total int
}
if err := c.do(ctx, func(r *resty.Request) (*resty.Response, error) {
return r.SetQueryParams(map[string]string{
"Page": strconv.Itoa(page),
"PageSize": strconv.Itoa(pageSize),
"Email": email,
}).SetResult(&res).Get("/contacts/v4/emails")
}); err != nil {
return 0, nil, err
}
return res.Total, res.ContactEmails, nil
}
func (c *Client) GetAllContactEmails(ctx context.Context, email string) ([]ContactEmail, error) {
return c.GetAllContactEmailsPaged(ctx, email, maxPageSize)
}
func (c *Client) GetAllContactEmailsPaged(ctx context.Context, email string, pageSize int) ([]ContactEmail, error) {
if pageSize > maxPageSize {
pageSize = maxPageSize
}
total, firstBatch, err := c.getContactEmailsImpl(ctx, email, 0, pageSize)
if err != nil {
return nil, err
}
if total <= pageSize {
return firstBatch, nil
}
remainingPages := (total / pageSize) + 1
for i := 1; i < remainingPages; i++ {
_, batch, err := c.getContactEmailsImpl(ctx, email, i, pageSize)
if err != nil {
return nil, err
}
firstBatch = append(firstBatch, batch...)
}
return firstBatch, err
}
func (c *Client) CreateContacts(ctx context.Context, req CreateContactsReq) ([]CreateContactsRes, error) {
var res struct {
Responses []CreateContactsRes
}
if err := c.do(ctx, func(r *resty.Request) (*resty.Response, error) {
return r.SetBody(req).SetResult(&res).Post("/contacts/v4")
}); err != nil {
return nil, err
}
return res.Responses, nil
}
func (c *Client) UpdateContact(ctx context.Context, contactID string, req UpdateContactReq) (Contact, error) {
var res struct {
Contact Contact
}
if err := c.do(ctx, func(r *resty.Request) (*resty.Response, error) {
return r.SetBody(req).SetResult(&res).Put("/contacts/v4/" + contactID)
}); err != nil {
return Contact{}, err
}
return res.Contact, nil
}
func (c *Client) DeleteContacts(ctx context.Context, req DeleteContactsReq) error {
return c.do(ctx, func(r *resty.Request) (*resty.Response, error) {
return r.SetBody(req).Put("/contacts/v4/delete")
})
}