-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandler.go
355 lines (284 loc) · 7.77 KB
/
handler.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
package ops
import (
"context"
"crypto/tls"
"encoding/json"
"fmt"
"io"
"log/slog"
"net/http"
"reflect"
"strings"
"github.com/common-fate/ops/protocol"
"github.com/common-fate/ops/servicedef"
"github.com/common-fate/ops/tunnel"
"github.com/invopop/jsonschema"
"github.com/quic-go/quic-go"
)
type ResourceHandler[R any] struct {
operations map[string]any
}
type Registry struct {
services []any
resources []any
}
type function struct {
method reflect.Value
inputType *reflect.Type
}
type Handler struct {
// map service -> operation -> Go function
routes map[string]map[string]function
defs servicedef.Definitions
}
func New() *Registry {
return &Registry{}
}
type ResourceSchema[R any] struct{}
func (r ResourceSchema[R]) resourceType() {
}
// Use ops.NewResource() to construct a resource.
type Resource interface {
resourceType()
}
func NewResource[R any](loader ResourceLoader[R]) *ResourceSchema[R] {
r := new(ResourceSchema[R])
return r
}
type ResourceLoader[R any] interface {
Load(ctx context.Context, id string) (*R, error)
}
type ServiceMetadata struct {
ID string
DisplayName string
Description string
OperationMetadata map[string]OperationMetadata
}
type OperationMetadata struct {
Description string
}
type ServiceWithMetadata interface {
Metadata() ServiceMetadata
}
func (h *Registry) Register(service any) {
h.services = append(h.services, service)
}
// Register a new resource.
//
// Example:
//
// h.RegisterResource(ops.NewResource(customer))
func (h *Registry) RegisterResource(r Resource) {
h.resources = append(h.resources, r)
}
func (h *Handler) ServiceDefinitions() servicedef.Definitions {
return h.defs
}
func (h *Handler) Call(ctx context.Context, service string, operation string, input json.RawMessage) ([]byte, error) {
svcroutes, ok := h.routes[service]
if !ok {
return nil, fmt.Errorf("service %s not found", service)
}
function, ok := svcroutes[operation]
if !ok {
return nil, fmt.Errorf("operation %s not found for service %s", operation, service)
}
var args []reflect.Value
args = append(args, reflect.ValueOf(ctx)) // TODO: ctx should not always be required
if function.inputType != nil {
v := reflect.New(*function.inputType)
valInt := v.Interface()
err := json.Unmarshal(input, &valInt)
if err != nil {
return nil, fmt.Errorf("error unmarshalling input: %w", err)
}
args = append(args, reflect.ValueOf(valInt).Elem())
}
output := function.method.Call(args)
result := output[0] // TODO: output should not always be required
msgValue := result.Interface()
return json.Marshal(msgValue)
}
func (r *Registry) Build() (*Handler, error) {
h := Handler{
routes: map[string]map[string]function{},
}
for _, svc := range r.services {
v := reflect.ValueOf(svc)
if v.Kind() != reflect.Pointer {
return nil, fmt.Errorf("received a struct that wasn't a pointer for %T: ensure that you call Register() with the address of the struct, e.g. Register(&MyService{})", svc)
}
tt := reflect.TypeOf(svc)
sdef := servicedef.Service{
ID: v.Elem().Type().Name(),
}
var meta ServiceMetadata
if metasrv, ok := svc.(ServiceWithMetadata); ok {
meta = metasrv.Metadata()
sdef = servicedef.Service{
ID: meta.ID,
Name: meta.DisplayName,
Description: meta.Description,
}
}
_, exists := h.routes[sdef.ID]
if exists {
return nil, fmt.Errorf("a service with ID '%s' has already been registered, please rename the service or remove the second registration (you can update the ID by setting it in Metadata())", sdef.ID)
}
routeMap := map[string]function{}
for i := 0; i < tt.NumMethod(); i++ {
method := tt.Method(i)
if method.Name == "Metadata" {
continue
}
methodValue := v.Method(i)
opMeta := meta.OperationMetadata[method.Name]
op := servicedef.Operation{
ID: method.Name,
Description: opMeta.Description,
}
extract, err := extractMethods(method.Func)
if err != nil {
slog.Error("error extracting method", "error", err)
}
if extract.InputSchema != nil {
op.RequestBody = &servicedef.RootSchema{
Schema: *extract.InputSchema,
}
}
parsed, ok := parseMethod(method, methodValue, meta)
if ok {
routeMap[parsed.operation.ID] = function{
method: methodValue,
inputType: extract.InputType,
}
sdef.Operations = append(sdef.Operations, op)
}
}
h.routes[sdef.ID] = routeMap
h.defs.Services = append(h.defs.Services, sdef)
}
return &h, nil
}
type parseMethodResult struct {
function function
operation servicedef.Operation
}
func parseMethod(method reflect.Method, methodValue reflect.Value, meta ServiceMetadata) (parseMethodResult, bool) {
if method.Name == "Metadata" {
return parseMethodResult{}, false
}
opMeta := meta.OperationMetadata[method.Name]
op := servicedef.Operation{
ID: method.Name,
Description: opMeta.Description,
}
extract, err := extractMethods(method.Func)
if err != nil {
slog.Error("error extracting method", "error", err)
}
if extract.InputSchema != nil {
op.RequestBody = &servicedef.RootSchema{
Schema: *extract.InputSchema,
}
}
res := parseMethodResult{
function: function{
method: methodValue,
inputType: extract.InputType,
},
operation: op,
}
return res, true
}
type extractMethodsResult struct {
InputSchema *jsonschema.Schema
InputType *reflect.Type
}
func extractMethods(f reflect.Value) (extractMethodsResult, error) {
funcType := f.Type()
var res extractMethodsResult
for i := 1; i < funcType.NumIn(); i++ {
t := funcType.In(i)
v := reflect.New(t)
interf := v.Interface()
// should be possible to relax this in future,
// for example if the function does not do anything
// async and doesn't take a context.
_, isCtx := interf.(*context.Context)
if !isCtx && i == 1 {
return res, fmt.Errorf("first arg was not context.Context, got %T", interf)
}
if i == 2 {
res.InputSchema = jsonschema.Reflect(v.Interface())
res.InputType = &t
return res, nil
}
}
return res, nil
}
type StartOpts struct {
Namespace string
// TLSConfig allows the tunnel TLS
// config to be optionally overridden.
TLSConfig *tls.Config
QuicConfig *quic.Config
OnConnectionReady func(protocol.RegisterListenerResponse)
Logger *slog.Logger
Addr string
}
func (r *Registry) Start(ctx context.Context, opts StartOpts) error {
h, err := r.Build()
if err != nil {
return err
}
server := tunnel.Tunnel{
Namespace: opts.Namespace,
TLSConfig: opts.TLSConfig,
Logger: opts.Logger,
QuicConfig: opts.QuicConfig,
OnConnectionReady: opts.OnConnectionReady,
Handler: h,
}
return server.DialAndServe(ctx, opts.Addr)
}
func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET" && r.URL.Path == "/.lightwave/operations" {
err := json.NewEncoder(w).Encode(h.defs)
if err != nil {
slog.Error("error marshalling operations", "error", err)
_, _ = w.Write([]byte(err.Error()))
}
return
}
if r.Method != "POST" {
// POST-only protocol
w.WriteHeader(http.StatusMethodNotAllowed)
w.Write([]byte(http.StatusText(http.StatusMethodNotAllowed)))
return
}
urlPath := strings.TrimPrefix(r.URL.Path, "/")
parts := strings.Split(urlPath, "/")
// expect path to be /service/method
if len(parts) != 2 {
w.WriteHeader(http.StatusNotFound)
msg := fmt.Sprintf("invalid path: %s", r.URL.Path)
w.Write([]byte(msg))
return
}
body, err := io.ReadAll(r.Body)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte(err.Error()))
return
}
service := parts[0]
op := parts[1]
res, err := h.Call(r.Context(), service, op, body)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte(err.Error()))
return
}
w.Write(res)
}