forked from github/ghas-jira-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjiralib.py
343 lines (268 loc) · 10 KB
/
jiralib.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
from jira import JIRA
import re
import util
import logging
import requests
import json
# May need to be changed depending on JIRA project type
CLOSE_TRANSITION = "Done"
REOPEN_TRANSITION = "To Do"
CLOSED_STATUS = "Done"
# JIRA Webhook events
UPDATE_EVENT = 'jira:issue_updated'
CREATE_EVENT = 'jira:issue_created'
DELETE_EVENT = 'jira:issue_deleted'
TITLE_PREFIX = '[Code Scanning Alert]:'
DESC_TEMPLATE="""
{rule_desc}
{alert_url}
----
This issue was automatically generated from a GitHub alert, and will be automatically resolved once the underlying problem is fixed.
DO NOT MODIFY DESCRIPTION BELOW LINE.
REPOSITORY_NAME={repo_id}
ALERT_NUMBER={alert_num}
REPOSITORY_KEY={repo_key}
ALERT_KEY={alert_key}
"""
STATE_ISSUE_SUMMARY = '[Code Scanning Issue States]'
STATE_ISSUE_KEY = util.make_key('gh2jira-state-issue')
STATE_ISSUE_TEMPLATE="""
This issue was automatically generated and contains states required for the synchronization between GitHub and JIRA.
DO NOT MODIFY DESCRIPTION BELOW LINE.
ISSUE_KEY={issue_key}
""".format(issue_key=STATE_ISSUE_KEY)
logger = logging.getLogger(__name__)
class Jira:
def __init__(self, url, user, token):
self.url = url
self.user = user
self.token = token
self.j = JIRA(url, basic_auth=(user, token))
def auth(self):
return self.user, self.token
def getProject(self, projectkey):
return JiraProject(self, projectkey)
def list_hooks(self):
resp = requests.get(
'{api_url}/rest/webhooks/1.0/webhook'.format(api_url=self.url),
headers={'Content-Type': 'application/json'},
auth=self.auth(),
timeout=util.REQUEST_TIMEOUT
)
resp.raise_for_status()
for h in resp.json():
yield h
def create_hook(
self, name, url, secret,
events=[CREATE_EVENT, DELETE_EVENT, UPDATE_EVENT],
filters={'issue-related-events-section': ''},
exclude_body=False
):
data = json.dumps({
'name': name,
'url': url + '?secret_token=' + secret,
'events': events,
'filters': filters,
'excludeBody': exclude_body
})
resp = requests.post(
'{api_url}/rest/webhooks/1.0/webhook'.format(api_url=self.url),
headers={'Content-Type': 'application/json'},
data=data,
auth=self.auth(),
timeout=util.REQUEST_TIMEOUT
)
resp.raise_for_status()
return resp.json()
def attach_file(self, issue_key, fname, fp):
'''
This function is currently needed, because the version of the 'jira' module
we depend on (2.0.0) has a bug that makes file attachments crash for
recent versions of python. This has been fixed in version 3.0.0, which,
unfortunately is not yet available via pip.
See:
https://github.com/pycontribs/jira/issues/890
https://github.com/pycontribs/jira/issues/985
TODO: Remove this function once `jira:3.0.0` is available via pip.
'''
resp = requests.post(
'{api_url}/rest/api/2/issue/{issue_key}/attachments'.format(
api_url=self.url,
issue_key=issue_key
),
headers={'X-Atlassian-Token': 'no-check'},
auth=self.auth(),
files={'file': (fname, fp)},
timeout=util.REQUEST_TIMEOUT
)
resp.raise_for_status()
class JiraProject:
def __init__(self, jira, projectkey):
self.jira = jira
self.projectkey = projectkey
self.j = self.jira.j
def get_state_issue(self, issue_key='-'):
if issue_key != '-':
return self.j.issue(issue_key)
issue_search = 'project={jira_project} and description ~ "{key}"'.format(
jira_project='\"{}\"'.format(self.projectkey),
key=STATE_ISSUE_KEY
)
issues = list(
filter(
lambda i: i.fields.summary == STATE_ISSUE_SUMMARY,
self.j.search_issues(issue_search, maxResults=0)
)
)
if len(issues) == 0:
return self.j.create_issue(
project=self.projectkey,
summary=STATE_ISSUE_SUMMARY,
description=STATE_ISSUE_TEMPLATE,
issuetype={'name': 'Bug'}
)
elif len(issues) > 1:
issues.sort(key=lambda i: i.id()) # keep the oldest issue
for i in issues[1:]:
i.delete()
i = issues[0]
# When fetching issues via the search_issues() function, we somehow
# cannot access the attachments. To do that, we need to fetch the issue
# via the issue() function first.
return self.j.issue(i.key)
def fetch_repo_state(self, repo_id, issue_key='-'):
i = self.get_state_issue(issue_key)
for a in i.fields.attachment:
if a.filename == repo_id_to_fname(repo_id):
return util.state_from_json(a.get())
return {}
def save_repo_state(self, repo_id, state, issue_key='-'):
i = self.get_state_issue(issue_key)
# remove previous state files for the given repo_id
for a in i.fields.attachment:
if a.filename == repo_id_to_fname(repo_id):
self.j.delete_attachment(a.id)
# attach the new state file
self.jira.attach_file(
i.key,
repo_id_to_fname(repo_id),
util.state_to_json(state)
)
def create_issue(self, repo_id, rule_id, rule_desc, alert_url, alert_num):
raw = self.j.create_issue(
project=self.projectkey,
summary='{prefix} {rule} in {repo}'.format(
prefix=TITLE_PREFIX,
rule=rule_id,
repo=repo_id
),
description=DESC_TEMPLATE.format(
rule_desc=rule_desc,
alert_url=alert_url,
repo_id=repo_id,
alert_num=alert_num,
repo_key=util.make_key(repo_id),
alert_key=util.make_alert_key(repo_id, alert_num)
),
issuetype={'name': 'Bug'}
)
logger.info('Created issue {issue_key} for alert {alert_num} in {repo_id}.'.format(
issue_key=raw.key,
alert_num=alert_num,
repo_id=repo_id
))
return JiraIssue(self, raw)
def fetch_issues(self, repo_id, alert_num=None):
if alert_num is None:
key = util.make_key(repo_id)
else:
key = util.make_alert_key(repo_id, alert_num)
issue_search = 'project={jira_project} and description ~ "{key}"'.format(
jira_project='\"{}\"'.format(self.projectkey),
key=key
)
issues = list(filter(lambda i: i.is_managed(), [JiraIssue(self, raw) for raw in self.j.search_issues(issue_search, maxResults=0)]))
logger.debug('Search {search} returned {num_results} results.'.format(
search=issue_search,
num_results=len(issues)
))
return issues
class JiraIssue:
def __init__(self, project, rawissue):
self.project = project
self.rawissue = rawissue
self.j = self.project.j
def is_managed(self):
if parse_alert_info(self.rawissue.fields.description)[0] is None:
return False
return True
def get_alert_info(self):
return parse_alert_info(self.rawissue.fields.description)
def key(self):
return self.rawissue.key
def id(self):
return self.rawissue.id
def delete(self):
logger.info('Deleting issue {ikey}.'.format(ikey=self.key()))
self.rawissue.delete()
def get_state(self):
return parse_state(self.rawissue.fields.status.name)
def adjust_state(self, state):
if state:
self.transition(REOPEN_TRANSITION)
else:
self.transition(CLOSE_TRANSITION)
def transition(self, transition):
old_issue_status = str(self.rawissue.fields.status.name)
if self.get_state() and transition == REOPEN_TRANSITION or \
not self.get_state() and transition == CLOSE_TRANSITION:
# nothing to do
return
jira_transitions = {t['name'] : t['id'] for t in self.j.transitions(self.rawissue)}
if transition not in jira_transitions:
logger.error('Transition "{transition}" not available for {issue_key}. Valid transitions: {jira_transitions}'.format(
transition=transition,
issue_key=self.rawissue.key,
jira_transitions=list(jira_transitions)
))
raise Exception("Invalid JIRA transition")
self.j.transition_issue(self.rawissue, jira_transitions[transition])
action = 'Reopening' if transition == REOPEN_TRANSITION else 'Closing'
logger.info(
'{action} issue {issue_key}'.format(
action=action,
issue_key=self.rawissue.key
)
)
def parse_alert_info(desc):
'''
Parse all the fields in an issue's description and return
them as a tuple. If parsing fails for one of the fields,
return a tuple of None's.
'''
failed = None, None, None, None
m = re.search('REPOSITORY_NAME=(.*)$', desc, re.MULTILINE)
if m is None:
return failed
repo_id = m.group(1)
m = re.search('ALERT_NUMBER=(.*)$', desc, re.MULTILINE)
if m is None:
return failed
alert_num = int(m.group(1))
m = re.search('REPOSITORY_KEY=(.*)$', desc, re.MULTILINE)
if m is None:
return failed
repo_key = m.group(1)
m = re.search('ALERT_KEY=(.*)$', desc, re.MULTILINE)
if m is None:
return failed
alert_key = m.group(1)
# consistency checks:
if repo_key != util.make_key(repo_id) \
or alert_key != util.make_alert_key(repo_id, alert_num):
return failed
return repo_id, alert_num, repo_key, alert_key
def parse_state(raw_state):
return raw_state != CLOSED_STATUS
def repo_id_to_fname(repo_id):
return repo_id.replace('/', '^') + '.json'