-
Notifications
You must be signed in to change notification settings - Fork 125
/
metadata_client.go
152 lines (134 loc) · 3.69 KB
/
metadata_client.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
/*
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"
"encoding/json"
"io"
"net/http"
"net/url"
"github.com/openshift-online/ocm-sdk-go/errors"
"github.com/openshift-online/ocm-sdk-go/helpers"
)
// MetadataRequest is the request to retrieve the metadata.
type MetadataRequest struct {
transport http.RoundTripper
path string
metric string
query url.Values
header http.Header
}
// MetadataResponse is the response for the metadata request.
type MetadataResponse struct {
status int
header http.Header
err *errors.Error
body *Metadata
}
// Parameter adds a query parameter.
func (r *MetadataRequest) Parameter(name string, value interface{}) *MetadataRequest {
helpers.AddValue(&r.query, name, value)
return r
}
// Header adds a request header.
func (r *MetadataRequest) Header(name string, value interface{}) *MetadataRequest {
helpers.AddHeader(&r.header, name, value)
return r
}
// Send sends the metadata request, waits for the response, and returns it.
//
// This is a potentially lengthy operation, as it requires network communication.
// Consider using a context and the SendContext method.
func (r *MetadataRequest) Send() (result *MetadataResponse, err error) {
return r.SendContext(context.Background())
}
// SendContext sends the metadata request, waits for the response, and returns it.
func (r *MetadataRequest) SendContext(ctx context.Context) (result *MetadataResponse, err error) {
query := helpers.CopyQuery(r.query)
header := helpers.SetHeader(r.header, r.metric)
uri := &url.URL{
Path: r.path,
RawQuery: query.Encode(),
}
request := &http.Request{
Method: http.MethodGet,
URL: uri,
Header: header,
}
if ctx != nil {
request = request.WithContext(ctx)
}
response, err := r.transport.RoundTrip(request)
if err != nil {
return
}
defer response.Body.Close()
result = &MetadataResponse{
status: response.StatusCode,
header: response.Header,
}
if result.status >= 400 {
result.err, err = errors.UnmarshalError(response.Body)
if err != nil {
return
}
err = result.err
return
}
err = result.unmarshal(response.Body)
if err != nil {
return
}
return
}
// Status returns the response status code.
func (r *MetadataResponse) Status() int {
if r == nil {
return 0
}
return r.status
}
// Header returns header of the response.
func (r *MetadataResponse) Header() http.Header {
if r == nil {
return nil
}
return r.header
}
// Error returns the response error.
func (r *MetadataResponse) Error() *errors.Error {
if r == nil {
return nil
}
return r.err
}
// Body returns the response body.
func (r *MetadataResponse) Body() *Metadata {
return r.body
}
// unmarshal is the method used internally to unmarshal metadata responses.
func (r *MetadataResponse) unmarshal(reader io.Reader) error {
decoder := json.NewDecoder(reader)
data := &metadataData{}
err := decoder.Decode(data)
if err != nil {
return err
}
r.body, err = data.unwrap()
if err != nil {
return err
}
return nil
}