-
Notifications
You must be signed in to change notification settings - Fork 499
/
wasm.go
175 lines (148 loc) · 4.15 KB
/
wasm.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
//go:build wasmhost
// +build wasmhost
/*
* Copyright (c) 2017, The Easegress Authors
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package api
import (
"fmt"
"net/http"
"time"
"github.com/go-chi/chi/v5"
"go.etcd.io/etcd/client/v3/concurrency"
"github.com/megaease/easegress/v2/pkg/filters/wasmhost"
"github.com/megaease/easegress/v2/pkg/util/codectool"
)
func (s *Server) isFilterExist(pipeline, filter, kind string) bool {
spec := s._getObject(pipeline)
if spec == nil {
return false
}
rawSpec := spec.RawSpec()
var filters []interface{}
if f := rawSpec["filters"]; f != nil {
filters, _ = f.([]interface{})
}
if filters == nil {
return false
}
for i := range filters {
f, _ := filters[i].(map[string]interface{})
if f == nil {
continue
}
if n := f["name"]; n == nil || n != filter {
continue
}
if k := f["kind"]; k == nil || k != kind {
continue
}
return true
}
return false
}
func (s *Server) wasmReloadCode(w http.ResponseWriter, r *http.Request) {
key := s.cluster.Layout().WasmCodeEvent()
value := time.Now().Format(time.RFC3339Nano)
if e := s.cluster.Put(key, value); e != nil {
ClusterPanic(e)
}
w.Header().Set("Content-Type", "text/plain")
fmt.Fprintf(w, "wasm code reload event posted at: %s\n", value)
}
func (s *Server) wasmListData(w http.ResponseWriter, r *http.Request) {
pipeline := chi.URLParam(r, "pipeline")
filter := chi.URLParam(r, "filter")
if !s.isFilterExist(pipeline, filter, wasmhost.Kind) {
HandleAPIError(w, r, http.StatusNotFound, fmt.Errorf("not found"))
return
}
c := s.cluster
prefix := c.Layout().WasmDataPrefix(pipeline, filter)
rawData, e := c.GetPrefix(prefix)
if e != nil {
HandleAPIError(w, r, http.StatusInternalServerError, e)
return
}
// remove prefix from key
data := map[string]string{}
for k, v := range rawData {
k = k[len(prefix):]
data[k] = v
}
WriteBody(w, r, data)
}
func (s *Server) wasmApplyData(w http.ResponseWriter, r *http.Request) {
pipeline := chi.URLParam(r, "pipeline")
filter := chi.URLParam(r, "filter")
if !s.isFilterExist(pipeline, filter, wasmhost.Kind) {
HandleAPIError(w, r, http.StatusNotFound, fmt.Errorf("not found"))
return
}
data := make(map[string]string)
if e := codectool.Decode(r.Body, &data); e != nil {
HandleAPIError(w, r, http.StatusBadRequest, e)
return
}
c := s.cluster
prefix := c.Layout().WasmDataPrefix(pipeline, filter)
c.STM(func(stm concurrency.STM) error {
for k, v := range data {
stm.Put(prefix+k, v)
}
return nil
})
}
func (s *Server) wasmDeleteData(w http.ResponseWriter, r *http.Request) {
pipeline := chi.URLParam(r, "pipeline")
filter := chi.URLParam(r, "filter")
if !s.isFilterExist(pipeline, filter, wasmhost.Kind) {
HandleAPIError(w, r, http.StatusNotFound, fmt.Errorf("not found"))
return
}
c := s.cluster
prefix := c.Layout().WasmDataPrefix(pipeline, filter)
c.DeletePrefix(prefix)
}
func appendWasmAPI(s *Server, group *Group) {
entry := &Entry{
Path: "/wasm/code",
Method: http.MethodPost,
Handler: s.wasmReloadCode,
}
group.Entries = append(group.Entries, entry)
entry = &Entry{
Path: "/wasm/data/{pipeline}/{filter}",
Method: http.MethodGet,
Handler: s.wasmListData,
}
group.Entries = append(group.Entries, entry)
entry = &Entry{
Path: "/wasm/data/{pipeline}/{filter}",
Method: http.MethodPut,
Handler: s.wasmApplyData,
}
group.Entries = append(group.Entries, entry)
entry = &Entry{
Path: "/wasm/data/{pipeline}/{filter}",
Method: http.MethodDelete,
Handler: s.wasmDeleteData,
}
group.Entries = append(group.Entries, entry)
}
func init() {
appendAddonAPIs = append(appendAddonAPIs, appendWasmAPI)
}