-
Notifications
You must be signed in to change notification settings - Fork 1
/
client_requests.go
84 lines (64 loc) · 1.33 KB
/
client_requests.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
package meili
import (
"errors"
"net/http"
)
func (c *Client) makeRequest(r *http.Request) (*http.Response, error) {
return c.httpClient.Do(r)
}
func (c *Client) getRoute(route string) string {
newURL := c.addressURL
newURL.Path = route
return newURL.String()
}
func (c *Client) hasNoKeys() bool {
if c.allowNoKeys {
return false
}
if c.masterKey == "" && c.privateKey == "" && c.publicKey == "" {
return true
}
return false
}
func (c *Client) getMasterKey() (string, error) {
if c.hasNoKeys() {
return "", ErrNoKeysProvided
}
if c.masterKey != "" {
return c.masterKey, nil
}
if c.allowNoKeys {
return "", nil
}
return "", errors.New("meili: operation requires a master key to execute")
}
func (c *Client) getMasterOrPrivateKey() (string, error) {
if c.hasNoKeys() {
return "", ErrNoKeysProvided
}
if c.masterKey != "" {
return c.masterKey, nil
}
if c.privateKey != "" {
return c.privateKey, nil
}
if c.allowNoKeys {
return "", nil
}
return "", errors.New("meili: operation requires a master or private key to execute")
}
func (c *Client) getAnyKey() (string, error) {
if c.hasNoKeys() {
return "", ErrNoKeysProvided
}
if c.masterKey != "" {
return c.masterKey, nil
}
if c.privateKey != "" {
return c.privateKey, nil
}
if c.publicKey != "" {
return c.publicKey, nil
}
return "", nil
}