-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaller.go
43 lines (35 loc) · 948 Bytes
/
caller.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
package encoding
import (
"net/http"
"reflect"
"github.com/ThatsMrTalbot/scaffold/errors"
"golang.org/x/net/context"
)
type caller struct {
e *Encoder
params []func(context.Context, http.ResponseWriter, *http.Request) (reflect.Value, error)
caller reflect.Value
}
func (c *caller) CtxServeHTTP(ctx context.Context, w http.ResponseWriter, r *http.Request) {
responder := c.e.Responder(r)
params := make([]reflect.Value, len(c.params))
err := error(nil)
for i, p := range c.params {
params[i], err = p(ctx, w, r)
if err != nil {
responder.Respond(500, w, errorObj{Error: err.Error()})
return
}
}
results := c.caller.Call(params)
resp := results[0].Interface()
if err, ok := results[1].Interface().(error); ok {
s := 500
if status, ok := err.(errors.ErrorStatus); ok {
s = status.Status()
}
responder.Respond(s, w, errorObj{Error: err.(error).Error()})
return
}
responder.Respond(200, w, resp)
}