-
Notifications
You must be signed in to change notification settings - Fork 500
/
object.go
258 lines (202 loc) · 5.54 KB
/
object.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
package api
import (
"fmt"
"io/ioutil"
"sort"
// Ensure registered.
_ "github.com/megaease/easegateway/pkg/object/httpproxy"
_ "github.com/megaease/easegateway/pkg/object/httpserver"
"github.com/megaease/easegateway/pkg/supervisor"
"github.com/kataras/iris"
yaml "gopkg.in/yaml.v2"
)
const (
// ObjectPrefix is the object prefix.
ObjectPrefix = "/objects"
// ObjectKindsPrefix is the object-kinds prefix.
ObjectKindsPrefix = "/object-kinds"
// StatusObjectPrefix is the prefix of object status.
StatusObjectPrefix = "/status/objects"
)
func (s *Server) setupObjectAPIs() {
objAPIs := make([]*apiEntry, 0)
objAPIs = append(objAPIs,
&apiEntry{
Path: ObjectKindsPrefix,
Method: "GET",
Handler: s.listObjectKinds,
},
&apiEntry{
Path: ObjectPrefix,
Method: "POST",
Handler: s.createObject,
},
&apiEntry{
Path: ObjectPrefix,
Method: "GET",
Handler: s.listObjects,
},
&apiEntry{
Path: ObjectPrefix + "/{name:string}",
Method: "GET",
Handler: s.getObject,
},
&apiEntry{
Path: ObjectPrefix + "/{name:string}",
Method: "PUT",
Handler: s.updateObject,
},
&apiEntry{
Path: ObjectPrefix + "/{name:string}",
Method: "DELETE",
Handler: s.deleteObject,
},
&apiEntry{
Path: StatusObjectPrefix,
Method: "GET",
Handler: s.listStatusObjects,
},
&apiEntry{
Path: StatusObjectPrefix + "/{name:string}",
Method: "GET",
Handler: s.getStatusObject,
},
)
s.apis = append(s.apis, objAPIs...)
}
func (s *Server) readObjectSpec(ctx iris.Context) (supervisor.ObjectSpec, error) {
body, err := ioutil.ReadAll(ctx.Request().Body)
if err != nil {
return nil, fmt.Errorf("read body failed: %v", err)
}
spec, err := supervisor.SpecFromYAML(string(body))
if err != nil {
return nil, err
}
name := ctx.Params().Get("name")
if name != "" && name != spec.GetName() {
return nil, fmt.Errorf("inconsistent name in url and spec ")
}
return spec, err
}
func (s *Server) upgradeConfigVersion(ctx iris.Context) {
version := s._plusOneVersion()
ctx.ResponseWriter().Header().Set(ConfigVersionKey, fmt.Sprintf("%d", version))
}
func (s *Server) createObject(ctx iris.Context) {
spec, err := s.readObjectSpec(ctx)
if err != nil {
handleAPIError(ctx, iris.StatusBadRequest, err)
return
}
name := spec.GetName()
s.Lock()
defer s.Unlock()
existedSpec := s._getObject(name)
if existedSpec != nil {
handleAPIError(ctx, iris.StatusConflict, fmt.Errorf("conflict name"))
return
}
s._putObject(spec)
s.upgradeConfigVersion(ctx)
ctx.StatusCode(iris.StatusCreated)
location := fmt.Sprintf("%s/%s", ctx.Path(), name)
ctx.Header("Location", location)
}
func (s *Server) deleteObject(ctx iris.Context) {
name := ctx.Params().Get("name")
s.Lock()
defer s.Unlock()
spec := s._getObject(name)
if spec == nil {
handleAPIError(ctx, iris.StatusNotFound, fmt.Errorf("not found"))
return
}
s._deleteObject(name)
s.upgradeConfigVersion(ctx)
}
func (s *Server) getObject(ctx iris.Context) {
name := ctx.Params().Get("name")
// No need to lock.
spec := s._getObject(name)
if spec == nil {
handleAPIError(ctx, iris.StatusNotFound, fmt.Errorf("not found"))
return
}
// Reference: https://mailarchive.ietf.org/arch/msg/media-types/e9ZNC0hDXKXeFlAVRWxLCCaG9GI
ctx.Header("Content-Type", "text/vnd.yaml")
ctx.Write([]byte(supervisor.YAMLFromSpec(spec)))
}
func (s *Server) updateObject(ctx iris.Context) {
spec, err := s.readObjectSpec(ctx)
if err != nil {
handleAPIError(ctx, iris.StatusBadRequest, err)
return
}
name := spec.GetName()
s.Lock()
defer s.Unlock()
existedSpec := s._getObject(name)
if existedSpec == nil {
handleAPIError(ctx, iris.StatusNotFound, fmt.Errorf("not found"))
return
}
if existedSpec.GetKind() != spec.GetKind() {
handleAPIError(ctx, iris.StatusBadRequest,
fmt.Errorf("different kinds: %s, %s",
existedSpec.GetKind(), spec.GetKind()))
return
}
s._putObject(spec)
s.upgradeConfigVersion(ctx)
}
func (s *Server) listObjects(ctx iris.Context) {
// No need to lock.
specs := s._listObjects()
// NOTE: Keep it consistent.
sort.Sort(specsToSort(specs))
buff, err := yaml.Marshal(specs)
if err != nil {
panic(fmt.Errorf("marshal %#v to yaml failed: %v", specs, err))
}
ctx.Header("Content-Type", "text/vnd.yaml")
ctx.Write(buff)
}
func (s *Server) getStatusObject(ctx iris.Context) {
name := ctx.Params().Get("name")
spec := s._getObject(name)
if spec == nil {
handleAPIError(ctx, iris.StatusNotFound, fmt.Errorf("not found"))
return
}
// NOTE: Maybe inconsistent, the object was deleted already here.
status := s._getStatusObject(name)
buff, err := yaml.Marshal(status)
if err != nil {
panic(fmt.Errorf("marshal %#v to yaml failed: %v", status, err))
}
ctx.Header("Content-Type", "text/vnd.yaml")
ctx.Write(buff)
}
func (s *Server) listStatusObjects(ctx iris.Context) {
// No need to lock.
status := s._listStatusObjects()
buff, err := yaml.Marshal(status)
if err != nil {
panic(fmt.Errorf("marshal %#v to yaml failed: %v", status, err))
}
ctx.Header("Content-Type", "text/vnd.yaml")
ctx.Write(buff)
}
type specsToSort []supervisor.ObjectSpec
func (s specsToSort) Less(i, j int) bool { return s[i].GetName() < s[j].GetName() }
func (s specsToSort) Len() int { return len(s) }
func (s specsToSort) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
func (s *Server) listObjectKinds(ctx iris.Context) {
kinds := supervisor.ObjectKinds()
buff, err := yaml.Marshal(kinds)
if err != nil {
panic(fmt.Errorf("marshal %#v to yaml failed: %v", kinds, err))
}
ctx.Write(buff)
}