blob: 028663de017523ecced25f42fda7725d2d6a831e (
plain)
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
|
from common import WebhookRequestParser
class GitHubRequestParser(WebhookRequestParser):
def get_repo_params_from_request(self, request_headers, request_body):
import json
import logging
logger = logging.getLogger()
data = json.loads(request_body)
repo_urls = []
ref = ""
action = ""
github_event = 'x-github-event' in request_headers and request_headers['x-github-event']
logger.info("Received '%s' event from GitHub" % github_event)
if 'repository' not in data:
logger.error("Unable to recognize data format")
return [], ref or "master", action
# One repository may posses multiple URLs for different protocols
for k in ['url', 'git_url', 'clone_url', 'ssh_url']:
if k in data['repository']:
repo_urls.append(data['repository'][k])
if 'pull_request' in data:
if 'base' in data['pull_request']:
if 'ref' in data['pull_request']['base']:
ref = data['pull_request']['base']['ref']
logger.info("Pull request to branch '%s' was fired" % ref)
elif 'ref' in data:
ref = data['ref']
logger.info("Push to branch '%s' was fired" % ref)
if 'action' in data:
action = data['action']
logger.info("Action '%s' was fired" % action)
# Get a list of configured repositories that matches the incoming web hook reqeust
repo_configs = self.get_matching_repo_configs(repo_urls)
return repo_configs, ref or "master", action
|