-
Notifications
You must be signed in to change notification settings - Fork 1
/
user_email_contact.go
283 lines (244 loc) · 8.75 KB
/
user_email_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
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
package ilert
import (
"encoding/json"
"errors"
"fmt"
)
// UserEmailContact definition https://api.ilert.com/api-docs/#tag/Contacts
type UserEmailContact struct {
ID int64 `json:"id,omitempty"`
Target string `json:"target"`
Status string `json:"status,omitempty"`
}
// UserContactStatus defines user contact status
var UserContactStatus = struct {
Ok string
Locked string
Blacklisted string
}{
Ok: "OK",
Locked: "LOCKED",
Blacklisted: "BLACKLISTED",
}
// UserContactStatusAll defines user contact status list
var UserContactStatusAll = []string{
UserContactStatus.Ok,
UserContactStatus.Locked,
UserContactStatus.Blacklisted,
}
// CreateUserEmailContactInput represents the input of a CreateUserEmailContact operation.
type CreateUserEmailContactInput struct {
_ struct{}
UserID *int64
UserEmailContact *UserEmailContact
}
// CreateUserEmailContactOutput represents the output of a CreateUserEmailContact operation.
type CreateUserEmailContactOutput struct {
_ struct{}
UserEmailContact *UserEmailContact
}
// CreateUserEmailContact creates a new email contact for a user. Requires ADMIN privileges or user id equals your current user. https://api.ilert.com/api-docs/#tag/Contacts/paths/~1users~1{user-id}~1contacts~1emails/post
func (c *Client) CreateUserEmailContact(input *CreateUserEmailContactInput) (*CreateUserEmailContactOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.UserID == nil {
return nil, errors.New("user id is required")
}
if input.UserEmailContact == nil {
return nil, errors.New("user email contact input is required")
}
url := fmt.Sprintf("%s/%d/contacts/emails", apiRoutes.users, *input.UserID)
resp, err := c.httpClient.R().SetBody(input.UserEmailContact).Post(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 201); apiErr != nil {
return nil, apiErr
}
contact := &UserEmailContact{}
err = json.Unmarshal(resp.Body(), contact)
if err != nil {
return nil, err
}
return &CreateUserEmailContactOutput{UserEmailContact: contact}, nil
}
// GetUserEmailContactInput represents the input of a GetUserEmailContact operation.
type GetUserEmailContactInput struct {
_ struct{}
UserID *int64
UserEmailContactID *int64
}
// GetUserEmailContactOutput represents the output of a GetUserEmailContact operation.
type GetUserEmailContactOutput struct {
_ struct{}
UserEmailContact *UserEmailContact
}
// GetUserEmailContact gets an email contact of a user by id. https://api.ilert.com/api-docs/#tag/Contacts/paths/~1users~1{user-id}~1contacts~1emails~1{id}/get
func (c *Client) GetUserEmailContact(input *GetUserEmailContactInput) (*GetUserEmailContactOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.UserID == nil {
return nil, errors.New("user id is required")
}
if input.UserEmailContactID == nil {
return nil, errors.New("user email contact id is required")
}
url := fmt.Sprintf("%s/%d/contacts/emails/%d", apiRoutes.users, *input.UserID, *input.UserEmailContactID)
resp, err := c.httpClient.R().Get(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
contact := &UserEmailContact{}
err = json.Unmarshal(resp.Body(), contact)
if err != nil {
return nil, err
}
return &GetUserEmailContactOutput{UserEmailContact: contact}, nil
}
// GetUserEmailContactsInput represents the input of a GetUserEmailContacts operation.
type GetUserEmailContactsInput struct {
_ struct{}
UserID *int64
}
// GetUserEmailContactsOutput represents the output of a GetUserEmailContacts operation.
type GetUserEmailContactsOutput struct {
_ struct{}
UserEmailContacts []*UserEmailContact
}
// GetUserEmailContacts lists existing email contacts of a user. https://api.ilert.com/api-docs/#tag/Contacts/paths/~1users~1{user-id}~1contacts~1emails/get
func (c *Client) GetUserEmailContacts(input *GetUserEmailContactsInput) (*GetUserEmailContactsOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.UserID == nil {
return nil, errors.New("user id is required")
}
url := fmt.Sprintf("%s/%d/contacts/emails", apiRoutes.users, *input.UserID)
resp, err := c.httpClient.R().Get(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
contacts := make([]*UserEmailContact, 0)
err = json.Unmarshal(resp.Body(), &contacts)
if err != nil {
return nil, err
}
return &GetUserEmailContactsOutput{UserEmailContacts: contacts}, nil
}
// SearchUserEmailContactInput represents the input of a SearchUserEmailContact operation.
type SearchUserEmailContactInput struct {
_ struct{}
UserID *int64
UserEmailContactTarget *string
}
// SearchUserEmailContactOutput represents the output of a SearchUserEmailContact operation.
type SearchUserEmailContactOutput struct {
_ struct{}
UserEmailContact *UserEmailContact
}
// SearchUserEmailContact gets the email contact with specified target of a user.
func (c *Client) SearchUserEmailContact(input *SearchUserEmailContactInput) (*SearchUserEmailContactOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.UserID == nil {
return nil, errors.New("user id is required")
}
if input.UserEmailContactTarget == nil {
return nil, errors.New("user email contact target is required")
}
url := fmt.Sprintf("%s/%d/contacts/emails/search-target", apiRoutes.users, *input.UserID)
resp, err := c.httpClient.R().SetBody(UserEmailContact{Target: *input.UserEmailContactTarget}).Post(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
contact := &UserEmailContact{}
err = json.Unmarshal(resp.Body(), contact)
if err != nil {
return nil, err
}
return &SearchUserEmailContactOutput{UserEmailContact: contact}, nil
}
// UpdateUserEmailContactInput represents the input of a UpdateUserEmailContact operation.
type UpdateUserEmailContactInput struct {
_ struct{}
UserID *int64
UserEmailContactID *int64
UserEmailContact *UserEmailContact
}
// UpdateUserEmailContactOutput represents the output of a UpdateUserEmailContact operation.
type UpdateUserEmailContactOutput struct {
_ struct{}
UserEmailContact *UserEmailContact
}
// UpdateUserEmailContact updates an existing email contact of a user. https://api.ilert.com/api-docs/#tag/Contacts/paths/~1users~1{user-id}~1contacts~1emails~1{id}/put
func (c *Client) UpdateUserEmailContact(input *UpdateUserEmailContactInput) (*UpdateUserEmailContactOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.UserID == nil {
return nil, errors.New("user id is required")
}
if input.UserEmailContactID == nil {
return nil, errors.New("user email contact id is required")
}
if input.UserEmailContact == nil {
return nil, errors.New("user input is required")
}
url := fmt.Sprintf("%s/%d/contacts/emails/%d", apiRoutes.users, *input.UserID, *input.UserEmailContactID)
resp, err := c.httpClient.R().SetBody(input.UserEmailContact).Put(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
contact := &UserEmailContact{}
err = json.Unmarshal(resp.Body(), contact)
if err != nil {
return nil, err
}
return &UpdateUserEmailContactOutput{UserEmailContact: contact}, nil
}
// DeleteUserEmailContactInput represents the input of a DeleteUserEmailContact operation.
type DeleteUserEmailContactInput struct {
_ struct{}
UserID *int64
UserEmailContactID *int64
}
// DeleteUserEmailContactOutput represents the output of a DeleteUserEmailContact operation.
type DeleteUserEmailContactOutput struct {
_ struct{}
}
// DeleteUserEmailContact deletes the specified email contact of a user. https://api.ilert.com/api-docs/#tag/Contacts/paths/~1users~1{user-id}~1contacts~1emails~1{id}/delete
func (c *Client) DeleteUserEmailContact(input *DeleteUserEmailContactInput) (*DeleteUserEmailContactOutput, error) {
if input == nil {
return nil, errors.New("input is required")
}
if input.UserID == nil {
return nil, errors.New("user id is required")
}
if input.UserEmailContactID == nil {
return nil, errors.New("user email contact id is required")
}
url := fmt.Sprintf("%s/%d/contacts/emails/%d", apiRoutes.users, *input.UserID, *input.UserEmailContactID)
resp, err := c.httpClient.R().Delete(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 204); apiErr != nil {
return nil, apiErr
}
return &DeleteUserEmailContactOutput{}, nil
}