-
Notifications
You must be signed in to change notification settings - Fork 125
/
cluster_authorizations_server.go
141 lines (124 loc) · 4.26 KB
/
cluster_authorizations_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
/*
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"
)
// ClusterAuthorizationsServer represents the interface the manages the 'cluster_authorizations' resource.
type ClusterAuthorizationsServer interface {
// Post handles a request for the 'post' method.
//
// Authorizes new cluster creation against an existing subscription.
Post(ctx context.Context, request *ClusterAuthorizationsPostServerRequest, response *ClusterAuthorizationsPostServerResponse) error
}
// ClusterAuthorizationsPostServerRequest is the request for the 'post' method.
type ClusterAuthorizationsPostServerRequest struct {
request *ClusterAuthorizationRequest
}
// Request returns the value of the 'request' parameter.
//
//
func (r *ClusterAuthorizationsPostServerRequest) Request() *ClusterAuthorizationRequest {
if r == nil {
return nil
}
return r.request
}
// GetRequest returns the value of the 'request' parameter and
// a flag indicating if the parameter has a value.
//
//
func (r *ClusterAuthorizationsPostServerRequest) GetRequest() (value *ClusterAuthorizationRequest, ok bool) {
ok = r != nil && r.request != nil
if ok {
value = r.request
}
return
}
// ClusterAuthorizationsPostServerResponse is the response for the 'post' method.
type ClusterAuthorizationsPostServerResponse struct {
status int
err *errors.Error
response *ClusterAuthorizationResponse
}
// Response sets the value of the 'response' parameter.
//
//
func (r *ClusterAuthorizationsPostServerResponse) Response(value *ClusterAuthorizationResponse) *ClusterAuthorizationsPostServerResponse {
r.response = value
return r
}
// Status sets the status code.
func (r *ClusterAuthorizationsPostServerResponse) Status(value int) *ClusterAuthorizationsPostServerResponse {
r.status = value
return r
}
// dispatchClusterAuthorizations 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 dispatchClusterAuthorizations(w http.ResponseWriter, r *http.Request, server ClusterAuthorizationsServer, segments []string) {
if len(segments) == 0 {
switch r.Method {
case "POST":
adaptClusterAuthorizationsPostRequest(w, r, server)
return
default:
errors.SendMethodNotAllowed(w, r)
return
}
}
switch segments[0] {
default:
errors.SendNotFound(w, r)
return
}
}
// adaptClusterAuthorizationsPostRequest 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 adaptClusterAuthorizationsPostRequest(w http.ResponseWriter, r *http.Request, server ClusterAuthorizationsServer) {
request := &ClusterAuthorizationsPostServerRequest{}
err := readClusterAuthorizationsPostRequest(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 := &ClusterAuthorizationsPostServerResponse{}
response.status = 201
err = server.Post(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 = writeClusterAuthorizationsPostResponse(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
}
}