-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
218 lines (192 loc) · 5.48 KB
/
main.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
package main
import (
"context"
"errors"
"fmt"
"io"
"log"
"log/slog"
"os"
"regexp"
"strings"
"time"
"github.com/lmittmann/tint"
"github.com/urfave/cli/v3"
)
var line = strings.Repeat("-", 75) //nolint:gochecknoglobals,mnd
func main() {
ctx := context.Background()
if err := run(ctx, os.Stdout); err != nil {
log.Fatal(err)
}
}
func run(ctx context.Context, w io.Writer) error { //nolint:funlen,cyclop
logLevel := slog.LevelInfo
cmd := &cli.Command{
Usage: "A tool for invoking AWS Lambdas locally",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "address",
Aliases: []string{"a"},
Value: "localhost:8000",
Usage: "Address of locally running lambda. Port can be set with env var _LAMBDA_SERVER_PORT.",
},
&cli.BoolFlag{
Name: "parse-json",
Aliases: []string{"p"},
Value: false,
Usage: "Parse response values like 'body' as JSON.",
},
&cli.IntFlag{
Name: "executionLimit",
Aliases: []string{"e"},
Value: 5, //nolint:mnd
Usage: "Execution time limit for this lambda in seconds.",
},
&cli.BoolFlag{
Name: "verbose",
Aliases: []string{"v"},
Usage: "Enable verbose logging for debugging.",
Action: func(_ context.Context, _ *cli.Command, b bool) error {
if b {
logLevel = slog.LevelDebug
}
return nil
},
},
},
Commands: []*cli.Command{
{
Name: "api",
Usage: "Run local API and invoke lambda with requests",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "port",
Aliases: []string{"p"},
Value: "8080",
Usage: "Port for local API Gateway. Must be a string of four digits .",
Action: func(_ context.Context, _ *cli.Command, v string) error {
re := regexp.MustCompile(`^\d{4}$`)
if re.MatchString(v) {
return fmt.Errorf("expected 4 consecutive digets. Got %v", v)
}
return nil
},
},
&cli.StringFlag{
Name: "template",
Aliases: []string{"t"},
Value: "./template.yaml",
Usage: "Path to AWS SAM template.yaml.",
Action: func(_ context.Context, _ *cli.Command, v string) error {
_, err := os.Stat(v)
if os.IsNotExist(err) {
return fmt.Errorf("template '%v' does not exist", v)
}
return nil
},
},
},
Action: func(ctx context.Context, cmd *cli.Command) error {
// get flags
executionLimit := time.Duration(cmd.Int("executionLimit")) * time.Second
lambdaAddress := cmd.String("address")
port := cmd.String("port")
template := cmd.String("template")
parseJSON := cmd.Bool("parse-json")
logger := slog.New(
tint.NewHandler(
w, &tint.Options{
Level: logLevel,
TimeFormat: "15:04:05.000",
},
),
)
// create lambda client
lambdaRPC := NewLambdaLambdaRPCClient(lambdaAddress, executionLimit)
// run local API gateway
if err := RunLambdaAPI(ctx, w, lambdaRPC, port, template, parseJSON, logger); err != nil {
return fmt.Errorf("[in run.api] RunLambdaAPI failed: %w", err)
}
return nil
},
},
{
Name: "event",
Usage: "Invoke lambda with JSON event",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "file",
Aliases: []string{"f"},
Usage: "Load event from `FILE_PATH`.",
Action: func(_ context.Context, _ *cli.Command, v string) error {
_, err := os.Stat(v)
if os.IsNotExist(err) {
return fmt.Errorf("event file '%v' does not exist", v)
}
return nil
},
},
&cli.StringFlag{
Name: "string",
Aliases: []string{"e"},
Usage: "Lambda event as a `STRING` to invoke.",
},
},
Before: func(_ context.Context, cmd *cli.Command) error {
filePath := cmd.String("file")
event := cmd.String("string")
// validate that both event and file-event not set
if filePath != "" && event != "" {
return errors.New("'file-event' and 'event' are mutually exclusive")
}
// if file path, read file to string
if filePath != "" {
file, err := os.Open(filePath)
if err != nil {
return fmt.Errorf("[in run.event] failed to open event file: %w", err)
}
defer func() {
_ = file.Close()
}()
bytes, err := io.ReadAll(file)
if err != nil {
return fmt.Errorf("[in run.event] failed to read event file: %w", err)
}
if err = cmd.Set("string", string(bytes)); err != nil {
return fmt.Errorf("[in run.event] failed to set value for key 'string': %w", err)
}
return nil
}
return nil
},
Action: func(ctx context.Context, cmd *cli.Command) error {
// get flags
executionLimit := time.Duration(cmd.Int("executionLimit")) * time.Second
lambdaAddress := cmd.String("address")
event := cmd.String("string")
parseJSON := cmd.Bool("parse-json")
logger := slog.New(
tint.NewHandler(
w, &tint.Options{
Level: logLevel,
TimeFormat: "15:04:05.000",
},
),
)
// create lambda client
lambdaRPC := NewLambdaLambdaRPCClient(lambdaAddress, executionLimit)
// invoke lambda with event
if err := RunLambdaEvent(ctx, w, lambdaRPC, event, parseJSON, logger); err != nil {
return fmt.Errorf("[in run.event] RunLambdaEvent failed: %w", err)
}
return nil
},
},
},
}
if err := cmd.Run(ctx, os.Args); err != nil {
return fmt.Errorf("[in run] Run failed: %w", err)
}
return nil
}