forked from mweagle/Sparta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sparta_main.go
469 lines (425 loc) · 13.4 KB
/
sparta_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
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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
package sparta
import (
"bytes"
cryptoRand "crypto/rand"
"crypto/sha1"
"encoding/hex"
"fmt"
"math/rand"
"os"
"os/exec"
"path"
"runtime"
"strings"
"time"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"gopkg.in/go-playground/validator.v9"
)
// Constant for Sparta color aware stdout logging
const (
redCode = 31
)
// The Lambda instance ID for this execution
var instanceID string
// Validation instance
var validate *validator.Validate
func isRunningInAWS() bool {
return len(os.Getenv("AWS_LAMBDA_FUNCTION_NAME")) != 0
}
func applyLoggerHooks(serviceName string, workflowHooks *WorkflowHooks, logger *logrus.Logger) error {
// Anything to customize ?
if workflowHooks != nil && workflowHooks.RuntimeLoggerHook != nil {
loggerHookErr := workflowHooks.RuntimeLoggerHook(nil,
serviceName,
logger)
if loggerHookErr != nil {
logger.Errorf("Failed to hook logger: %s", loggerHookErr.Error())
return errors.Wrapf(loggerHookErr, "Attempting to customize logger")
}
logger.Info("Registered runtime logger hook")
}
return nil
}
func displayPrettyHeader(headerDivider string, disableColors bool, logger *logrus.Logger) {
logger.Info(headerDivider)
red := func(inputText string) string {
if disableColors {
return inputText
}
return fmt.Sprintf("\x1b[%dm%s\x1b[0m", redCode, inputText)
}
logger.Info(fmt.Sprintf(red("╔═╗╔═╗╔═╗╦═╗╔╦╗╔═╗")+" Version : %s", SpartaVersion))
logger.Info(fmt.Sprintf(red("╚═╗╠═╝╠═╣╠╦╝ ║ ╠═╣")+" SHA : %s", SpartaGitHash[0:7]))
logger.Info(fmt.Sprintf(red("╚═╝╩ ╩ ╩╩╚═ ╩ ╩ ╩")+" Go : %s", runtime.Version()))
logger.Info(headerDivider)
}
var codePipelineEnvironments map[string]map[string]string
func init() {
validate = validator.New()
codePipelineEnvironments = make(map[string]map[string]string)
r := rand.New(rand.NewSource(time.Now().UnixNano()))
instanceID = fmt.Sprintf("i-%d", r.Int63())
}
// Logger returns the sparta Logger instance for this process
func Logger() *logrus.Logger {
return OptionsGlobal.Logger
}
// InstanceID returns the uniquely assigned instanceID for this lambda
// container
func InstanceID() string {
return instanceID
}
// CommandLineOptions defines the commands available via the Sparta command
// line interface. Embedding applications can extend existing commands
// and add their own to the `Root` command. See https://github.com/spf13/cobra
// for more information.
var CommandLineOptions = struct {
Root *cobra.Command
Version *cobra.Command
Provision *cobra.Command
Delete *cobra.Command
Execute *cobra.Command
Describe *cobra.Command
Explore *cobra.Command
Profile *cobra.Command
Status *cobra.Command
}{}
/*============================================================================*/
// Provision options
// Ref: http://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html
type optionsProvisionStruct struct {
S3Bucket string `validate:"required"`
BuildID string `validate:"-"` // non-whitespace
PipelineTrigger string `validate:"-"`
InPlace bool `validate:"-"`
}
var optionsProvision optionsProvisionStruct
func provisionBuildID(userSuppliedValue string, logger *logrus.Logger) (string, error) {
buildID := userSuppliedValue
if "" == buildID {
// That's cool, let's see if we can find a git SHA
cmd := exec.Command("git",
"rev-parse",
"HEAD")
var stdout bytes.Buffer
var stderr bytes.Buffer
cmd.Stdout = &stdout
cmd.Stderr = &stderr
cmdErr := cmd.Run()
if cmdErr == nil {
// Great, let's use the SHA
buildID = strings.TrimSpace(string(stdout.String()))
if buildID != "" {
logger.WithField("SHA", buildID).
WithField("Command", "git rev-parse HEAD").
Info("Using `git` SHA for StampedBuildID")
}
}
// Ignore any errors and make up a random one
if buildID == "" {
// No problem, let's use an arbitrary SHA
hash := sha1.New()
randomBytes := make([]byte, 256)
_, err := cryptoRand.Read(randomBytes)
if err != nil {
return "", err
}
_, err = hash.Write(randomBytes)
if err != nil {
return "", err
}
buildID = hex.EncodeToString(hash.Sum(nil))
}
}
return buildID, nil
}
/*============================================================================*/
// Describe options
type optionsDescribeStruct struct {
OutputFile string `validate:"required"`
S3Bucket string `validate:"required"`
}
var optionsDescribe optionsDescribeStruct
/*============================================================================*/
// Explore options?
type optionsExploreStruct struct {
}
var optionsExplore optionsExploreStruct
/*============================================================================*/
// Profile options
type optionsProfileStruct struct {
S3Bucket string `validate:"required"`
Port int `validate:"-"`
}
var optionsProfile optionsProfileStruct
/*============================================================================*/
// Status options
type optionsStatusStruct struct {
Redact bool `validate:"-"`
}
var optionsStatus optionsStatusStruct
/*============================================================================*/
// Initialization
// Initialize all the Cobra commands and their associated flags
/*============================================================================*/
func init() {
// Root
CommandLineOptions.Root = &cobra.Command{
Use: path.Base(os.Args[0]),
Short: "Sparta-powered AWS Lambda microservice",
SilenceErrors: true,
}
CommandLineOptions.Root.PersistentFlags().BoolVarP(&OptionsGlobal.Noop, "noop",
"n",
false,
"Dry-run behavior only (do not perform mutations)")
CommandLineOptions.Root.PersistentFlags().StringVarP(&OptionsGlobal.LogLevel,
"level",
"l",
"info",
"Log level [panic, fatal, error, warn, info, debug]")
CommandLineOptions.Root.PersistentFlags().StringVarP(&OptionsGlobal.LogFormat,
"format",
"f",
"text",
"Log format [text, json]")
CommandLineOptions.Root.PersistentFlags().BoolVarP(&OptionsGlobal.TimeStamps,
"timestamps",
"z",
false,
"Include UTC timestamp log line prefix")
CommandLineOptions.Root.PersistentFlags().StringVarP(&OptionsGlobal.BuildTags,
"tags",
"t",
"",
"Optional build tags for conditional compilation")
// Make sure there's a place to put any linker flags
CommandLineOptions.Root.PersistentFlags().StringVar(&OptionsGlobal.LinkerFlags,
"ldflags",
"",
"Go linker string definition flags (https://golang.org/cmd/link/)")
// Support disabling log colors for CLI friendliness
CommandLineOptions.Root.PersistentFlags().BoolVarP(&OptionsGlobal.DisableColors,
"nocolor",
"",
false,
"Boolean flag to suppress colorized TTY output")
// Version
CommandLineOptions.Version = &cobra.Command{
Use: "version",
Short: "Display version information",
Long: `Displays the Sparta framework version `,
Run: func(cmd *cobra.Command, args []string) {
},
}
// Provision
CommandLineOptions.Provision = &cobra.Command{
Use: "provision",
Short: "Provision service",
Long: `Provision the service (either create or update) via CloudFormation`,
}
CommandLineOptions.Provision.Flags().StringVarP(&optionsProvision.S3Bucket,
"s3Bucket",
"s",
"",
"S3 Bucket to use for Lambda source")
CommandLineOptions.Provision.Flags().StringVarP(&optionsProvision.BuildID,
"buildID",
"i",
"",
"Optional BuildID to use")
CommandLineOptions.Provision.Flags().StringVarP(&optionsProvision.PipelineTrigger,
"codePipelinePackage",
"p",
"",
"Name of CodePipeline package that includes cloduformation.json Template and ZIP config files")
CommandLineOptions.Provision.Flags().BoolVarP(&optionsProvision.InPlace,
"inplace",
"c",
false,
"If the provision operation results in *only* function updates, bypass CloudFormation")
// Delete
CommandLineOptions.Delete = &cobra.Command{
Use: "delete",
Short: "Delete service",
Long: `Ensure service is successfully deleted`,
}
// Execute
CommandLineOptions.Execute = &cobra.Command{
Use: "execute",
Short: "Start the application and begin handling events",
Long: `Start the application and begin handling events`,
}
// Describe
CommandLineOptions.Describe = &cobra.Command{
Use: "describe",
Short: "Describe service",
Long: `Produce an HTML report of the service`,
}
CommandLineOptions.Describe.Flags().StringVarP(&optionsDescribe.OutputFile,
"out",
"o",
"",
"Output file for HTML description")
CommandLineOptions.Describe.Flags().StringVarP(&optionsDescribe.S3Bucket,
"s3Bucket",
"s",
"",
"S3 Bucket to use for Lambda source")
// Explore
CommandLineOptions.Explore = &cobra.Command{
Use: "explore",
Short: "Interactively explore a provisioned service",
Long: `Startup a local CLI GUI to explore and trigger your AWS service`,
}
// Profile
CommandLineOptions.Profile = &cobra.Command{
Use: "profile",
Short: "Interactively examine service pprof output",
Long: `Startup a local pprof webserver to interrogate profiles snapshots on S3`,
}
CommandLineOptions.Profile.Flags().StringVarP(&optionsProfile.S3Bucket,
"s3Bucket",
"s",
"",
"S3 Bucket that stores lambda profile snapshots")
CommandLineOptions.Profile.Flags().IntVarP(&optionsProfile.Port,
"port",
"p",
8080,
"Alternative port for `pprof` web UI (default=8080)")
// Status
CommandLineOptions.Status = &cobra.Command{
Use: "status",
Short: "Produce a report for a provisioned service",
Long: `Produce a report for a provisioned service`,
}
CommandLineOptions.Status.Flags().BoolVarP(&optionsStatus.Redact, "redact",
"r",
false,
"Redact AWS Account ID from report")
}
// CommandLineOptionsHook allows embedding applications the ability
// to validate caller-defined command line arguments. Return an error
// if the command line fails.
type CommandLineOptionsHook func(command *cobra.Command) error
// ParseOptions the command line options
func ParseOptions(handler CommandLineOptionsHook) error {
// First up, create a dummy Root command for the parse...
var parseCmdRoot = &cobra.Command{
Use: CommandLineOptions.Root.Use,
Short: CommandLineOptions.Root.Short,
SilenceUsage: true,
SilenceErrors: false,
RunE: func(cmd *cobra.Command, args []string) error {
return nil
},
}
parseCmdRoot.PersistentFlags().BoolVarP(&OptionsGlobal.Noop, "noop",
"n",
false,
"Dry-run behavior only (do not perform mutations)")
parseCmdRoot.PersistentFlags().StringVarP(&OptionsGlobal.LogLevel,
"level",
"l",
"info",
"Log level [panic, fatal, error, warn, info, debug]")
parseCmdRoot.PersistentFlags().StringVarP(&OptionsGlobal.LogFormat,
"format",
"f",
"text",
"Log format [text, json]")
parseCmdRoot.PersistentFlags().StringVarP(&OptionsGlobal.BuildTags,
"tags",
"t",
"",
"Optional build tags for conditional compilation")
// Now, for any user-attached commands, add them to the temporary Parse
// root command.
for _, eachUserCommand := range CommandLineOptions.Root.Commands() {
userProxyCmd := &cobra.Command{
Use: eachUserCommand.Use,
Short: eachUserCommand.Short,
}
userProxyCmd.PreRunE = func(cmd *cobra.Command, args []string) error {
validateErr := validate.Struct(OptionsGlobal)
if nil != validateErr {
return validateErr
}
// Format?
var formatter logrus.Formatter
switch OptionsGlobal.LogFormat {
case "text", "txt":
formatter = &logrus.TextFormatter{}
case "json":
formatter = &logrus.JSONFormatter{}
}
logger, loggerErr := NewLoggerWithFormatter(OptionsGlobal.LogLevel, formatter)
if nil != loggerErr {
return loggerErr
}
OptionsGlobal.Logger = logger
if handler != nil {
return handler(userProxyCmd)
}
return nil
}
userProxyCmd.Flags().AddFlagSet(eachUserCommand.Flags())
parseCmdRoot.AddCommand(userProxyCmd)
}
//////////////////////////////////////////////////////////////////////////////
// Then add the standard Sparta ones...
spartaCommands := []*cobra.Command{
CommandLineOptions.Version,
CommandLineOptions.Provision,
CommandLineOptions.Delete,
CommandLineOptions.Execute,
CommandLineOptions.Describe,
CommandLineOptions.Explore,
CommandLineOptions.Profile,
CommandLineOptions.Status,
}
for _, eachCommand := range spartaCommands {
eachCommand.PreRunE = func(cmd *cobra.Command, args []string) error {
if eachCommand == CommandLineOptions.Provision {
StampedBuildID = optionsProvision.BuildID
}
if handler != nil {
return handler(eachCommand)
}
return nil
}
parseCmdRoot.AddCommand(CommandLineOptions.Version)
}
// Assign each command an empty RunE func s.t.
// Cobra doesn't print out the command info
for _, eachCommand := range parseCmdRoot.Commands() {
eachCommand.RunE = func(cmd *cobra.Command, args []string) error {
return nil
}
}
// Intercept the usage command - we'll end up showing this later
// in Main...If there is an error, we will show help there...
parseCmdRoot.SetHelpFunc(func(*cobra.Command, []string) {
// Swallow help here
})
// Run it...
executeErr := parseCmdRoot.Execute()
// Cleanup the Sparta specific ones
for _, eachCmd := range spartaCommands {
eachCmd.RunE = nil
eachCmd.PreRunE = nil
}
if nil != executeErr {
parseCmdRoot.SetHelpFunc(nil)
executeErr = parseCmdRoot.Root().Help()
}
return executeErr
}
// NewLogger returns a new logrus.Logger instance. It is the caller's responsibility
// to set the formatter if needed.
func NewLogger(level string) (*logrus.Logger, error) {
return NewLoggerWithFormatter(level, nil)
}