-
Notifications
You must be signed in to change notification settings - Fork 1
/
user_phone_number_contact.go
266 lines (229 loc) · 9.28 KB
/
user_phone_number_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
package ilert
import (
"encoding/json"
"errors"
"fmt"
)
// UserPhoneNumberContact definition https://api.ilert.com/api-docs/#tag/Contacts
type UserPhoneNumberContact struct {
ID int64 `json:"id,omitempty"`
RegionCode string `json:"regionCode"`
Target string `json:"target"`
Status string `json:"status,omitempty"`
}
// CreateUserPhoneNumberContactInput represents the input of a CreateUserPhoneNumberContact operation.
type CreateUserPhoneNumberContactInput struct {
_ struct{}
UserID *int64
UserPhoneNumberContact *UserPhoneNumberContact
}
// CreateUserPhoneNumberContactOutput represents the output of a CreateUserPhoneNumberContact operation.
type CreateUserPhoneNumberContactOutput struct {
_ struct{}
UserPhoneNumberContact *UserPhoneNumberContact
}
// CreateUserPhoneNumberContact creates a new phone number 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~1phone-numbers/post
func (c *Client) CreateUserPhoneNumberContact(input *CreateUserPhoneNumberContactInput) (*CreateUserPhoneNumberContactOutput, 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.UserPhoneNumberContact == nil {
return nil, errors.New("user phone number contact input is required")
}
url := fmt.Sprintf("%s/%d/contacts/phone-numbers", apiRoutes.users, *input.UserID)
resp, err := c.httpClient.R().SetBody(input.UserPhoneNumberContact).Post(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 201); apiErr != nil {
return nil, apiErr
}
contact := &UserPhoneNumberContact{}
err = json.Unmarshal(resp.Body(), contact)
if err != nil {
return nil, err
}
return &CreateUserPhoneNumberContactOutput{UserPhoneNumberContact: contact}, nil
}
// GetUserPhoneNumberContactInput represents the input of a GetUserPhoneNumberContact operation.
type GetUserPhoneNumberContactInput struct {
_ struct{}
UserID *int64
UserPhoneNumberContactID *int64
}
// GetUserPhoneNumberContactOutput represents the output of a GetUserPhoneNumberContact operation.
type GetUserPhoneNumberContactOutput struct {
_ struct{}
UserPhoneNumberContact *UserPhoneNumberContact
}
// GetUserPhoneNumberContact gets a phone number contact of a user by id. https://api.ilert.com/api-docs/#tag/Contacts/paths/~1users~1{user-id}~1contacts~1phone-numbers~1{id}/get
func (c *Client) GetUserPhoneNumberContact(input *GetUserPhoneNumberContactInput) (*GetUserPhoneNumberContactOutput, 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.UserPhoneNumberContactID == nil {
return nil, errors.New("user phone number contact id is required")
}
url := fmt.Sprintf("%s/%d/contacts/phone-numbers/%d", apiRoutes.users, *input.UserID, *input.UserPhoneNumberContactID)
resp, err := c.httpClient.R().Get(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
contact := &UserPhoneNumberContact{}
err = json.Unmarshal(resp.Body(), contact)
if err != nil {
return nil, err
}
return &GetUserPhoneNumberContactOutput{UserPhoneNumberContact: contact}, nil
}
// GetUserPhoneNumberContactsInput represents the input of a GetUserPhoneNumberContacts operation.
type GetUserPhoneNumberContactsInput struct {
_ struct{}
UserID *int64
}
// GetUserPhoneNumberContactsOutput represents the output of a GetUserPhoneNumberContacts operation.
type GetUserPhoneNumberContactsOutput struct {
_ struct{}
UserPhoneNumberContacts []*UserPhoneNumberContact
}
// GetUserPhoneNumberContacts lists existing phone number contacts of a user. https://api.ilert.com/api-docs/#tag/Contacts/paths/~1users~1{user-id}~1contacts~1phone-numbers/get
func (c *Client) GetUserPhoneNumberContacts(input *GetUserPhoneNumberContactsInput) (*GetUserPhoneNumberContactsOutput, 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/phone-numbers", 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([]*UserPhoneNumberContact, 0)
err = json.Unmarshal(resp.Body(), &contacts)
if err != nil {
return nil, err
}
return &GetUserPhoneNumberContactsOutput{UserPhoneNumberContacts: contacts}, nil
}
// SearchUserPhoneNumberContactInput represents the input of a SearchUserPhoneNumberContact operation.
type SearchUserPhoneNumberContactInput struct {
_ struct{}
UserID *int64
UserPhoneNumberContactTarget *string
}
// SearchUserPhoneNumberContactOutput represents the output of a SearchUserPhoneNumberContact operation.
type SearchUserPhoneNumberContactOutput struct {
_ struct{}
UserPhoneNumberContact *UserPhoneNumberContact
}
// SearchUserPhoneNumberContact gets the phone number contact with specified target of a user.
func (c *Client) SearchUserPhoneNumberContact(input *SearchUserPhoneNumberContactInput) (*SearchUserPhoneNumberContactOutput, 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.UserPhoneNumberContactTarget == nil {
return nil, errors.New("user phone number contact target is required")
}
url := fmt.Sprintf("%s/%d/contacts/phone-numbers/search-target", apiRoutes.users, *input.UserID)
resp, err := c.httpClient.R().SetBody(UserPhoneNumberContact{Target: *input.UserPhoneNumberContactTarget}).Post(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
contact := &UserPhoneNumberContact{}
err = json.Unmarshal(resp.Body(), contact)
if err != nil {
return nil, err
}
return &SearchUserPhoneNumberContactOutput{UserPhoneNumberContact: contact}, nil
}
// UpdateUserPhoneNumberContactInput represents the input of a UpdateUserPhoneNumberContact operation.
type UpdateUserPhoneNumberContactInput struct {
_ struct{}
UserID *int64
UserPhoneNumberContactID *int64
UserPhoneNumberContact *UserPhoneNumberContact
}
// UpdateUserPhoneNumberContactOutput represents the output of a UpdateUserPhoneNumberContact operation.
type UpdateUserPhoneNumberContactOutput struct {
_ struct{}
UserPhoneNumberContact *UserPhoneNumberContact
}
// UpdateUserPhoneNumberContact updates an existing phone number contact of a user. https://api.ilert.com/api-docs/#tag/Contacts/paths/~1users~1{user-id}~1contacts~1phone-numbers~1{id}/put
func (c *Client) UpdateUserPhoneNumberContact(input *UpdateUserPhoneNumberContactInput) (*UpdateUserPhoneNumberContactOutput, 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.UserPhoneNumberContactID == nil {
return nil, errors.New("user phone number contact id is required")
}
if input.UserPhoneNumberContact == nil {
return nil, errors.New("user input is required")
}
url := fmt.Sprintf("%s/%d/contacts/phone-numbers/%d", apiRoutes.users, *input.UserID, *input.UserPhoneNumberContactID)
resp, err := c.httpClient.R().SetBody(input.UserPhoneNumberContact).Put(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 200); apiErr != nil {
return nil, apiErr
}
contact := &UserPhoneNumberContact{}
err = json.Unmarshal(resp.Body(), contact)
if err != nil {
return nil, err
}
return &UpdateUserPhoneNumberContactOutput{UserPhoneNumberContact: contact}, nil
}
// DeleteUserPhoneNumberContactInput represents the input of a DeleteUserPhoneNumberContact operation.
type DeleteUserPhoneNumberContactInput struct {
_ struct{}
UserID *int64
UserPhoneNumberContactID *int64
}
// DeleteUserPhoneNumberContactOutput represents the output of a DeleteUserPhoneNumberContact operation.
type DeleteUserPhoneNumberContactOutput struct {
_ struct{}
}
// DeleteUserPhoneNumberContact deletes the specified phone number contact of a user. https://api.ilert.com/api-docs/#tag/Contacts/paths/~1users~1{user-id}~1contacts~1phone-numbers~1{id}/delete
func (c *Client) DeleteUserPhoneNumberContact(input *DeleteUserPhoneNumberContactInput) (*DeleteUserPhoneNumberContactOutput, 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.UserPhoneNumberContactID == nil {
return nil, errors.New("user phone number contact id is required")
}
url := fmt.Sprintf("%s/%d/contacts/phone-numbers/%d", apiRoutes.users, *input.UserID, *input.UserPhoneNumberContactID)
resp, err := c.httpClient.R().Delete(url)
if err != nil {
return nil, err
}
if apiErr := getGenericAPIError(resp, 204); apiErr != nil {
return nil, apiErr
}
return &DeleteUserPhoneNumberContactOutput{}, nil
}