-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathhooks.go
342 lines (309 loc) · 10.1 KB
/
hooks.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
package sparta
import (
"archive/zip"
"context"
awsv2 "github.com/aws/aws-sdk-go-v2/aws"
gof "github.com/awslabs/goformation/v5/cloudformation"
goflambda "github.com/awslabs/goformation/v5/cloudformation/lambda"
"github.com/rs/zerolog"
)
////////////////////////////////////////////////////////////////////////////////
// TYPES
////////////////////////////////////////////////////////////////////////////////
// TemplateDecorator allows Lambda functions to annotate the CloudFormation
// template definition. Both the resources and the outputs params
// are initialized to an empty ArbitraryJSONObject and should
// be populated with valid CloudFormation ArbitraryJSONObject values. The
// CloudFormationResourceName() function can be used to generate
// logical CloudFormation-compatible resource names.
// See http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html and
// http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/outputs-section-structure.html for
// more information.
type TemplateDecorator func(ctx context.Context,
serviceName string,
lambdaResourceName string,
lambdaResource *goflambda.Function,
resourceMetadata map[string]interface{},
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
template *gof.Template,
logger *zerolog.Logger) (context.Context, error)
// TemplateDecoratorHookFunc is the adapter to transform an existing
// TemplateHook into a TemplateDecoratorHandler satisfier
type TemplateDecoratorHookFunc func(ctx context.Context,
serviceName string,
lambdaResourceName string,
lambdaResource *goflambda.Function,
resourceMetadata map[string]interface{},
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
template *gof.Template,
logger *zerolog.Logger) (context.Context, error)
// DecorateTemplate calls tdhf(...) to satisfy TemplateDecoratorHandler
func (tdhf TemplateDecoratorHookFunc) DecorateTemplate(ctx context.Context,
serviceName string,
lambdaResourceName string,
lambdaResource *goflambda.Function,
resourceMetadata map[string]interface{},
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
template *gof.Template,
logger *zerolog.Logger) (context.Context, error) {
return tdhf(ctx,
serviceName,
lambdaResourceName,
lambdaResource,
resourceMetadata,
lambdaFunctionCode,
buildID,
template,
logger)
}
// TemplateDecoratorHandler is the interface type to indicate a template
// decoratorHook
type TemplateDecoratorHandler interface {
DecorateTemplate(ctx context.Context,
serviceName string,
lambdaResourceName string,
lambdaResource *goflambda.Function,
resourceMetadata map[string]interface{},
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
template *gof.Template,
logger *zerolog.Logger) (context.Context, error)
}
////////////////////////////////////////////////////////////////////////////////
// WorkflowHandler
// WorkflowHook defines a user function that should be called at a specific
// point in the larger Sparta workflow. The first argument is a map that
// is shared across all LifecycleHooks and which Sparta treats as an opaque
// value.
type WorkflowHook func(ctx context.Context,
serviceName string,
S3Bucket string,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
// WorkflowHookFunc is the adapter to transform an existing
// WorkflowHook into a WorkflowHookHandler satisfier
type WorkflowHookFunc func(ctx context.Context,
serviceName string,
S3Bucket string,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
// DecorateWorkflow calls whf(...) to satisfy WorkflowHookHandler
func (whf WorkflowHookFunc) DecorateWorkflow(ctx context.Context,
serviceName string,
S3Bucket string,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error) {
return whf(ctx,
serviceName,
S3Bucket,
buildID,
awsConfig,
noop,
logger)
}
// WorkflowHookHandler is the interface type to indicate a workflow
// hook
type WorkflowHookHandler interface {
DecorateWorkflow(ctx context.Context,
serviceName string,
S3Bucket string,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
}
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
// ArchiveHandler
// ArchiveHook provides callers an opportunity to insert additional
// files into the ZIP archive deployed to S3
type ArchiveHook func(ctx context.Context,
serviceName string,
zipWriter *zip.Writer,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
// ArchiveHookFunc is the adapter to transform an existing
// ArchiveHook into a WorkflowHookHandler satisfier
type ArchiveHookFunc func(ctx context.Context,
serviceName string,
zipWriter *zip.Writer,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
// DecorateArchive calls whf(...) to satisfy ArchiveHookHandler
func (ahf ArchiveHookFunc) DecorateArchive(ctx context.Context,
serviceName string,
zipWriter *zip.Writer,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error) {
return ahf(ctx,
serviceName,
zipWriter,
awsConfig,
noop,
logger)
}
// ArchiveHookHandler is the interface type to indicate a workflow
// hook
type ArchiveHookHandler interface {
DecorateArchive(ctx context.Context,
serviceName string,
zipWriter *zip.Writer,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
}
////////////////////////////////////////////////////////////////////////////////
// ServiceDecoratorHandler
// ServiceDecoratorHook defines a user function that is called a single
// time in the marshall workflow.
type ServiceDecoratorHook func(ctx context.Context,
serviceName string,
template *gof.Template,
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
// ServiceDecoratorHookFunc is the adapter to transform an existing
// ServiceDecoratorHook into a WorkflowHookHandler satisfier
type ServiceDecoratorHookFunc func(ctx context.Context,
serviceName string,
template *gof.Template,
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
// DecorateService calls sdhf(...) to satisfy ServiceDecoratorHookHandler
func (sdhf ServiceDecoratorHookFunc) DecorateService(ctx context.Context,
serviceName string,
template *gof.Template,
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error) {
return sdhf(ctx,
serviceName,
template,
lambdaFunctionCode,
buildID,
awsConfig,
noop,
logger)
}
// ServiceDecoratorHookHandler is the interface type to indicate a workflow
// hook
type ServiceDecoratorHookHandler interface {
DecorateService(ctx context.Context,
serviceName string,
template *gof.Template,
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
}
////////////////////////////////////////////////////////////////////////////////
// ServiceValidationHookHandler
// ServiceValidationHook defines a user function that is called a single
// after all template annotations have been performed. It is where
// policies should be applied
type ServiceValidationHook func(ctx context.Context,
serviceName string,
template *gof.Template,
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
// ServiceValidationHookFunc is the adapter to transform an existing
// ArchiveHook into a WorkflowHookHandler satisfier
type ServiceValidationHookFunc func(ctx context.Context,
serviceName string,
template *gof.Template,
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
// ValidateService calls sdhf(...) to satisfy ServiceValidationHookHandler
func (sdhf ServiceValidationHookFunc) ValidateService(ctx context.Context,
serviceName string,
template *gof.Template,
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error) {
return sdhf(ctx,
serviceName,
template,
lambdaFunctionCode,
buildID,
awsConfig,
noop,
logger)
}
// ServiceValidationHookHandler is the interface type to indicate a workflow
// hook
type ServiceValidationHookHandler interface {
ValidateService(ctx context.Context,
serviceName string,
template *gof.Template,
lambdaFunctionCode *goflambda.Function_Code,
buildID string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
}
////////////////////////////////////////////////////////////////////////////////
// RollbackHandler
// RollbackHook provides callers an opportunity to handle failures
// associated with failing to perform the requested operation
type RollbackHook func(ctx context.Context,
serviceName string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger)
// RollbackHookFunc the adapter to transform an existing
// RollbackHook into a RollbackHookHandler satisfier
type RollbackHookFunc func(ctx context.Context,
serviceName string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger)
// Rollback calls sdhf(...) to satisfy ArchiveHookHandler
func (rhf RollbackHookFunc) Rollback(ctx context.Context,
serviceName string,
awsConfig awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error) {
rhf(ctx,
serviceName,
awsConfig,
noop,
logger)
return ctx, nil
}
// RollbackHookHandler is the interface type to indicate a workflow
// hook
type RollbackHookHandler interface {
Rollback(ctx context.Context,
serviceName string,
config awsv2.Config,
noop bool,
logger *zerolog.Logger) (context.Context, error)
}