forked from globalsign/hvclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_helpers.go
90 lines (73 loc) · 2.32 KB
/
api_helpers.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
/*
Copyright (c) 2019-2021 GMO GlobalSign Pte. Ltd.
Licensed under the MIT License (the "License"); you may not use this file except
in compliance with the License. You may obtain a copy of the License at
https://opensource.org/licenses/MIT
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.
*/
package hvclient
import (
"fmt"
"net/http"
"path/filepath"
"strconv"
"strings"
"time"
)
// headerFromResponse retrieves the value of a header from an HTTP response. If there
// is more than one header value, only the first is returned.
func headerFromResponse(r *http.Response, name string) (string, error) {
var value = r.Header.Get(name)
if value == "" {
return "", fmt.Errorf("no values in HTTP response for header %s", name)
}
return value, nil
}
// basePathHeaderFromResponse retrieves the base part of the path value contained in a
// header in an HTTP response. If there is more than one header value, only
// the first is returned.
func basePathHeaderFromResponse(r *http.Response, name string) (string, error) {
var location, err = headerFromResponse(r, name)
if err != nil {
return "", err
}
return filepath.Base(location), nil
}
// intHeaderFromResponse retrieves the integer value of a header from an HTTP
// response. If there is more than one header value, only the first is
// returned.
func intHeaderFromResponse(r *http.Response, name string) (int64, error) {
var s, err = headerFromResponse(r, name)
if err != nil {
return 0, err
}
var n int64
n, err = strconv.ParseInt(s, 10, 64)
if err != nil {
return 0, err
}
return n, nil
}
// paginationString builds a query string for paginated API requests.
// perPage, from and to are optional.
func paginationString(
page, perPage int,
from, to time.Time,
) string {
var builder strings.Builder
builder.WriteString(fmt.Sprintf("?page=%d", page))
if perPage > 0 {
builder.WriteString(fmt.Sprintf("&per_page=%d", perPage))
}
if !from.IsZero() {
builder.WriteString(fmt.Sprintf("&from=%d", from.Unix()))
}
if !to.IsZero() {
builder.WriteString(fmt.Sprintf("&to=%d", to.Unix()))
}
return builder.String()
}