This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
application.go
320 lines (261 loc) · 9.59 KB
/
application.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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
package vonage
import (
"context"
"encoding/json"
"github.com/antihax/optional"
"github.com/vonage/vonage-go-sdk/internal/application"
)
// ApplicationClient for working with the Application API
type ApplicationClient struct {
Config *application.Configuration
apiKey string
apiSecret string
}
// NewApplicationClient Creates a new Application Client, supplying an Auth to work with
func NewApplicationClient(Auth Auth) *ApplicationClient {
client := new(ApplicationClient)
creds := Auth.GetCreds()
client.apiKey = creds[0]
client.apiSecret = creds[1]
client.Config = application.NewConfiguration()
client.Config.UserAgent = GetUserAgent()
return client
}
// ApplicationErrorResponse respresents error responses
type ApplicationErrorResponse struct {
Type string `json:"type,omitempty"`
Title string `json:"title,omitempty"`
Detail string `json:"detail,omitempty"`
Instance string `json:"instance,omitempty"`
}
type GetApplicationsOpts struct {
PageSize int32
Page int32
}
type ApplicationResponse struct {
Id string
Name string
Capabilities application.ApplicationResponseCapabilities
Keys application.ApplicationResponseKeys
}
type ApplicationResponseCollectionEmbedded struct {
Applications []ApplicationResponse
}
type ApplicationResponseCollection struct {
PageSize int32
Page int32
TotalItems int32
TotalPages int32
Embedded ApplicationResponseCollectionEmbedded
}
// List your Applications
func (client *ApplicationClient) GetApplications(opts GetApplicationsOpts) (ApplicationResponseCollection, ApplicationErrorResponse, error) {
// create the client
applicationClient := application.NewAPIClient(client.Config)
AppOpts := application.ListApplicationOpts{}
if opts.Page != 0 {
AppOpts.Page = optional.NewInt32(opts.Page)
}
if opts.PageSize != 0 {
AppOpts.PageSize = optional.NewInt32(opts.PageSize)
}
ctx := context.WithValue(context.Background(), application.ContextBasicAuth, application.BasicAuth{
UserName: client.apiKey,
Password: client.apiSecret,
})
result, _, err := applicationClient.DefaultApi.ListApplication(ctx, &AppOpts)
if err != nil {
e, ok := err.(application.GenericOpenAPIError)
if ok {
data := e.Body()
var errResp ApplicationErrorResponse
jsonErr := json.Unmarshal(data, &errResp)
if jsonErr == nil {
return ApplicationResponseCollection{}, errResp, err
}
}
// this catches other error types
return ApplicationResponseCollection{}, ApplicationErrorResponse{}, err
}
// deep-convert the collection into our wrapper structs
var collection ApplicationResponseCollection
var apps []ApplicationResponse
for _, app := range result.Embedded.Applications {
apps = append(apps, ApplicationResponse(app))
}
collection.Embedded = ApplicationResponseCollectionEmbedded{Applications: apps}
collection.PageSize = result.PageSize
collection.Page = result.Page
collection.TotalItems = result.TotalItems
collection.TotalPages = result.TotalPages
return collection, ApplicationErrorResponse{}, nil
}
// GetApplication returns one application, by app ID
func (client *ApplicationClient) GetApplication(app_id string) (ApplicationResponse, ApplicationErrorResponse, error) {
// create the client
applicationClient := application.NewAPIClient(client.Config)
ctx := context.WithValue(context.Background(), application.ContextBasicAuth, application.BasicAuth{
UserName: client.apiKey,
Password: client.apiSecret,
})
result, _, err := applicationClient.DefaultApi.GetApplication(ctx, app_id)
if err != nil {
e, ok := err.(application.GenericOpenAPIError)
if ok {
data := e.Body()
var errResp ApplicationErrorResponse
jsonErr := json.Unmarshal(data, &errResp)
if jsonErr == nil {
return ApplicationResponse{}, errResp, err
}
}
return ApplicationResponse(result), ApplicationErrorResponse{}, err
}
return ApplicationResponse(result), ApplicationErrorResponse{}, nil
}
type ApplicationUrl struct {
Address string `json:"address,omitempty"`
HttpMethod string `json:"http_method,omitempty"`
}
type ApplicationMessagesWebhooks struct {
InboundUrl ApplicationUrl `json:"inbound_url,omitempty"`
StatusUrl ApplicationUrl `json:"status_url,omitempty"`
}
type ApplicationVoiceWebhooks struct {
AnswerUrl ApplicationUrl `json:"answer_url,omitempty"`
FallbackAnswerUrl ApplicationUrl `json:"fallback_answer_url,omitempty"`
EventUrl ApplicationUrl `json:"event_url,omitempty"`
}
type ApplicationRtcWebhooks struct {
EventUrl ApplicationUrl `json:"event_url,omitempty"`
}
type ApplicationMessages struct {
Webhooks ApplicationMessagesWebhooks `json:"webhooks,omitempty"`
}
type ApplicationVoice struct {
Webhooks ApplicationVoiceWebhooks `json:"webhooks,omitempty"`
}
type ApplicationRtc struct {
Webhooks ApplicationRtcWebhooks `json:"webhooks,omitempty"`
}
type ApplicationVbc struct {
}
// Use pointers so we can tell which things were intentionally sent, or not
type ApplicationCapabilities struct {
Voice *ApplicationVoice `json:"voice,omitempty"`
Rtc *ApplicationRtc `json:"rtc,omitempty"`
Messages *ApplicationMessages `json:"messages,omitempty"`
Vbc *ApplicationVbc `json:"vbc,omitempty"`
}
type ApplicationKeys struct {
PublicKey string `json:"public_key,omitempty"`
}
// CreateApplicationOpts holds the optional values for a CreateApplication operation
type CreateApplicationOpts struct {
Keys ApplicationKeys
Capabilities ApplicationCapabilities
}
// CreateApplicationRequestOpts the data structure to send to the API calling code,
// used inside CreateApplication rather than as an incoming argument
type CreateApplicationRequestOpts struct {
Name string `json:"name,omitempty"`
Keys *ApplicationKeys `json:"keys,omitempty"`
Capabilities ApplicationCapabilities `json:"capabilities,omitempty"`
}
// CreateApplication creates a new application
func (client *ApplicationClient) CreateApplication(name string, opts CreateApplicationOpts) (ApplicationResponse, ApplicationErrorResponse, error) {
// create the client
applicationClient := application.NewAPIClient(client.Config)
AppOpts := CreateApplicationRequestOpts{}
AppOpts.Name = name
AppOpts.Capabilities = opts.Capabilities
if opts.Keys.PublicKey != "" {
// the user supplied a public key
AppOpts.Keys = &opts.Keys
}
createOpts := application.CreateApplicationOpts{Opts: optional.NewInterface(AppOpts)}
ctx := context.WithValue(context.Background(), application.ContextBasicAuth, application.BasicAuth{
UserName: client.apiKey,
Password: client.apiSecret,
})
result, _, err := applicationClient.DefaultApi.CreateApplication(ctx, &createOpts)
if err != nil {
e, ok := err.(application.GenericOpenAPIError)
if ok {
data := e.Body()
var errResp ApplicationErrorResponse
jsonErr := json.Unmarshal(data, &errResp)
if jsonErr == nil {
return ApplicationResponse{}, errResp, err
}
}
return ApplicationResponse(result), ApplicationErrorResponse{}, err
}
return ApplicationResponse(result), ApplicationErrorResponse{}, nil
}
// Delete application deletes an application
func (client *ApplicationClient) DeleteApplication(app_id string) (bool, ApplicationErrorResponse, error) {
// create the client
applicationClient := application.NewAPIClient(client.Config)
ctx := context.WithValue(context.Background(), application.ContextBasicAuth, application.BasicAuth{
UserName: client.apiKey,
Password: client.apiSecret,
})
_, err := applicationClient.DefaultApi.DeleteApplication(ctx, app_id)
if err != nil {
e, ok := err.(application.GenericOpenAPIError)
if ok {
data := e.Body()
var errResp ApplicationErrorResponse
jsonErr := json.Unmarshal(data, &errResp)
if jsonErr == nil {
return false, errResp, err
}
}
return false, ApplicationErrorResponse{}, err
}
return true, ApplicationErrorResponse{}, nil
}
// UpdateApplicationOpts holds the optional values for a UpdateApplication operation
type UpdateApplicationOpts struct {
Keys ApplicationKeys
Capabilities ApplicationCapabilities
}
// UpdateApplicationRequestOpts the data structure to send to the API calling code,
// used inside UpdateApplication rather than as an incoming argument
type UpdateApplicationRequestOpts struct {
Name string `json:"name,omitempty"`
Keys *ApplicationKeys `json:"keys,omitempty"`
Capabilities ApplicationCapabilities `json:"capabilities,omitempty"`
}
// UpdateApplication updates an existing application
func (client *ApplicationClient) UpdateApplication(id string, name string, opts UpdateApplicationOpts) (ApplicationResponse, ApplicationErrorResponse, error) {
// create the client
applicationClient := application.NewAPIClient(client.Config)
AppOpts := UpdateApplicationRequestOpts{}
AppOpts.Name = name
AppOpts.Capabilities = opts.Capabilities
if opts.Keys.PublicKey != "" {
// the user supplied a public key
AppOpts.Keys = &opts.Keys
}
updateOpts := application.UpdateApplicationOpts{Opts: optional.NewInterface(AppOpts)}
ctx := context.WithValue(context.Background(), application.ContextBasicAuth, application.BasicAuth{
UserName: client.apiKey,
Password: client.apiSecret,
})
result, _, err := applicationClient.DefaultApi.UpdateApplication(ctx, id, &updateOpts)
if err != nil {
e, ok := err.(application.GenericOpenAPIError)
if ok {
data := e.Body()
var errResp ApplicationErrorResponse
jsonErr := json.Unmarshal(data, &errResp)
if jsonErr == nil {
return ApplicationResponse{}, errResp, err
}
}
return ApplicationResponse(result), ApplicationErrorResponse{}, err
}
return ApplicationResponse(result), ApplicationErrorResponse{}, nil
}