forked from kevholditch/gokong
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.go
227 lines (175 loc) · 6.79 KB
/
plugins.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
package gokong
import (
"encoding/json"
"fmt"
)
type PluginClient struct {
config *Config
}
type PluginRequest struct {
Name string `json:"name" yaml:"name"`
ConsumerId *Id `json:"consumer" yaml:"consumer"`
ServiceId *Id `json:"service" yaml:"service"`
RouteId *Id `json:"route" yaml:"route"`
RunOn string `json:"run_on,omitempty" yaml:"run_on,omitempty"`
Config map[string]interface{} `json:"config,omitempty" yaml:"config,omitempty"`
Enabled *bool `json:"enabled,omitempty" yaml:"enabled,omitempty"`
}
type Plugin struct {
Id string `json:"id" yaml:"id"`
Name string `json:"name" yaml:"name"`
ConsumerId *Id `json:"consumer,omitempty" yaml:"consumer,omitempty"`
ServiceId *Id `json:"service,omitempty" yaml:"service,omitempty"`
RouteId *Id `json:"route,omitempty" yaml:"route,omitempty"`
RunOn string `json:"run_on,omitempty" yaml:"run_on,omitempty"`
Config map[string]interface{} `json:"config,omitempty" yaml:"config,omitempty"`
Enabled bool `json:"enabled,omitempty" yaml:"enabled,omitempty"`
}
type Plugins struct {
Data []*Plugin `json:"data" yaml:"data,omitempty"`
Next *string `json:"next" yaml:"next,omitempty"`
Offset string `json:"offset,omitempty" yaml:"offset,omitempty"`
}
type PluginQueryString struct {
Offset string `json:"offset,omitempty" yaml:"offset,omitempty"`
Size int `json:"size" yaml:"size,omitempty"`
}
const PluginsPath = "/plugins/"
func (pluginClient *PluginClient) GetById(id string) (*Plugin, error) {
r, body, errs := newGet(pluginClient.config, pluginClient.config.HostAddress+PluginsPath+id).End()
if errs != nil {
return nil, fmt.Errorf("could not get plugin, error: %v", errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return nil, fmt.Errorf("not authorised, message from kong: %s", body)
}
plugin := &Plugin{}
err := json.Unmarshal([]byte(body), plugin)
if err != nil {
return nil, fmt.Errorf("could not parse plugin plugin response, error: %v", err)
}
if plugin.Id == "" {
return nil, nil
}
return plugin, nil
}
func (pluginClient *PluginClient) List(query *PluginQueryString) ([]*Plugin, error) {
plugins := make([]*Plugin, 0)
if query.Size < 100 {
query.Size = 100
}
if query.Size > 1000 {
query.Size = 1000
}
for {
data := &Plugins{}
r, body, errs := newGet(pluginClient.config, pluginClient.config.HostAddress+PluginsPath).Query(*query).End()
if errs != nil {
return nil, fmt.Errorf("could not get plugins, 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 plugins list response, error: %v", err)
}
plugins = append(plugins, data.Data...)
if data.Next == nil || *data.Next == "" {
break
}
query.Offset = data.Offset
}
return plugins, nil
}
func (pluginClient *PluginClient) Create(pluginRequest *PluginRequest) (*Plugin, error) {
r, body, errs := newPost(pluginClient.config, pluginClient.config.HostAddress+PluginsPath).Send(pluginRequest).End()
if errs != nil {
return nil, fmt.Errorf("could not create new plugin, error: %v", errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return nil, fmt.Errorf("not authorised, message from kong: %s", body)
}
createdPlugin := &Plugin{}
err := json.Unmarshal([]byte(body), createdPlugin)
if err != nil {
return nil, fmt.Errorf("could not parse plugin creation response, error: %v kong response: %s", err, body)
}
if createdPlugin.Id == "" {
return nil, fmt.Errorf("could not create plugin, err: %v", body)
}
return createdPlugin, nil
}
func (pluginClient *PluginClient) UpdateById(id string, pluginRequest *PluginRequest) (*Plugin, error) {
r, body, errs := newPatch(pluginClient.config, pluginClient.config.HostAddress+PluginsPath+id).Send(pluginRequest).End()
if errs != nil {
return nil, fmt.Errorf("could not update plugin, error: %v", errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return nil, fmt.Errorf("not authorised, message from kong: %s", body)
}
updatedPlugin := &Plugin{}
err := json.Unmarshal([]byte(body), updatedPlugin)
if err != nil {
return nil, fmt.Errorf("could not parse plugin update response, error: %v kong response: %s", err, body)
}
if updatedPlugin.Id == "" {
return nil, fmt.Errorf("could not update plugin, error: %v", body)
}
return updatedPlugin, nil
}
func (pluginClient *PluginClient) DeleteById(id string) error {
r, body, errs := newDelete(pluginClient.config, pluginClient.config.HostAddress+PluginsPath+id).End()
if errs != nil {
return fmt.Errorf("could not delete plugin, 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
}
func (pluginClient *PluginClient) GetByConsumerId(id string) (*Plugins, error) {
r, body, errs := newGet(pluginClient.config, pluginClient.config.HostAddress+"/consumers/"+id+"/plugins").End()
if errs != nil {
return nil, fmt.Errorf("could not get plugins, error: %v", errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return nil, fmt.Errorf("not authorised, message from kong: %s", body)
}
plugins := &Plugins{}
err := json.Unmarshal([]byte(body), plugins)
if err != nil {
return nil, fmt.Errorf("could not parse plugins list response, error: %v", err)
}
return plugins, nil
}
func (pluginClient *PluginClient) GetByRouteId(id string) (*Plugins, error) {
r, body, errs := newGet(pluginClient.config, pluginClient.config.HostAddress+"/routes/"+id+"/plugins").End()
if errs != nil {
return nil, fmt.Errorf("could not get plugins, error: %v", errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return nil, fmt.Errorf("not authorised, message from kong: %s", body)
}
plugins := &Plugins{}
err := json.Unmarshal([]byte(body), plugins)
if err != nil {
return nil, fmt.Errorf("could not parse plugins list response, error: %v", err)
}
return plugins, nil
}
func (pluginClient *PluginClient) GetByServiceId(id string) (*Plugins, error) {
r, body, errs := newGet(pluginClient.config, pluginClient.config.HostAddress+"/services/"+id+"/plugins").End()
if errs != nil {
return nil, fmt.Errorf("could not get plugins, error: %v", errs)
}
if r.StatusCode == 401 || r.StatusCode == 403 {
return nil, fmt.Errorf("not authorised, message from kong: %s", body)
}
plugins := &Plugins{}
err := json.Unmarshal([]byte(body), plugins)
if err != nil {
return nil, fmt.Errorf("could not parse plugins list response, error: %v", err)
}
return plugins, nil
}