forked from parseablehq/quest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
59 lines (52 loc) · 1.63 KB
/
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
// Copyright (c) 2023 Cloudnatively Services Pvt Ltd
//
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package main
import (
"io"
"net/http"
"net/url"
"time"
)
type HTTPClient struct {
client http.Client
Url url.URL
Username string
Password string
}
func DefaultClient(url url.URL, username string, password string) HTTPClient {
return HTTPClient{
client: http.Client{Timeout: 60 * time.Second},
Url: url,
Username: username,
Password: password,
}
}
func (client *HTTPClient) baseAPIURL(path string) (x string) {
x, _ = url.JoinPath(client.Url.String(), "api/v1/", path)
return
}
func (client *HTTPClient) NewRequest(method string, path string, body io.Reader) (req *http.Request, err error) {
req, err = http.NewRequest(method, client.baseAPIURL(path), body)
if err != nil {
return
}
req.SetBasicAuth(client.Username, client.Password)
req.Header.Add("Content-Type", "application/json")
return
}
func (client *HTTPClient) Do(req *http.Request) (*http.Response, error) {
return client.client.Do(req)
}