-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy pathissues.py
149 lines (128 loc) · 5.19 KB
/
issues.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
"""Module that handles submission of issues via the GitHub API.
It handles authenticated users and webcompat-bot (proxy) case.
"""
import json
from flask import abort
from webcompat import app
from webcompat import github
from webcompat.form import add_metadata
from webcompat.form import build_formdata
from webcompat.helpers import proxy_request
REPO_URI = app.config['ISSUES_REPO_URI']
PRIVATE_REPO_URI = app.config['PRIVATE_REPO_URI']
PRIVATE_REPO_MILESTONE = app.config['PRIVATE_REPO_MILESTONE']
INVALID_BODY = '''<p>Thanks for the report, but this is not a Compatibility
issue.</p><p>For this project we try to focus our effort on layouts, features
or content that works as expected in one browser but not in another.
Closing the issue as Invalid.</p>'''
INCOMPLETE_BODY = '''<p>Thanks for the report. Unfortunately without any
detail about the issue you experienced, we cannot help with this bug.
Please leave a comment with more detail, or file a new report and we will
gladly investigate this further. Closing the issue as Incomplete.</p>'''
ONGOING_TITLE = 'In the moderation queue.'
ONGOING_BODY = '''<p>This issue has been put in the moderation queue. A human
will review if the message meets our current
<a href="https://webcompat.com/terms#acceptable-use">
acceptable use</a> guidelines.
It will probably take a couple of days depending on the backlog.
Once it has been reviewed, the content will be either made public
or deleted.</p>'''
REJECTED_TITLE = 'Issue rejected.'
REJECTED_BODY = '''<p>The content of this issue doesn't meet our
<a href="https://webcompat.com/terms#acceptable-use">acceptable use</a>
guidelines. Its original content has been deleted.</p>'''
AUTOCLOSE_TITLE = 'Issue closed.'
AUTOCLOSE_BODY = '''<p>Thanks for the report. We have closed this issue
automatically as we suspect it is invalid. If we made a mistake, please
file a new issue and try to provide more context.</p><p>You can find more
information in the <a href="https://webcompat.com/contributors/report-bug#ml">
documentation</a> about our machine learning process
for triaging reports.</p>'''
TEMPLATE_CONFIG = {
'rejected': {
'title': REJECTED_TITLE,
'body': REJECTED_BODY
},
'invalid': {
'title': '',
'body': INVALID_BODY
},
'incomplete': {
'title': '',
'body': INCOMPLETE_BODY
},
'autoclosed': {
'title': AUTOCLOSE_TITLE,
'body': AUTOCLOSE_BODY
},
'ongoing': {
'title': ONGOING_TITLE,
'body': ONGOING_BODY
}
}
def moderation_template(choice='ongoing'):
"""Gets the placeholder data to send for unmoderated issues.
The moderation is for now these types:
- ongoing: the issue is in the moderation queue.
- rejected: the issue has been rejected.
- incomplete: the issue is incomplete (but not rejected)
- invalid: the issue is invalid (but not rejected)
- autoclosed: the issue is auto closed by ml bot
The default is 'ongoing' even with unknown keywords.
"""
if choice in TEMPLATE_CONFIG:
return {
'title': TEMPLATE_CONFIG[choice].get('title'),
'body': TEMPLATE_CONFIG[choice].get('body')
}
else:
temp = (", ".join(TEMPLATE_CONFIG.keys()))
raise ValueError(
f'Template choice must be one of the following: {temp}'
)
def report_private_issue(form, public_url):
"""Report the issue privately.
This also allows us to pass in public_url metadata, to be
embedded in the issue body.
Returns None (so we don't accidentally leak data).
"""
path = 'repos/{0}'.format(PRIVATE_REPO_URI)
milestone = PRIVATE_REPO_MILESTONE
form = add_metadata(form, {'public_url': public_url})
formdata = build_formdata(form)
# add the milestone number to set
formdata['milestone'] = milestone
proxy_request('post', path, data=json.dumps(formdata))
return None
def report_public_issue():
"""Report the issue publicly.
Returns a requests.Response object.
"""
path = 'repos/{0}'.format(REPO_URI)
public_data = moderation_template('ongoing')
# We add action-needsmoderation label, so reviewers can filter out
public_data['labels'] = ['action-needsmoderation']
resp = proxy_request('post', path, data=json.dumps(public_data))
return resp.status_code, resp.json()
def report_issue(form, proxy=False):
"""Report an issue, as a logged in user or anonymously."""
# /repos/:owner/:repo/issues
path = 'repos/{0}'.format(REPO_URI)
submit_type = form.get('submit_type')
if proxy and submit_type == 'github-proxy-report':
status_code, json_response = report_public_issue()
if status_code == 201:
report_private_issue(form, json_response.get('html_url'))
else:
abort(400)
elif (not proxy) and submit_type == 'github-auth-report':
# returns JSON data as a dict
json_response = github.post(path, build_formdata(form))
else:
abort(400)
return json_response