forked from awslabs/aws-lambda-go-api-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
adapterALB.go
59 lines (47 loc) · 2.12 KB
/
adapterALB.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
package echoadapter
import (
"context"
"net/http"
"github.com/aws/aws-lambda-go/events"
"github.com/catdevman/aws-lambda-go-api-proxy/core"
"github.com/labstack/echo/v4"
)
// EchoLambdaALB makes it easy to send ALB proxy events to a echo.Echo.
// The library transforms the proxy event into an HTTP request and then
// creates a proxy response object from the http.ResponseWriter
type EchoLambdaALB struct {
core.RequestAccessorALB
Echo *echo.Echo
}
// NewAPI creates a new instance of the EchoLambdaAPI object.
// Receives an initialized *echo.Echo object - normally created with echo.New().
// It returns the initialized instance of the EchoLambdaALB object.
func NewALB(e *echo.Echo) *EchoLambdaALB {
return &EchoLambdaALB{Echo: e}
}
// Proxy receives an ALB event, transforms it into an http.Request
// object, and sends it to the echo.Echo for routing.
// It returns a proxy response object generated from the http.ResponseWriter.
func (e *EchoLambdaALB) Proxy(req events.ALBTargetGroupRequest) (events.ALBTargetGroupResponse, error) {
echoRequest, err := e.ProxyEventToHTTPRequest(req)
return e.proxyInternal(echoRequest, err)
}
// ProxyWithContext receives context and an ALB event,
// transforms them into an http.Request object, and sends it to the echo.Echo for routing.
// It returns a proxy response object generated from the http.ResponseWriter.
func (e *EchoLambdaALB) ProxyWithContext(ctx context.Context, req events.ALBTargetGroupRequest) (events.ALBTargetGroupResponse, error) {
echoRequest, err := e.EventToRequestWithContext(ctx, req)
return e.proxyInternal(echoRequest, err)
}
func (e *EchoLambdaALB) proxyInternal(req *http.Request, err error) (events.ALBTargetGroupResponse, error) {
if err != nil {
return core.GatewayTimeoutALB(), core.NewLoggedError("Could not convert proxy event to request: %v", err)
}
respWriter := core.NewProxyResponseWriterALB()
e.Echo.ServeHTTP(http.ResponseWriter(respWriter), req)
proxyResponse, err := respWriter.GetProxyResponse()
if err != nil {
return core.GatewayTimeoutALB(), core.NewLoggedError("Error while generating proxy response: %v", err)
}
return proxyResponse, nil
}