1
+ /*********************************************************************************************************************
2
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. *
3
+ * *
4
+ * Licensed under the Apache License Version 2.0 (the 'License'). You may not use this file except in compliance *
5
+ * with the License. A copy of the License is located at *
6
+ * *
7
+ * http://www.apache.org/licenses/LICENSE-2.0 *
8
+ * *
9
+ * or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES *
10
+ * OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions *
11
+ * and limitations under the License. *
12
+ *********************************************************************************************************************/
13
+
14
+ /**
15
+ * @author Solution Builders
16
+ */
17
+
18
+ 'use strict' ;
19
+
20
+ const LOGGER = new ( require ( './lib/logger' ) ) ( ) ;
21
+
22
+ /**
23
+ * Transform AWS CloudWatch events from AWS CodePipeline.
24
+ */
25
+
26
+ let TransformCodePipelineEvents = ( data , recordNumber ) => {
27
+
28
+ LOGGER . log ( 'INFO' , 'Start transforming CodePipeline CW Event ' + recordNumber . toString ( ) ) ;
29
+
30
+ let detailData = { } ;
31
+ let transformedRecord = { } ;
32
+ let transformedDetail = { } ;
33
+
34
+ //Process event data
35
+ for ( var key in data ) {
36
+ //Keep all key values that are not under detail tag and are common in all cloudwatch events
37
+ if ( key != 'detail' ) {
38
+ if ( key != 'detail-type' )
39
+ transformedRecord [ key ] = ! transformedRecord . hasOwnProperty ( key ) ? data [ key ] : null ;
40
+ //rename key detail-type to detail_type to support athena query
41
+ else transformedRecord [ 'detail_type' ] = ! transformedRecord . hasOwnProperty ( key ) ? data [ key ] : null ;
42
+ }
43
+ //process key values under detail tag that are specific only for this event
44
+ else {
45
+ detailData = data [ "detail" ] ;
46
+ transformedDetail [ 'pipelineName' ] = detailData . hasOwnProperty ( "pipeline" ) ?detailData [ 'pipeline' ] :'' ;
47
+ transformedDetail [ 'executionId' ] = detailData . hasOwnProperty ( "execution-id" ) ?detailData [ 'execution-id' ] :'' ;
48
+ transformedDetail [ 'stage' ] = detailData . hasOwnProperty ( "stage" ) ?detailData [ 'stage' ] :'' ;
49
+ transformedDetail [ 'action' ] = detailData . hasOwnProperty ( "action" ) ?detailData [ 'action' ] :'' ;
50
+ transformedDetail [ 'state' ] = detailData . hasOwnProperty ( "state" ) ?detailData [ 'state' ] :'' ;
51
+
52
+
53
+ if ( detailData . hasOwnProperty ( "execution-result" ) && detailData [ "execution-result" ] != null ) {
54
+ let executionResult = detailData [ "execution-result" ] ;
55
+ if ( executionResult . hasOwnProperty ( "external-execution-id" ) )
56
+ transformedDetail [ "externalExecutionId" ] = executionResult [ "external-execution-id" ] ;
57
+ }
58
+
59
+ if ( detailData . hasOwnProperty ( "type" ) && detailData [ "type" ] != null ) {
60
+ let actionType = detailData [ "type" ]
61
+ if ( actionType . hasOwnProperty ( "category" ) )
62
+ transformedDetail [ "actionCategory" ] = actionType [ "category" ] ;
63
+ if ( actionType . hasOwnProperty ( "owner" ) )
64
+ transformedDetail [ "actionOwner" ] = actionType [ "owner" ] ;
65
+ if ( actionType . hasOwnProperty ( "provider" ) )
66
+ transformedDetail [ "actionProvider" ] = actionType [ "provider" ] ;
67
+ }
68
+
69
+ } //end else
70
+
71
+ } //end for loop
72
+
73
+ transformedRecord [ 'detail' ] = transformedDetail
74
+
75
+ LOGGER . log ( 'DEBUG' , 'Transformed record: ' + JSON . stringify ( transformedRecord , null , 2 ) ) ;
76
+ LOGGER . log ( 'INFO' , 'End transforming CodeDeploy CW Event ' + recordNumber . toString ( ) ) ;
77
+
78
+ return transformedRecord ;
79
+
80
+ } ;
81
+
82
+ module . exports = {
83
+ transformCodePipelineEvents : TransformCodePipelineEvents
84
+ } ;
0 commit comments