forked from softdevteam/mattermost-github-integration
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.py
More file actions
133 lines (114 loc) · 4.56 KB
/
server.py
File metadata and controls
133 lines (114 loc) · 4.56 KB
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
import hashlib
import hmac
import json
import requests
from flask import Flask
from flask import request
import config
from payload import PullRequest, PullRequestComment, Issue, IssueComment, Repository, Branch, Push, Tag, CommitComment, \
Wiki
app = Flask(__name__)
SECRET = hmac.new(config.SECRET, digestmod=hashlib.sha1) if config.SECRET else None
@app.route(config.SERVER['hook'] or "/", methods=['POST'])
def root():
if request.json is None:
print 'Invalid Content-Type'
return 'Content-Type must be application/json and the request body must contain valid JSON', 400
if SECRET:
signature = request.headers.get('X-Hub-Signature', None)
sig2 = SECRET.copy()
sig2.update(request.data)
if signature is None or sig2.hexdigest() != signature.split('=')[1]:
return 'Invalid or missing X-Hub-Signature', 400
data = request.json
event = request.headers['X-Github-Event']
msg = ""
if event == "ping":
msg = "ping from %s" % data['repository']['full_name']
elif event == "pull_request":
if data['action'] == "opened":
msg = PullRequest(data).opened()
elif data['action'] == "closed":
msg = PullRequest(data).closed()
elif data['action'] == "assigned":
msg = PullRequest(data).assigned()
elif event == "issues":
if data['action'] == "opened":
msg = Issue(data).opened()
elif data['action'] == "closed":
msg = Issue(data).closed()
elif data['action'] == "labeled":
msg = Issue(data).labeled()
elif data['action'] == "assigned":
msg = Issue(data).assigned()
elif event == "issue_comment":
if data['action'] == "created":
msg = IssueComment(data).created()
elif event == "repository":
if data['action'] == "created":
msg = Repository(data).created()
elif event == "create":
if data['ref_type'] == "branch":
msg = Branch(data).created()
elif data['ref_type'] == "tag":
msg = Tag(data).created()
elif event == "delete":
if data['ref_type'] == "branch":
msg = Branch(data).deleted()
elif event == "pull_request_review_comment":
if data['action'] == "created":
msg = PullRequestComment(data).created()
elif event == "push":
if not (data['deleted'] and data['forced']):
if not data['ref'].startswith("refs/tags/"):
msg = Push(data).commits()
elif event == "commit_comment":
if data['action'] == "created":
msg = CommitComment(data).created()
elif event == "gollum":
msg = Wiki(data).updated()
if msg:
hook_info = get_hook_info(data)
if hook_info:
url, channel = get_hook_info(data)
post(msg, url, channel)
return "Notification successfully posted to Mattermost"
else:
return "Notification ignored (repository is blacklisted)."
else:
return "Not implemented", 400
def post(text, url, channel):
data = {}
data['text'] = text
data['channel'] = channel
data['username'] = config.USERNAME
data['icon_url'] = config.ICON_URL
headers = {'Content-Type': 'application/json'}
r = requests.post(url, headers=headers, data=json.dumps(data), verify=False)
if r.status_code is not requests.codes.ok:
print 'Encountered error posting to Mattermost URL %s, status=%d, response_body=%s' % (
url, r.status_code, r.json())
def get_hook_info(data):
if 'repository' in data:
repo = data['repository']['full_name']
if repo in config.MATTERMOST_WEBHOOK_URLS:
return config.MATTERMOST_WEBHOOK_URLS[repo]
if 'organization' in data:
org = data['organization']['login']
if org in config.MATTERMOST_WEBHOOK_URLS:
return config.MATTERMOST_WEBHOOK_URLS[org]
if 'repository' in data:
if 'login' in data['repository']['owner']:
owner = data['repository']['owner']['login']
if owner in config.MATTERMOST_WEBHOOK_URLS:
return config.MATTERMOST_WEBHOOK_URLS[owner]
if 'name' in data['repository']['owner']:
owner = data['repository']['owner']['name']
if owner in config.MATTERMOST_WEBHOOK_URLS:
return config.MATTERMOST_WEBHOOK_URLS[owner]
return config.MATTERMOST_WEBHOOK_URLS['default']
if __name__ == "__main__":
app.run(
host=config.SERVER['address'] or "0.0.0.0"
, port=config.SERVER['port'] or 5000
)