-
Notifications
You must be signed in to change notification settings - Fork 421
/
Copy pathcode_pipeline_job_event.py
339 lines (266 loc) · 10.3 KB
/
code_pipeline_job_event.py
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
from __future__ import annotations
import tempfile
import zipfile
from functools import cached_property
from typing import Any
from urllib.parse import unquote_plus
from aws_lambda_powertools.utilities.data_classes.common import DictWrapper
class CodePipelineConfiguration(DictWrapper):
@property
def function_name(self) -> str:
"""Function name"""
return self["FunctionName"]
@property
def user_parameters(self) -> str | None:
"""User parameters"""
return self.get("UserParameters", None)
@cached_property
def decoded_user_parameters(self) -> dict[str, Any]:
"""Json Decoded user parameters"""
if self.user_parameters is not None:
return self._json_deserializer(self.user_parameters)
return {}
class CodePipelineActionConfiguration(DictWrapper):
"""CodePipeline Action Configuration"""
@property
def configuration(self) -> CodePipelineConfiguration:
return CodePipelineConfiguration(self["configuration"])
class CodePipelineS3Location(DictWrapper):
@property
def bucket_name(self) -> str:
return self["bucketName"]
@property
def key(self) -> str:
"""Raw S3 object key"""
return self["objectKey"]
@property
def object_key(self) -> str:
"""Unquote plus of the S3 object key"""
return unquote_plus(self["objectKey"])
class CodePipelineLocation(DictWrapper):
@property
def get_type(self) -> str:
"""Location type eg: S3"""
return self["type"]
@property
def s3_location(self) -> CodePipelineS3Location:
"""S3 location"""
return CodePipelineS3Location(self["s3Location"])
class CodePipelineArtifact(DictWrapper):
@property
def name(self) -> str:
"""Name"""
return self["name"]
@property
def revision(self) -> str | None:
return self.get("revision")
@property
def location(self) -> CodePipelineLocation:
return CodePipelineLocation(self["location"])
class CodePipelineArtifactCredentials(DictWrapper):
_sensitive_properties = ["secret_access_key", "session_token"]
@property
def access_key_id(self) -> str:
return self["accessKeyId"]
@property
def secret_access_key(self) -> str:
return self["secretAccessKey"]
@property
def session_token(self) -> str:
return self["sessionToken"]
@property
def expiration_time(self) -> int | None:
return self.get("expirationTime")
class CodePipelineEncryptionKey(DictWrapper):
@property
def get_id(self) -> str:
return self["id"]
@property
def get_type(self) -> str:
return self["type"]
class CodePipelineData(DictWrapper):
"""CodePipeline Job Data"""
@property
def action_configuration(self) -> CodePipelineActionConfiguration:
"""CodePipeline action configuration"""
return CodePipelineActionConfiguration(self["actionConfiguration"])
@property
def input_artifacts(self) -> list[CodePipelineArtifact]:
"""Represents a CodePipeline input artifact"""
return [CodePipelineArtifact(item) for item in self["inputArtifacts"]]
@property
def output_artifacts(self) -> list[CodePipelineArtifact]:
"""Represents a CodePipeline output artifact"""
return [CodePipelineArtifact(item) for item in self["outputArtifacts"]]
@property
def artifact_credentials(self) -> CodePipelineArtifactCredentials:
"""Represents a CodePipeline artifact credentials"""
return CodePipelineArtifactCredentials(self["artifactCredentials"])
@property
def continuation_token(self) -> str | None:
"""A continuation token if continuing job"""
return self.get("continuationToken")
@property
def encryption_key(self) -> CodePipelineEncryptionKey | None:
"""Represents a CodePipeline encryption key"""
key_data = self.get("encryptionKey")
return CodePipelineEncryptionKey(key_data) if key_data is not None else None
class CodePipelineJobEvent(DictWrapper):
"""AWS CodePipeline Job Event
Documentation:
-------------
- https://docs.aws.amazon.com/codepipeline/latest/userguide/actions-invoke-lambda-function.html
- https://docs.aws.amazon.com/lambda/latest/dg/services-codepipeline.html
"""
def __init__(self, data: dict[str, Any]):
super().__init__(data)
self._job = self["CodePipeline.job"]
@property
def get_id(self) -> str:
"""Job id"""
return self._job["id"]
@property
def account_id(self) -> str:
"""Account id"""
return self._job["accountId"]
@property
def data(self) -> CodePipelineData:
"""Code pipeline jab data"""
return CodePipelineData(self._job["data"])
@property
def user_parameters(self) -> str | None:
"""Action configuration user parameters"""
return self.data.action_configuration.configuration.user_parameters
@property
def decoded_user_parameters(self) -> dict[str, Any]:
"""Json Decoded action configuration user parameters"""
return self.data.action_configuration.configuration.decoded_user_parameters
@property
def input_bucket_name(self) -> str:
"""Get the first input artifact bucket name"""
return self.data.input_artifacts[0].location.s3_location.bucket_name
@property
def input_object_key(self) -> str:
"""Get the first input artifact order key unquote plus"""
return self.data.input_artifacts[0].location.s3_location.object_key
def setup_s3_client(self):
"""Creates an S3 client
Uses the credentials passed in the event by CodePipeline. These
credentials can be used to access the artifact bucket.
Returns
-------
BaseClient
An S3 client with the appropriate credentials
"""
# IMPORTING boto3 within the FUNCTION and not at the top level to get
# it only when we explicitly want it for better performance.
import boto3
from aws_lambda_powertools.shared import user_agent
s3 = boto3.client(
"s3",
aws_access_key_id=self.data.artifact_credentials.access_key_id,
aws_secret_access_key=self.data.artifact_credentials.secret_access_key,
aws_session_token=self.data.artifact_credentials.session_token,
)
user_agent.register_feature_to_client(client=s3, feature="data_classes")
return s3
def find_input_artifact(self, artifact_name: str) -> CodePipelineArtifact | None:
"""Find an input artifact by artifact name
Parameters
----------
artifact_name : str
The name of the input artifact to look for
Returns
-------
CodePipelineArtifact, None
Matching CodePipelineArtifact if found
"""
for artifact in self.data.input_artifacts:
if artifact.name == artifact_name:
return artifact
return None
def find_output_artifact(self, artifact_name: str) -> CodePipelineArtifact | None:
"""Find an output artifact by artifact name
Parameters
----------
artifact_name : str
The name of the output artifact to look for
Returns
-------
CodePipelineArtifact, None
Matching CodePipelineArtifact if found
"""
for artifact in self.data.output_artifacts:
if artifact.name == artifact_name:
return artifact
return None
def get_artifact(self, artifact_name: str, filename: str | None = None) -> str | None:
"""Get a file within an artifact zip on s3
Parameters
----------
artifact_name : str
Name of the S3 artifact to download
filename : str
The file name within the artifact zip to extract as a string
If None, this will return the raw object body.
Returns
-------
str, None
Returns the contents file contents as a string
"""
artifact = self.find_input_artifact(artifact_name)
if artifact is None:
return None
s3 = self.setup_s3_client()
bucket = artifact.location.s3_location.bucket_name
key = artifact.location.s3_location.key
if filename:
with tempfile.NamedTemporaryFile() as tmp_file:
s3.download_file(bucket, key, tmp_file.name)
with zipfile.ZipFile(tmp_file.name, "r") as zip_file:
return zip_file.read(filename).decode("UTF-8")
return s3.get_object(Bucket=bucket, Key=key)["Body"].read()
def put_artifact(self, artifact_name: str, body: Any, content_type: str) -> None:
"""Writes an object to an s3 output artifact.
Parameters
----------
artifact_name : str
Name of the S3 artifact to upload
body: Any
The data to be written. Binary files should use io.BytesIO.
content_type: str
The content type of the data.
Returns
-------
None
"""
artifact = self.find_output_artifact(artifact_name)
if artifact is None:
raise ValueError(f"Artifact not found: {artifact_name}.")
s3 = self.setup_s3_client()
bucket = artifact.location.s3_location.bucket_name
key = artifact.location.s3_location.key
# boto3 doesn't support None to omit the parameter when using ServerSideEncryption and SSEKMSKeyId
# So we are using if/else instead.
if self.data.encryption_key:
encryption_key_id = self.data.encryption_key.get_id
encryption_key_type = self.data.encryption_key.get_type
if encryption_key_type == "KMS":
encryption_key_type = "aws:kms"
s3.put_object(
Bucket=bucket,
Key=key,
ContentType=content_type,
Body=body,
ServerSideEncryption=encryption_key_type,
SSEKMSKeyId=encryption_key_id,
BucketKeyEnabled=True,
)
else:
s3.put_object(
Bucket=bucket,
Key=key,
ContentType=content_type,
Body=body,
BucketKeyEnabled=True,
)