-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlambda_function.py
117 lines (94 loc) · 3.93 KB
/
lambda_function.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
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT-0
import boto3
import os
# Define the environment variables for repository branch name and region
REGION = os.getenv('AWS_REGION')
MAIN_BRANCH_NAME = os.getenv('MAIN_BRANCH_NAME')
REPOSITORY_NAME = os.getenv('REPOSITORY_NAME')
codecommit = boto3.client('codecommit')
def publish(repository, message):
SNSTopicArn = os.getenv('SNS_TOPIC_ARN')
SNSClient = boto3.client('sns', region_name=REGION)
SNSClient.publish(
TopicArn=SNSTopicArn,
Subject = 'CodeCommit Update - Repository: {0}'.format(repository),
Message = message
)
def getFileDifferences(repository_name, lastCommitID, previousCommitID):
response = None
if previousCommitID != None:
response = codecommit.get_differences(
repositoryName=repository_name,
beforeCommitSpecifier=previousCommitID,
afterCommitSpecifier=lastCommitID
)
else:
# The case of getting initial commit (Without beforeCommitSpecifier)
response = codecommit.get_differences(
repositoryName=repository_name,
afterCommitSpecifier=lastCommitID
)
differences = []
if response == None:
return differences
while "nextToken" in response:
response = codecommit.get_differences(
repositoryName=repository_name,
beforeCommitSpecifier=previousCommitID,
afterCommitSpecifier=lastCommitID,
nextToken=response["nextToken"]
)
differences += response.get("differences", [])
else:
differences += response["differences"]
return differences
def getDiffChangeTypeMessage(changeType):
type = {
'M': 'Modification',
'D': 'Deletion',
'A': 'Addition'
}
return type[changeType]
def getLastCommitID(repository, branch="master"):
response = codecommit.get_branch(
repositoryName=repository,
branchName=branch
)
commitId = response['branch']['commitId']
return commitId
def getLastCommitLog(repository, commitId):
response = codecommit.get_commit(
repositoryName=repository,
commitId=commitId
)
return response['commit']
def getMessageText(differences, lastCommit):
text = ''
text += 'commit ID: {0}\n'.format(lastCommit['commitId'])
text += 'author: {0} ({1}) - {2}\n'.format(lastCommit['author']['name'], lastCommit['author']['email'], lastCommit['author']['date'])
text += 'message: {0}\n'.format(lastCommit['message'])
for diff in differences:
if 'afterBlob' in diff:
text += 'File: {0} {1} - Blob ID: {2}\n'.format(diff['afterBlob']['path'], getDiffChangeTypeMessage(diff['changeType']), diff['afterBlob']['blobId'])
if 'beforeBlob' in diff:
text += 'File: {0} {1} - Blob ID: {2}\n'.format(diff['beforeBlob']['path'], getDiffChangeTypeMessage(diff['changeType']), diff['beforeBlob']['blobId'])
return text
def lambda_handler(event, context):
# Get the repository from the event and show its git clone URL
# repository = event['Records'][0]['eventSourceARN'].split(':')[5]
repository = REPOSITORY_NAME
try:
lastCommitID = getLastCommitID(repository, MAIN_BRANCH_NAME)
lastCommit = getLastCommitLog(repository, lastCommitID)
previousCommitID = None
if len(lastCommit['parents']) > 0:
previousCommitID = lastCommit['parents'][0]
print('lastCommitID: {0} previousCommitID: {1}'.format(lastCommitID, previousCommitID))
differences = getFileDifferences(repository, lastCommitID, previousCommitID)
messageText = getMessageText(differences, lastCommit)
return publish(repository, messageText)
except Exception as e:
print(e)
print('Error getting repository {}. Make sure it exists and that your repository is in the same region as this function.'.format(repository))
raise e