-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.go
77 lines (61 loc) · 1.38 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package pterodactyl
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"time"
)
// HostURL - Default pterodactyl URL
const HostURL string = "https://panel.localhost"
// Client -
type Client struct {
HostURL string
HTTPClient *http.Client
Token string
}
// NewClient -
func NewClient(host, token *string) (*Client, error) {
c := Client{
HTTPClient: &http.Client{Timeout: 10 * time.Second},
// Default pterodactyl URL
HostURL: HostURL,
}
if host != nil {
c.HostURL = *host
}
// If token not provided, return empty client
if token == nil {
return &c, nil
}
c.Token = *token
return &c, nil
}
func (c *Client) doRequest(req *http.Request, authToken *string) ([]byte, error) {
token := c.Token
if authToken != nil {
token = *authToken
}
req.Header.Set("Authorization", "Bearer "+token)
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Accept", "Application/vnd.pterodactyl.v1+json")
res, err := c.HTTPClient.Do(req)
if err != nil {
return nil, err
}
defer res.Body.Close()
body, err := io.ReadAll(res.Body)
if err != nil {
return nil, err
}
statusOK := res.StatusCode >= 200 && res.StatusCode < 300
if !statusOK {
return nil, fmt.Errorf("status: %d, body: %s", res.StatusCode, body)
}
return body, nil
}
func (c *Client) prepareBody(body interface{}) io.Reader {
b, _ := json.Marshal(body)
return bytes.NewReader(b)
}