-
Notifications
You must be signed in to change notification settings - Fork 125
/
cluster_registrations_server.go
142 lines (125 loc) · 4.27 KB
/
cluster_registrations_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
/*
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"
)
// ClusterRegistrationsServer represents the interface the manages the 'cluster_registrations' resource.
type ClusterRegistrationsServer interface {
// Post handles a request for the 'post' method.
//
// Finds or creates a cluster registration with a registry credential
// token and cluster identifier.
Post(ctx context.Context, request *ClusterRegistrationsPostServerRequest, response *ClusterRegistrationsPostServerResponse) error
}
// ClusterRegistrationsPostServerRequest is the request for the 'post' method.
type ClusterRegistrationsPostServerRequest struct {
request *ClusterRegistrationRequest
}
// Request returns the value of the 'request' parameter.
//
//
func (r *ClusterRegistrationsPostServerRequest) Request() *ClusterRegistrationRequest {
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 *ClusterRegistrationsPostServerRequest) GetRequest() (value *ClusterRegistrationRequest, ok bool) {
ok = r != nil && r.request != nil
if ok {
value = r.request
}
return
}
// ClusterRegistrationsPostServerResponse is the response for the 'post' method.
type ClusterRegistrationsPostServerResponse struct {
status int
err *errors.Error
response *ClusterRegistrationResponse
}
// Response sets the value of the 'response' parameter.
//
//
func (r *ClusterRegistrationsPostServerResponse) Response(value *ClusterRegistrationResponse) *ClusterRegistrationsPostServerResponse {
r.response = value
return r
}
// Status sets the status code.
func (r *ClusterRegistrationsPostServerResponse) Status(value int) *ClusterRegistrationsPostServerResponse {
r.status = value
return r
}
// dispatchClusterRegistrations 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 dispatchClusterRegistrations(w http.ResponseWriter, r *http.Request, server ClusterRegistrationsServer, segments []string) {
if len(segments) == 0 {
switch r.Method {
case "POST":
adaptClusterRegistrationsPostRequest(w, r, server)
return
default:
errors.SendMethodNotAllowed(w, r)
return
}
}
switch segments[0] {
default:
errors.SendNotFound(w, r)
return
}
}
// adaptClusterRegistrationsPostRequest 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 adaptClusterRegistrationsPostRequest(w http.ResponseWriter, r *http.Request, server ClusterRegistrationsServer) {
request := &ClusterRegistrationsPostServerRequest{}
err := readClusterRegistrationsPostRequest(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 := &ClusterRegistrationsPostServerResponse{}
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 = writeClusterRegistrationsPostResponse(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
}
}