-
Notifications
You must be signed in to change notification settings - Fork 51
/
routes.go
228 lines (180 loc) · 6.62 KB
/
routes.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
package gokong
import (
"encoding/json"
"fmt"
)
type RouteClient struct {
config *Config
}
type RouteRequest struct {
Name *string `json:"name" yaml:"name"`
Protocols []*string `json:"protocols" yaml:"protocols"`
Methods []*string `json:"methods" yaml:"methods"`
Hosts []*string `json:"hosts" yaml:"hosts"`
Paths []*string `json:"paths" yaml:"paths"`
RegexPriority *int `json:"regex_priority" yaml:"regex_priority"`
StripPath *bool `json:"strip_path" yaml:"strip_path"`
PreserveHost *bool `json:"preserve_host" yaml:"preserve_host"`
Snis []*string `json:"snis" yaml:"snis"`
Sources []*IpPort `json:"sources" yaml:"sources"`
Destinations []*IpPort `json:"destinations" yaml:"destinations"`
Service *Id `json:"service" yaml:"service"`
}
type Route struct {
Id *string `json:"id" yaml:"id"`
Name *string `json:"name" yaml:"name"`
CreatedAt *int `json:"created_at" yaml:"created_at"`
UpdatedAt *int `json:"updated_at" yaml:"updated_at"`
Protocols []*string `json:"protocols" yaml:"protocols"`
Methods []*string `json:"methods" yaml:"methods"`
Hosts []*string `json:"hosts" yaml:"hosts"`
Paths []*string `json:"paths" yaml:"paths"`
RegexPriority *int `json:"regex_priority" yaml:"regex_priority"`
StripPath *bool `json:"strip_path" yaml:"strip_path"`
PreserveHost *bool `json:"preserve_host" yaml:"preserve_host"`
Snis []*string `json:"snis" yaml:"snis"`
Sources []*IpPort `json:"sources" yaml:"sources"`
Destinations []*IpPort `json:"destinations" yaml:"destinations"`
Service *Id `json:"service" yaml:"service"`
}
type IpPort struct {
Ip *string `json:"ip" yaml:"ip"`
Port *int `json:"port" yaml:"port"`
}
type Routes struct {
Data []*Route `json:"data" yaml:"data"`
Next *string `json:"next" yaml:"next"`
Offset string `json:"offset,omitempty" yaml:"offset,omitempty"`
}
type RouteQueryString struct {
Offset string `json:"offset,omitempty"`
Size int `json:"size"`
}
const RoutesPath = "/routes/"
func (routeClient *RouteClient) GetByName(name string) (*Route, error) {
return routeClient.GetById(name)
}
func (routeClient *RouteClient) GetById(id string) (*Route, error) {
r, body, errs := newGet(routeClient.config, routeClient.config.HostAddress+RoutesPath+id).End()
if errs != nil {
return nil, fmt.Errorf("could not get the route, error: %v", errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return nil, fmt.Errorf("not authorised, message from kong: %s", body)
}
route := &Route{}
err := json.Unmarshal([]byte(body), route)
if err != nil {
return nil, fmt.Errorf("could not parse route get response, error: %v", err)
}
if route.Id == nil {
return nil, nil
}
return route, nil
}
func (routeClient *RouteClient) Create(routeRequest *RouteRequest) (*Route, error) {
r, body, errs := newPost(routeClient.config, routeClient.config.HostAddress+RoutesPath).Send(routeRequest).End()
if errs != nil {
return nil, fmt.Errorf("could not register the route, error: %v", errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return nil, fmt.Errorf("not authorised, message from kong: %s", body)
}
createdRoute := &Route{}
err := json.Unmarshal([]byte(body), createdRoute)
if err != nil {
return nil, fmt.Errorf("could not parse route get response, error: %v", err)
}
if createdRoute.Id == nil {
return nil, fmt.Errorf("could not register the route, error: %v", body)
}
return createdRoute, nil
}
func (routeClient *RouteClient) List(query *RouteQueryString) ([]*Route, error) {
routes := make([]*Route, 0)
if query.Size < 100 {
query.Size = 100
}
if query.Size > 1000 {
query.Size = 1000
}
for {
data := &Routes{}
r, body, errs := newGet(routeClient.config, routeClient.config.HostAddress+RoutesPath).Query(*query).End()
if errs != nil {
return nil, fmt.Errorf("could not get the route, error: %v", errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return nil, fmt.Errorf("not authorised, message from kong: %s", body)
}
err := json.Unmarshal([]byte(body), data)
if err != nil {
return nil, fmt.Errorf("could not parse route get response, error: %v", err)
}
routes = append(routes, data.Data...)
if data.Next == nil || *data.Next == "" {
break
}
query.Offset = data.Offset
}
return routes, nil
}
func (routeClient *RouteClient) GetRoutesFromServiceName(name string) ([]*Route, error) {
return routeClient.GetRoutesFromServiceId(name)
}
func (routeClient *RouteClient) GetRoutesFromServiceId(id string) ([]*Route, error) {
routes := make([]*Route, 0)
data := &Routes{}
for {
r, body, errs := newGet(routeClient.config, routeClient.config.HostAddress+fmt.Sprintf("/services/%s/routes", id)).End()
if errs != nil {
return nil, fmt.Errorf("could not get the route, error: %v", errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return nil, fmt.Errorf("not authorised, message from kong: %s", body)
}
err := json.Unmarshal([]byte(body), data)
if err != nil {
return nil, fmt.Errorf("could not parse route get response, error: %v", err)
}
routes = append(routes, data.Data...)
if data.Next == nil || *data.Next == "" {
break
}
}
return routes, nil
}
func (routeClient *RouteClient) UpdateByName(name string, routeRequest *RouteRequest) (*Route, error) {
return routeClient.UpdateById(name, routeRequest)
}
func (routeClient *RouteClient) UpdateById(id string, routeRequest *RouteRequest) (*Route, error) {
r, body, errs := newPatch(routeClient.config, routeClient.config.HostAddress+RoutesPath+id).Send(routeRequest).End()
if errs != nil {
return nil, fmt.Errorf("could not update route, error: %v", errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return nil, fmt.Errorf("not authorised, message from kong: %s", body)
}
updatedRoute := &Route{}
err := json.Unmarshal([]byte(body), updatedRoute)
if err != nil {
return nil, fmt.Errorf("could not parse route update response, error: %v", err)
}
if updatedRoute.Id == nil {
return nil, fmt.Errorf("could not update route, error: %v", body)
}
return updatedRoute, nil
}
func (routeClient *RouteClient) DeleteByName(name string) error {
return routeClient.DeleteById(name)
}
func (routeClient *RouteClient) DeleteById(id string) error {
r, body, errs := newDelete(routeClient.config, routeClient.config.HostAddress+RoutesPath+id).End()
if errs != nil {
return fmt.Errorf("could not delete the route, result: %v error: %v", r, errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return fmt.Errorf("not authorised, message from kong: %s", body)
}
return nil
}