forked from softdevteam/mattermost-github-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.py
More file actions
114 lines (100 loc) · 3.75 KB
/
server.py
File metadata and controls
114 lines (100 loc) · 3.75 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
import os
import requests
from flask import Flask
from flask import request
import json
import config
import hmac
import hashlib
from payload import PullRequest, PullRequestComment, Issue, IssueComment, Repository, Branch, Push, Tag, CommitComment
app = Flask(__name__)
SECRET = hmac.new(config.SECRET, digestmod=hashlib.sha1) if config.SECRET else None
@app.route('/', methods=['POST'])
def index():
try:
return root()
except:
import traceback
traceback.print_exc()
raise
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 == "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']):
msg = Push(data).commits()
elif event == "commit_comment":
if data['action'] == "created":
msg = CommitComment(data).created()
if msg:
url, channel = get_hook_info(data)
post(msg, url, channel)
return "Ok"
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]
return config.MATTERMOST_WEBHOOK_URLS['default']
if __name__ == "__main__":
port = int(os.environ.get('PORT', 5000))
app.run(host='0.0.0.0', port=port, debug=True)