This repository has been archived by the owner on Apr 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
server.py
284 lines (229 loc) · 9.47 KB
/
server.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
import os
import sys
import requests
import json
import re
from flask import Flask
from flask import request
app = Flask(__name__)
USERNAME = 'gitlab'
ICON_URL = 'https://gitlab.com/uploads/project/avatar/13083/gitlab-logo-square.png'
MATTERMOST_WEBHOOK_URL = '' # Paste the Mattermost webhook URL you created here
CHANNEL = '' # Leave this blank to post to the default channel of your webhook
SSL_VERIFY = True
PUSH_EVENT = 'push'
ISSUE_EVENT = 'issue'
TAG_EVENT = 'tag_push'
COMMENT_EVENT = 'note'
MERGE_EVENT = 'merge_request'
REPORT_EVENTS = {
PUSH_EVENT: False, # On pushes to the repository excluding tags
ISSUE_EVENT: True, # On creation of a new issue
TAG_EVENT: False, # On creation of tags
COMMENT_EVENT: True, # When a new comment is made on commits, merge requests, issues, and code snippets
MERGE_EVENT: True, # When a merge request is created
}
@app.route('/')
def root():
"""
Home handler
"""
return "OK"
@app.route('/new_event', methods=['POST'])
def new_event():
"""
GitLab event handler, handles POST events from a GitLab project
"""
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
data = request.json
object_kind = data['object_kind']
text, base_url = process_data(data, object_kind)
if len(text) == 0:
print 'Text was empty so nothing sent to Mattermost, object_kind=%s' % object_kind
return 'OK'
if len(base_url) != 0:
text = fix_gitlab_links(base_url, text)
post_text(text, MATTERMOST_WEBHOOK_URL)
return 'OK'
@app.route('/new_event_hook/<use_this_hook>', methods=['POST'])
def new_event_hook(use_this_hook):
"""
GitLab event handler, handles POST events from a GitLab project
"""
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
data = request.json
object_kind = data['object_kind']
text, base_url = process_data(data, object_kind)
if len(text) == 0:
print 'Text was empty so nothing sent to Mattermost, object_kind=%s' % object_kind
return 'OK'
if len(base_url) != 0:
text = fix_gitlab_links(base_url, text)
url_to_use = MATTERMOST_WEBHOOK_URL[0:MATTERMOST_WEBHOOK_URL.find("/hooks/")+7] + use_this_hook
post_text(text, url_to_use)
return 'OK'
def process_data(data, object_kind):
text = ''
base_url = ''
if REPORT_EVENTS[PUSH_EVENT] and object_kind == PUSH_EVENT:
text = '%s pushed %d commit(s) into the `%s` branch for project [%s](%s).' % (
data['user_name'],
data['total_commits_count'],
data['ref'],
data['repository']['name'],
data['repository']['homepage']
)
elif REPORT_EVENTS[ISSUE_EVENT] and object_kind == ISSUE_EVENT:
action = data['object_attributes']['action']
if action == 'open' or action == 'reopen':
description = add_markdown_quotes(data['object_attributes']['description'])
text = '#### [%s](%s)\n*[Issue #%s](%s/issues) created by %s in [%s](%s) on [%s](%s)*\n %s' % (
data['object_attributes']['title'],
data['object_attributes']['url'],
data['object_attributes']['iid'],
data['repository']['homepage'],
data['user']['username'],
data['repository']['name'],
data['repository']['homepage'],
data['object_attributes']['created_at'],
data['object_attributes']['url'],
description
)
base_url = data['repository']['homepage']
elif REPORT_EVENTS[TAG_EVENT] and object_kind == TAG_EVENT:
text = '%s pushed tag `%s` to the project [%s](%s).' % (
data['user_name'],
data['ref'],
data['repository']['name'],
data['repository']['homepage']
)
elif REPORT_EVENTS[COMMENT_EVENT] and object_kind == COMMENT_EVENT:
symbol = ''
type_grammar = 'a'
note_type = data['object_attributes']['noteable_type'].lower()
note_id = ''
parent_title = ''
if note_type == 'mergerequest':
symbol = '!'
note_id = data['merge_request']['iid']
parent_title = data['merge_request']['title']
note_type = 'merge request'
elif note_type == 'snippet':
symbol = '$'
note_id = data['snippet']['iid']
parent_title = data['snippet']['title']
elif note_type == 'issue':
symbol = '#'
note_id = data['issue']['iid']
parent_title = data['issue']['title']
type_grammar = 'an'
subtitle = ''
if note_type == 'commit':
subtitle = '%s' % data['commit']['id']
else:
subtitle = '%s%s - %s' % (symbol, note_id, parent_title)
description = add_markdown_quotes(data['object_attributes']['note'])
text = '#### **New Comment** on [%s](%s)\n*[%s](https://gitlab.com/u/%s) commented on %s %s in [%s](%s) on [%s](%s)*\n %s' % (
subtitle,
data['object_attributes']['url'],
data['user']['username'],
data['user']['username'],
type_grammar,
note_type,
data['repository']['name'],
data['repository']['homepage'],
data['object_attributes']['created_at'],
data['object_attributes']['url'],
description
)
base_url = data['repository']['homepage']
elif REPORT_EVENTS[MERGE_EVENT] and object_kind == MERGE_EVENT:
action = data['object_attributes']['action']
if action == 'open':
text_action = 'created a'
elif action == 'reopen':
text_action = 'reopened a'
elif action == 'update':
text_action = 'updated a'
elif action == 'merge':
text_action = 'accepted a'
elif action == 'close':
text_action = 'closed a'
text = '#### [!%s - %s](%s)\n*[%s](https://gitlab.com/u/%s) %s merge request in [%s](%s) on [%s](%s)*' % (
data['object_attributes']['iid'],
data['object_attributes']['title'],
data['object_attributes']['url'],
data['user']['username'],
data['user']['username'],
text_action,
data['object_attributes']['target']['name'],
data['object_attributes']['target']['web_url'],
data['object_attributes']['created_at'],
data['object_attributes']['url']
)
if action == 'open':
description = add_markdown_quotes(data['object_attributes']['description'])
text = '%s\n %s' % (
text,
description
)
base_url = data['object_attributes']['target']['web_url']
return (text, base_url)
def post_text(text, url_to_use):
"""
Mattermost POST method, posts text to the Mattermost incoming webhook URL
"""
data = {}
data['text'] = text
if len(USERNAME) > 0:
data['username'] = USERNAME
if len(ICON_URL) > 0:
data['icon_url'] = ICON_URL
if len(CHANNEL) > 0:
data['channel'] = CHANNEL
headers = {'Content-Type': 'application/json'}
if SSL_VERIFY:
r = requests.post(url_to_use, headers=headers, data=json.dumps(data))
else:
r = requests.post(url_to_use, 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' % (MATTERMOST_WEBHOOK_URL, r.status_code, r.json())
def fix_gitlab_links(base_url, text):
"""
Fixes gitlab upload links that are relative and makes them absolute
"""
matches = re.findall('(\[[^]]*\]\s*\((/[^)]+)\))', text)
for (replace_string, link) in matches:
new_string = replace_string.replace(link, base_url + link)
text = text.replace(replace_string, new_string)
return text
def add_markdown_quotes(text):
"""
Add Markdown quotes around a piece of text
"""
if len(text) == 0:
return ''
split_desc = text.split('\n')
for index, line in enumerate(split_desc):
split_desc[index] = '> ' + line
return '\n'.join(split_desc)
if __name__ == "__main__":
MATTERMOST_WEBHOOK_URL = os.environ.get('MATTERMOST_WEBHOOK_URL', '')
CHANNEL = os.environ.get('CHANNEL', CHANNEL)
USERNAME = os.environ.get('USERNAME', USERNAME)
ICON_URL = os.environ.get('ICON_URL', ICON_URL)
SSL_VERIFY = os.environ.get('SSL_VERIFY', 'True') == 'True'
REPORT_EVENTS[PUSH_EVENT] = os.environ.get('PUSH_TRIGGER', str(REPORT_EVENTS[PUSH_EVENT])) == 'True'
REPORT_EVENTS[ISSUE_EVENT] = os.environ.get('ISSUE_TRIGGER', str(REPORT_EVENTS[ISSUE_EVENT])) == 'True'
REPORT_EVENTS[TAG_EVENT] = os.environ.get('TAG_TRIGGER', str(REPORT_EVENTS[TAG_EVENT])) == 'True'
REPORT_EVENTS[COMMENT_EVENT] = os.environ.get('COMMENT_TRIGGER', str(REPORT_EVENTS[COMMENT_EVENT])) == 'True'
REPORT_EVENTS[MERGE_EVENT] = os.environ.get('MERGE_TRIGGER', str(REPORT_EVENTS[MERGE_EVENT])) == 'True'
if len(MATTERMOST_WEBHOOK_URL) == 0:
print 'MATTERMOST_WEBHOOK_URL must be configured. Please see instructions in README.md'
sys.exit()
port = int(os.environ.get('PORT', 5000))
app.run(host='0.0.0.0', port=port)