forked from kevholditch/gokong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.go
72 lines (57 loc) · 1.92 KB
/
request.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
package gokong
import (
"crypto/tls"
"fmt"
"github.com/parnurzeal/gorequest"
)
func configureRequest(r *gorequest.SuperAgent, config *Config) *gorequest.SuperAgent {
r.TLSClientConfig(&tls.Config{InsecureSkipVerify: config.InsecureSkipVerify})
if config.Username != "" || config.Password != "" {
r.SetBasicAuth(config.Username, config.Password)
}
if config.ApiKey != "" {
r.Set("apikey", config.ApiKey)
}
if config.AdminToken != "" {
r.Set("kong-admin-token", config.AdminToken)
}
return r
}
func buildRequestUri(config *Config, path string) string {
if config.Workspace == "" {
return config.HostAddress + path
}
return fmt.Sprintf("%s/%s%s", config.HostAddress, config.Workspace, path)
}
func newRawGet(config *Config, address string) *gorequest.SuperAgent {
r := gorequest.New().Get(address)
return configureRequest(r, config)
}
func newRawPost(config *Config, address string) *gorequest.SuperAgent {
r := gorequest.New().Post(address)
return configureRequest(r, config)
}
func newRawPatch(config *Config, address string) *gorequest.SuperAgent {
r := gorequest.New().Patch(address)
return configureRequest(r, config)
}
func newRawDelete(config *Config, address string) *gorequest.SuperAgent {
r := gorequest.New().Delete(address)
return configureRequest(r, config)
}
func newGet(config *Config, path string) *gorequest.SuperAgent {
r := gorequest.New().Get(buildRequestUri(config, path))
return configureRequest(r, config)
}
func newPost(config *Config, path string) *gorequest.SuperAgent {
r := gorequest.New().Post(buildRequestUri(config, path))
return configureRequest(r, config)
}
func newPatch(config *Config, path string) *gorequest.SuperAgent {
r := gorequest.New().Patch(buildRequestUri(config, path))
return configureRequest(r, config)
}
func newDelete(config *Config, path string) *gorequest.SuperAgent {
r := gorequest.New().Delete(buildRequestUri(config, path))
return configureRequest(r, config)
}