-
Notifications
You must be signed in to change notification settings - Fork 124
/
subscription_server.go
305 lines (274 loc) · 8.77 KB
/
subscription_server.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
/*
Copyright (c) 2020 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// IMPORTANT: This file has been generated automatically, refrain from modifying it manually as all
// your changes will be lost when the file is generated again.
package v1 // github.com/openshift-online/ocm-sdk-go/accountsmgmt/v1
import (
"context"
"net/http"
"github.com/golang/glog"
"github.com/openshift-online/ocm-sdk-go/errors"
)
// SubscriptionServer represents the interface the manages the 'subscription' resource.
type SubscriptionServer interface {
// Delete handles a request for the 'delete' method.
//
// Deletes the subscription by ID.
Delete(ctx context.Context, request *SubscriptionDeleteServerRequest, response *SubscriptionDeleteServerResponse) error
// Get handles a request for the 'get' method.
//
// Retrieves the details of the subscription by ID.
Get(ctx context.Context, request *SubscriptionGetServerRequest, response *SubscriptionGetServerResponse) error
// Update handles a request for the 'update' method.
//
// Update a subscription
Update(ctx context.Context, request *SubscriptionUpdateServerRequest, response *SubscriptionUpdateServerResponse) error
// Labels returns the target 'generic_labels' resource.
//
// Reference to the list of labels of a specific subscription.
Labels() GenericLabelsServer
// Notify returns the target 'subscription_notify' resource.
//
// Notify a user related to the subscription via email
Notify() SubscriptionNotifyServer
// ReservedResources returns the target 'subscription_reserved_resources' resource.
//
// Reference to the resource that manages the collection of resources reserved by the
// subscription.
ReservedResources() SubscriptionReservedResourcesServer
}
// SubscriptionDeleteServerRequest is the request for the 'delete' method.
type SubscriptionDeleteServerRequest struct {
}
// SubscriptionDeleteServerResponse is the response for the 'delete' method.
type SubscriptionDeleteServerResponse struct {
status int
err *errors.Error
}
// Status sets the status code.
func (r *SubscriptionDeleteServerResponse) Status(value int) *SubscriptionDeleteServerResponse {
r.status = value
return r
}
// SubscriptionGetServerRequest is the request for the 'get' method.
type SubscriptionGetServerRequest struct {
}
// SubscriptionGetServerResponse is the response for the 'get' method.
type SubscriptionGetServerResponse struct {
status int
err *errors.Error
body *Subscription
}
// Body sets the value of the 'body' parameter.
//
//
func (r *SubscriptionGetServerResponse) Body(value *Subscription) *SubscriptionGetServerResponse {
r.body = value
return r
}
// Status sets the status code.
func (r *SubscriptionGetServerResponse) Status(value int) *SubscriptionGetServerResponse {
r.status = value
return r
}
// SubscriptionUpdateServerRequest is the request for the 'update' method.
type SubscriptionUpdateServerRequest struct {
body *Subscription
}
// Body returns the value of the 'body' parameter.
//
// Updated subscription data
func (r *SubscriptionUpdateServerRequest) Body() *Subscription {
if r == nil {
return nil
}
return r.body
}
// GetBody returns the value of the 'body' parameter and
// a flag indicating if the parameter has a value.
//
// Updated subscription data
func (r *SubscriptionUpdateServerRequest) GetBody() (value *Subscription, ok bool) {
ok = r != nil && r.body != nil
if ok {
value = r.body
}
return
}
// SubscriptionUpdateServerResponse is the response for the 'update' method.
type SubscriptionUpdateServerResponse struct {
status int
err *errors.Error
body *Subscription
}
// Body sets the value of the 'body' parameter.
//
// Updated subscription data
func (r *SubscriptionUpdateServerResponse) Body(value *Subscription) *SubscriptionUpdateServerResponse {
r.body = value
return r
}
// Status sets the status code.
func (r *SubscriptionUpdateServerResponse) Status(value int) *SubscriptionUpdateServerResponse {
r.status = value
return r
}
// dispatchSubscription navigates the servers tree rooted at the given server
// till it finds one that matches the given set of path segments, and then invokes
// the corresponding server.
func dispatchSubscription(w http.ResponseWriter, r *http.Request, server SubscriptionServer, segments []string) {
if len(segments) == 0 {
switch r.Method {
case "DELETE":
adaptSubscriptionDeleteRequest(w, r, server)
return
case "GET":
adaptSubscriptionGetRequest(w, r, server)
return
case "PATCH":
adaptSubscriptionUpdateRequest(w, r, server)
return
default:
errors.SendMethodNotAllowed(w, r)
return
}
}
switch segments[0] {
case "labels":
target := server.Labels()
if target == nil {
errors.SendNotFound(w, r)
return
}
dispatchGenericLabels(w, r, target, segments[1:])
case "notify":
target := server.Notify()
if target == nil {
errors.SendNotFound(w, r)
return
}
dispatchSubscriptionNotify(w, r, target, segments[1:])
case "reserved_resources":
target := server.ReservedResources()
if target == nil {
errors.SendNotFound(w, r)
return
}
dispatchSubscriptionReservedResources(w, r, target, segments[1:])
default:
errors.SendNotFound(w, r)
return
}
}
// adaptSubscriptionDeleteRequest translates the given HTTP request into a call to
// the corresponding method of the given server. Then it translates the
// results returned by that method into an HTTP response.
func adaptSubscriptionDeleteRequest(w http.ResponseWriter, r *http.Request, server SubscriptionServer) {
request := &SubscriptionDeleteServerRequest{}
err := readSubscriptionDeleteRequest(request, r)
if err != nil {
glog.Errorf(
"Can't read request for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
errors.SendInternalServerError(w, r)
return
}
response := &SubscriptionDeleteServerResponse{}
response.status = 204
err = server.Delete(r.Context(), request, response)
if err != nil {
glog.Errorf(
"Can't process request for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
errors.SendInternalServerError(w, r)
return
}
err = writeSubscriptionDeleteResponse(response, w)
if err != nil {
glog.Errorf(
"Can't write response for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
return
}
}
// adaptSubscriptionGetRequest translates the given HTTP request into a call to
// the corresponding method of the given server. Then it translates the
// results returned by that method into an HTTP response.
func adaptSubscriptionGetRequest(w http.ResponseWriter, r *http.Request, server SubscriptionServer) {
request := &SubscriptionGetServerRequest{}
err := readSubscriptionGetRequest(request, r)
if err != nil {
glog.Errorf(
"Can't read request for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
errors.SendInternalServerError(w, r)
return
}
response := &SubscriptionGetServerResponse{}
response.status = 200
err = server.Get(r.Context(), request, response)
if err != nil {
glog.Errorf(
"Can't process request for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
errors.SendInternalServerError(w, r)
return
}
err = writeSubscriptionGetResponse(response, w)
if err != nil {
glog.Errorf(
"Can't write response for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
return
}
}
// adaptSubscriptionUpdateRequest translates the given HTTP request into a call to
// the corresponding method of the given server. Then it translates the
// results returned by that method into an HTTP response.
func adaptSubscriptionUpdateRequest(w http.ResponseWriter, r *http.Request, server SubscriptionServer) {
request := &SubscriptionUpdateServerRequest{}
err := readSubscriptionUpdateRequest(request, r)
if err != nil {
glog.Errorf(
"Can't read request for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
errors.SendInternalServerError(w, r)
return
}
response := &SubscriptionUpdateServerResponse{}
response.status = 200
err = server.Update(r.Context(), request, response)
if err != nil {
glog.Errorf(
"Can't process request for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
errors.SendInternalServerError(w, r)
return
}
err = writeSubscriptionUpdateResponse(response, w)
if err != nil {
glog.Errorf(
"Can't write response for method '%s' and path '%s': %v",
r.Method, r.URL.Path, err,
)
return
}
}