-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathendpoint_handlers.go
318 lines (252 loc) · 6.92 KB
/
endpoint_handlers.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
package main
import (
"fmt"
"net/http"
"strconv"
"github.com/RedHatInsights/sources-api-go/dao"
"github.com/RedHatInsights/sources-api-go/marketplace"
m "github.com/RedHatInsights/sources-api-go/model"
"github.com/RedHatInsights/sources-api-go/service"
"github.com/RedHatInsights/sources-api-go/util"
echoUtils "github.com/RedHatInsights/sources-api-go/util/echo"
"github.com/labstack/echo/v4"
)
// function that defines how we get the dao - default implementation below.
var getEndpointDao func(c echo.Context) (dao.EndpointDao, error)
func getEndpointDaoWithTenant(c echo.Context) (dao.EndpointDao, error) {
tenantId, err := echoUtils.GetTenantFromEchoContext(c)
if err != nil {
return nil, err
}
return dao.GetEndpointDao(&tenantId), nil
}
func SourceListEndpoint(c echo.Context) error {
endpointDB, err := getEndpointDao(c)
if err != nil {
return err
}
filters, err := getFilters(c)
if err != nil {
return err
}
limit, offset, err := getLimitAndOffset(c)
if err != nil {
return err
}
var (
endpoints []m.Endpoint
count int64
)
id, err := strconv.ParseInt(c.Param("source_id"), 10, 64)
if err != nil {
return util.NewErrBadRequest(err)
}
endpoints, count, err = endpointDB.SubCollectionList(m.Source{ID: id}, limit, offset, filters)
if err != nil {
return err
}
c.Logger().Infof("tenant: %v", *endpointDB.Tenant())
out := make([]interface{}, len(endpoints))
for i := 0; i < len(endpoints); i++ {
out[i] = endpoints[i].ToResponse()
}
return c.JSON(http.StatusOK, util.CollectionResponse(out, c.Request(), int(count), limit, offset))
}
func EndpointList(c echo.Context) error {
endpointDB, err := getEndpointDao(c)
if err != nil {
return err
}
filters, err := getFilters(c)
if err != nil {
return err
}
limit, offset, err := getLimitAndOffset(c)
if err != nil {
return err
}
var (
endpoints []m.Endpoint
count int64
)
endpoints, count, err = endpointDB.List(limit, offset, filters)
if err != nil {
return err
}
c.Logger().Infof("tenant: %v", *endpointDB.Tenant())
out := make([]interface{}, len(endpoints))
for i := 0; i < len(endpoints); i++ {
out[i] = endpoints[i].ToResponse()
}
return c.JSON(http.StatusOK, util.CollectionResponse(out, c.Request(), int(count), limit, offset))
}
func EndpointGet(c echo.Context) error {
endpointDB, err := getEndpointDao(c)
if err != nil {
return err
}
id, err := strconv.ParseInt(c.Param("id"), 10, 64)
if err != nil {
return util.NewErrBadRequest(err)
}
c.Logger().Infof("Getting Endpoint ID %v", id)
app, err := endpointDB.GetById(&id)
if err != nil {
return err
}
return c.JSON(http.StatusOK, app.ToResponse())
}
func EndpointCreate(c echo.Context) error {
endpointDao, err := getEndpointDao(c)
if err != nil {
return err
}
input := &m.EndpointCreateRequest{}
err = c.Bind(input)
if err != nil {
return err
}
// Check that source exists
sourceId, err := util.InterfaceToInt64(input.SourceIDRaw)
if err != nil {
return util.NewErrBadRequest(err)
}
sourceDao, err := getSourceDao(c)
if err != nil {
return err
}
sourceExists, err := sourceDao.Exists(sourceId)
if err != nil {
return err
}
if !sourceExists {
return util.NewErrBadRequest("source id not found")
}
err = service.ValidateEndpointCreateRequest(endpointDao, input)
if err != nil {
return util.NewErrBadRequest(fmt.Sprintf("Validation failed: %s", err))
}
endpoint := &m.Endpoint{
Default: &input.Default,
ReceptorNode: input.ReceptorNode,
Role: &input.Role,
Scheme: input.Scheme,
Host: &input.Host,
Port: input.Port,
Path: &input.Path,
VerifySsl: input.VerifySsl,
CertificateAuthority: input.CertificateAuthority,
AvailabilityStatus: input.AvailabilityStatus,
SourceID: input.SourceID,
}
err = endpointDao.Create(endpoint)
if err != nil {
return err
}
setEventStreamResource(c, endpoint)
return c.JSON(http.StatusCreated, endpoint.ToResponse())
}
func EndpointEdit(c echo.Context) error {
endpointDao, err := getEndpointDao(c)
if err != nil {
return err
}
id, err := strconv.ParseInt(c.Param("id"), 10, 64)
if err != nil {
return util.NewErrBadRequest(err)
}
endpoint, err := endpointDao.GetById(&id)
if err != nil {
return err
}
// Store the previous status before updating the endpoint.
previousStatus := endpoint.AvailabilityStatus
// If "PausedAt" contains a date it means that the endpoint was paused back then.
if endpoint.PausedAt != nil {
input := &m.ResourceEditPausedRequest{}
if err := c.Bind(input); err != nil {
return err
}
if err := endpoint.UpdateFromRequestPaused(input); err != nil {
return util.NewErrBadRequest(err)
}
} else {
input := &m.EndpointEditRequest{}
if err := c.Bind(input); err != nil {
return err
}
if err = service.ValidateEndpointEditRequest(endpointDao, endpoint.SourceID, input); err != nil {
return util.NewErrBadRequest(err)
}
endpoint.UpdateFromRequest(input)
}
err = endpointDao.Update(endpoint)
if err != nil {
return err
}
setNotificationForAvailabilityStatus(c, previousStatus, endpoint)
setEventStreamResource(c, endpoint)
return c.JSON(http.StatusOK, endpoint.ToResponse())
}
func EndpointDelete(c echo.Context) error {
endpointDao, err := getEndpointDao(c)
if err != nil {
return err
}
id, err := strconv.ParseInt(c.Param("id"), 10, 64)
if err != nil {
return util.NewErrBadRequest(err)
}
// Check if the endpoint exists before proceeding.
endpointExists, err := endpointDao.Exists(id)
if err != nil {
return err
}
if !endpointExists {
return util.NewErrNotFound("endpoint")
}
c.Logger().Infof("Deleting Endpoint Id %v", id)
// Cascade delete the endpoint.
forwardableHeaders, err := service.ForwadableHeaders(c)
if err != nil {
return err
}
err = service.DeleteCascade(endpointDao.Tenant(), nil, "Endpoint", id, forwardableHeaders)
if err != nil {
return util.NewErrBadRequest(err)
}
return c.NoContent(http.StatusNoContent)
}
func EndpointListAuthentications(c echo.Context) error {
authDB, err := getAuthenticationDao(c)
if err != nil {
return err
}
filters, err := getFilters(c)
if err != nil {
return err
}
limit, offset, err := getLimitAndOffset(c)
if err != nil {
return err
}
id, err := strconv.ParseInt(c.Param("endpoint_id"), 10, 64)
if err != nil {
return util.NewErrBadRequest(err)
}
auths, count, err := authDB.ListForEndpoint(id, limit, offset, filters)
if err != nil {
return err
}
tenantId := authDB.Tenant()
out := make([]interface{}, len(auths))
for i := 0; i < len(auths); i++ {
// Set the marketplace token —if the auth is of the marketplace type— for the authentication.
err := marketplace.SetMarketplaceTokenAuthExtraField(*tenantId, &auths[i])
if err != nil {
return err
}
out[i] = auths[i].ToResponse()
}
return c.JSON(http.StatusOK, util.CollectionResponse(out, c.Request(), int(count), limit, offset))
}