-
Notifications
You must be signed in to change notification settings - Fork 125
/
subscriptions_server.go
297 lines (270 loc) · 8.48 KB
/
subscriptions_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
/*
Copyright (c) 2019 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"
)
// SubscriptionsServer represents the interface the manages the 'subscriptions' resource.
type SubscriptionsServer interface {
// List handles a request for the 'list' method.
//
// Retrieves a list of subscriptions.
List(ctx context.Context, request *SubscriptionsListServerRequest, response *SubscriptionsListServerResponse) error
// Subscription returns the target 'subscription' server for the given identifier.
//
// Reference to the service that manages a specific subscription.
Subscription(id string) SubscriptionServer
}
// SubscriptionsListServerRequest is the request for the 'list' method.
type SubscriptionsListServerRequest struct {
order *string
page *int
search *string
size *int
}
// Order returns the value of the 'order' parameter.
//
// Order criteria.
//
// The syntax of this parameter is similar to the syntax of the _order by_ clause of
// a SQL statement. For example, in order to sort the
// subscriptions descending by name identifier the value should be:
//
// [source,sql]
// ----
// name desc
// ----
//
// If the parameter isn't provided, or if the value is empty, then the order of the
// results is undefined.
func (r *SubscriptionsListServerRequest) Order() string {
if r != nil && r.order != nil {
return *r.order
}
return ""
}
// GetOrder returns the value of the 'order' parameter and
// a flag indicating if the parameter has a value.
//
// Order criteria.
//
// The syntax of this parameter is similar to the syntax of the _order by_ clause of
// a SQL statement. For example, in order to sort the
// subscriptions descending by name identifier the value should be:
//
// [source,sql]
// ----
// name desc
// ----
//
// If the parameter isn't provided, or if the value is empty, then the order of the
// results is undefined.
func (r *SubscriptionsListServerRequest) GetOrder() (value string, ok bool) {
ok = r != nil && r.order != nil
if ok {
value = *r.order
}
return
}
// Page returns the value of the 'page' parameter.
//
// Index of the requested page, where one corresponds to the first page.
func (r *SubscriptionsListServerRequest) Page() int {
if r != nil && r.page != nil {
return *r.page
}
return 0
}
// GetPage returns the value of the 'page' parameter and
// a flag indicating if the parameter has a value.
//
// Index of the requested page, where one corresponds to the first page.
func (r *SubscriptionsListServerRequest) GetPage() (value int, ok bool) {
ok = r != nil && r.page != nil
if ok {
value = *r.page
}
return
}
// Search returns the value of the 'search' parameter.
//
// Search criteria.
//
// The syntax of this parameter is similar to the syntax of the _where_ clause of a
// SQL statement, but using the names of the attributes of the subscription instead
// of the names of the columns of a table. For example, in order to retrieve all the
// subscriptions for managed clusters the value should be:
//
// [source,sql]
// ----
// managed = 't'
// ----
//
// If the parameter isn't provided, or if the value is empty, then all the
// clusters that the user has permission to see will be returned.
func (r *SubscriptionsListServerRequest) Search() string {
if r != nil && r.search != nil {
return *r.search
}
return ""
}
// GetSearch returns the value of the 'search' parameter and
// a flag indicating if the parameter has a value.
//
// Search criteria.
//
// The syntax of this parameter is similar to the syntax of the _where_ clause of a
// SQL statement, but using the names of the attributes of the subscription instead
// of the names of the columns of a table. For example, in order to retrieve all the
// subscriptions for managed clusters the value should be:
//
// [source,sql]
// ----
// managed = 't'
// ----
//
// If the parameter isn't provided, or if the value is empty, then all the
// clusters that the user has permission to see will be returned.
func (r *SubscriptionsListServerRequest) GetSearch() (value string, ok bool) {
ok = r != nil && r.search != nil
if ok {
value = *r.search
}
return
}
// Size returns the value of the 'size' parameter.
//
// Maximum number of items that will be contained in the returned page.
func (r *SubscriptionsListServerRequest) Size() int {
if r != nil && r.size != nil {
return *r.size
}
return 0
}
// GetSize returns the value of the 'size' parameter and
// a flag indicating if the parameter has a value.
//
// Maximum number of items that will be contained in the returned page.
func (r *SubscriptionsListServerRequest) GetSize() (value int, ok bool) {
ok = r != nil && r.size != nil
if ok {
value = *r.size
}
return
}
// SubscriptionsListServerResponse is the response for the 'list' method.
type SubscriptionsListServerResponse struct {
status int
err *errors.Error
items *SubscriptionList
page *int
size *int
total *int
}
// Items sets the value of the 'items' parameter.
//
// Retrieved list of subscriptions.
func (r *SubscriptionsListServerResponse) Items(value *SubscriptionList) *SubscriptionsListServerResponse {
r.items = value
return r
}
// Page sets the value of the 'page' parameter.
//
// Index of the requested page, where one corresponds to the first page.
func (r *SubscriptionsListServerResponse) Page(value int) *SubscriptionsListServerResponse {
r.page = &value
return r
}
// Size sets the value of the 'size' parameter.
//
// Maximum number of items that will be contained in the returned page.
func (r *SubscriptionsListServerResponse) Size(value int) *SubscriptionsListServerResponse {
r.size = &value
return r
}
// Total sets the value of the 'total' parameter.
//
// Total number of items of the collection that match the search criteria,
// regardless of the size of the page.
func (r *SubscriptionsListServerResponse) Total(value int) *SubscriptionsListServerResponse {
r.total = &value
return r
}
// Status sets the status code.
func (r *SubscriptionsListServerResponse) Status(value int) *SubscriptionsListServerResponse {
r.status = value
return r
}
// dispatchSubscriptions 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 dispatchSubscriptions(w http.ResponseWriter, r *http.Request, server SubscriptionsServer, segments []string) {
if len(segments) == 0 {
switch r.Method {
case "GET":
adaptSubscriptionsListRequest(w, r, server)
return
default:
errors.SendMethodNotAllowed(w, r)
return
}
}
switch segments[0] {
default:
target := server.Subscription(segments[0])
if target == nil {
errors.SendNotFound(w, r)
return
}
dispatchSubscription(w, r, target, segments[1:])
}
}
// adaptSubscriptionsListRequest 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 adaptSubscriptionsListRequest(w http.ResponseWriter, r *http.Request, server SubscriptionsServer) {
request := &SubscriptionsListServerRequest{}
err := readSubscriptionsListRequest(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 := &SubscriptionsListServerResponse{}
response.status = 200
err = server.List(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 = writeSubscriptionsListResponse(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
}
}