-
Notifications
You must be signed in to change notification settings - Fork 485
/
common.go
99 lines (88 loc) · 3.04 KB
/
common.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
/*******************************************************************************
* Copyright 2019 Dell Inc.
* Copyright 2019 Intel Corporation
*
* 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.
*
* @author: Tingyu Zeng, Dell / Alain Pulluelo, ForgeRock AS
*******************************************************************************/
package secretstoreclient
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"net/url"
)
// parameters structure for request method
type commonRequestArgs struct {
// Authentication token
AuthToken string
// HTTP method
Method string
// URL path
Path string
// If non-nil, passed to JSON serializer and included in request
JSONObject interface{}
// Included in HTTP request if JSONObject is nil
BodyReader io.Reader
// Description of the operation being performed included in log messages
OperationDescription string
// Expected status code to be returned from HTTP request
ExpectedStatusCode int
// If non-nil and request succeeded, response body will be serialized here (must be a pointer)
ResponseObject interface{}
}
func (vc *vaultClient) doRequest(params commonRequestArgs) (int, error) {
if params.JSONObject != nil {
body, err := json.Marshal(params.JSONObject)
if err != nil {
vc.logger.Error(fmt.Sprintf("failed to marshal request body: %s", err.Error()))
return 0, err
}
params.BodyReader = bytes.NewReader(body)
}
url := (&url.URL{
Scheme: vc.scheme,
Host: vc.host,
Path: params.Path,
}).String()
req, err := http.NewRequest(params.Method, url, params.BodyReader)
if err != nil {
vc.logger.Error(fmt.Sprintf("failed to create request object: %s", err.Error()))
return 0, err
}
if params.AuthToken != "" {
req.Header.Set(VaultToken, params.AuthToken)
}
req.Header.Set("Content-Type", JSONContentType)
resp, err := vc.client.Do(req)
if err != nil {
vc.logger.Error(fmt.Sprintf("unable to make request to %s failed: %s", params.OperationDescription, err.Error()))
return 0, err
}
defer resp.Body.Close()
if resp.StatusCode != params.ExpectedStatusCode {
err := fmt.Errorf("request to %s failed with status: %s", params.OperationDescription, resp.Status)
vc.logger.Error(err.Error())
return resp.StatusCode, err
}
if params.ResponseObject != nil {
err := json.NewDecoder(resp.Body).Decode(params.ResponseObject)
if err != nil {
vc.logger.Error(fmt.Sprintf("failed to parse response body: %s", err.Error()))
return resp.StatusCode, err
}
}
vc.logger.Info(fmt.Sprintf("successfully made request to %s", params.OperationDescription))
return resp.StatusCode, nil
}