-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy path__init__.py
267 lines (231 loc) · 9.25 KB
/
__init__.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
#!/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/.
"""This module handles application configuration and secrets."""
from collections import namedtuple
import errno
import json
import os
import shutil
import sys
import tempfile
import urllib.parse
import requests
from config.environment import * # noqa
MILESTONE_ERROR = """It failed with {msg}!
We will read from data/milestones.json.
"""
MILESTONE_MISSING_FILE = """Oooops.
We can't find {path}
Double check that everything is configured properly
in .env and try again. Good luck!
"""
MILESTONE_UNMATCHING = """A milestone is missing or has been added: {names}"""
MILESTONE_UNMATCHING_ERROR = """
Check the milestones names on your Github repository and try again.
This error was probably caused by a typo.
Your milestones.json was erased and a backup copy was created at {path}.
"""
def initialize_status():
"""Map the status name with the milestone id on GitHub.
The project needs the mapping in between milestones and their id
to be able to query status related things. It uses a backup version
when the request to GitHub fails.
"""
milestones_content = None
print('Statuses Initialization…')
REPO_ROOT = ISSUES_REPO_URI.rpartition('/issues')[0]
milestones_url_path = os.path.normcase(
os.path.join('repos', REPO_ROOT, 'milestones'))
milestones_url = urllib.parse.urlunparse(
('https', 'api.github.com', milestones_url_path, '', '', ''))
milestones_path = os.path.join(DATA_PATH, 'milestones.json')
# Attempt to fetch from data/milestones.json
milestones_content = milestones_from_file(milestones_path)
milestones_backup_path = os.path.join(DATA_PATH, 'milestones_backup.json')
if not milestones_content:
try:
# Get the milestone from the network
print('Fetching milestones from Github…')
r = requests.get(milestones_url)
# r.content is bytes
milestones_content = r.content
if r.status_code == 200:
with open(milestones_path, 'w') as f:
# converting from bytes to str
f.write(milestones_content.decode('utf-8'))
print('Milestones saved in data/')
r.raise_for_status()
except requests.exceptions.HTTPError as error:
# Not working, we exit the program.
print(MILESTONE_ERROR.format(msg=error))
return False
# milestones_content exists
updated_statuses = update_status_config(milestones_content)
if not updated_statuses:
print(MILESTONE_UNMATCHING_ERROR.format(path=milestones_backup_path))
shutil.copyfile(milestones_path, milestones_backup_path)
os.remove(milestones_path)
return False
app.config['STATUSES'] = updated_statuses
app.config['JSON_STATUSES'] = json.dumps(app.config['STATUSES'])
print('Milestones in memory')
return True
def milestones_from_file(milestones_path):
"""Attempt to read the milestones data from the filesystem."""
if os.path.isfile(milestones_path):
with open(milestones_path, 'r') as f:
# returns a str
milestones_content = f.read()
return milestones_content
else:
print(MILESTONE_MISSING_FILE.format(path=milestones_path))
return None
def update_status_config(milestones_content):
"""Convert the JSON milestones from GitHub to a simple dict."""
milestones = json.loads(milestones_content)
# Test that GitHub milestones and local definitions are equivalent
status_names = sorted(STATUSES.keys())
milestone_names = sorted([milestone['title'] for milestone in milestones])
# Check if there is a missing milestone. The app will not start.
if not set(status_names).issubset(milestone_names):
missing = set(status_names).symmetric_difference(set(milestone_names))
print(MILESTONE_UNMATCHING.format(names=list(missing)))
return None
# Check if there are more milestones than the configured ones.
# This is probably fine, but we can log a warning.
if set(status_names) < set(milestone_names):
# Extract the additional milestones
intruder = set(status_names).symmetric_difference(set(milestone_names))
print(MILESTONE_UNMATCHING.format(names=list(intruder)))
# Assign the right id to the status.
for milestone in milestones:
if milestone['title'] in status_names:
STATUSES[milestone['title']]['id'] = milestone['number']
return STATUSES
def get_variation(variation_key, variations_dict, defaults_dict):
"""Convert a string to a tuple of integers.
If the passed variation_key doesn't follow this pattern '0 100', it will
return default values defined in defaults_dict.
This is currently used for defining the variation data of the A/B
experiment regarding the multi-steps form.
"""
try:
# We want to create a tuple of integers from a string containing
# integers. Anything else should throw.
rv = tuple(int(x) for x in variations_dict.get(variation_key)
.strip().split())
if (len(rv) != 2):
raise ValueError('The format is incorrect. Expected "{int} {int}"')
except Exception as e:
print('Something went wrong with AB test configuration: {0}'.format(e))
print('Falling back to default values.')
rv = defaults_dict.get(variation_key)
return rv
THREADS_PER_PAGE = 8
# ~3 months-ish expires for static junk
SEND_FILE_MAX_AGE_DEFAULT = 9000000
# Flask Limiter settings
# See http://flask-limiter.readthedocs.org/en/latest/#configuration
RATELIMIT_STORAGE_URL = 'memory://'
RATELIMIT_STRATEGY = 'moving-window'
DEBUG = False
if not PRODUCTION:
DEBUG = True
# localhost runs on HTTP
# use secure and samesite flags on session cookie otherwise
if not LOCALHOST:
SESSION_COOKIE_SECURE = True
SESSION_COOKIE_SAMESITE = 'Lax'
# By default, we want to log CSP violations. See /csp-report in views.py.
CSP_LOG = True
# Logging Capabilities
# To benefit from the logging, you may want to add:
# app.logger.info(Thing_To_Log)
# it will create a line with the following format
# 2015-09-14 20:50:19,185 INFO: Thing_To_Log [in /codepath/views.py:127]
# set the tempdir to somewhere predictable, no matter the platform
try:
tmp_path = os.path.join(os.getcwd(), 'tmp')
os.makedirs(tmp_path)
except OSError as exception:
if exception.errno != errno.EEXIST:
raise
tempfile.tempdir = tmp_path
print('Writing logs to: {}'.format(tempfile.gettempdir()))
LOG_FILE = os.path.join(tempfile.gettempdir(), 'webcompat.log')
if STAGING:
LOG_FILE = os.path.join(tempfile.gettempdir(), 'staging-webcompat.log')
LOG_FMT = '%(asctime)s tracking %(message)s'
CSP_REPORTS_LOG = os.path.join(
tempfile.gettempdir(), 'webcompat-csp-reports.log')
# Status categories used in the project
# 'new', 'needsdiagnosis', 'needscontact', 'contactready' , 'sitewait', 'close'
# Creating the model
Category = namedtuple('Category', ['name', 'dataAttribute', 'label'])
CATEGORIES = []
cat_labels = [('needstriage', 'needstriage', 'Needs Triage'),
('needsdiagnosis', 'needsdiagnosis', 'Needs Diagnosis'),
('needscontact', 'needscontact', 'Needs Contact'),
('ready', 'contactready', 'Ready for Outreach'),
('sitewait', 'sitewait', 'Site Contacted'),
('close', 'closed', 'Closed')]
# populating the categories for issues status
for cat_label in cat_labels:
CATEGORIES.append(Category(name=cat_label[0],
dataAttribute=cat_label[1],
label=cat_label[2]))
# labels that we allow to be added via a `label` GET param, when
# creating an issue.
EXTRA_LABELS = [
'browser-android-components',
'browser-fenix',
'browser-focus-geckoview',
'browser-firefox-ios',
'browser-firefox-reality',
'device-tablet',
'type-fastclick',
'type-google',
'type-marfeel',
'type-media',
'type-mobify',
'type-tracking-protection-basic',
'type-tracking-protection-strict',
'type-webrender-enabled',
'type-webvr',
'version100',
]
# List of accepted values for browser sources.
REPORTED_WITH = [
"addon-reporter-chrome",
"addon-reporter-firefox-mobile",
"addon-reporter-firefox",
"addon-reporter-opera",
"desktop-reporter",
"mobile-reporter",
"web-fxr",
]
# Get AB experiment variation values from the environement.
AB_VARIATIONS = {
'V1_VARIATION': os.environ.get('V1_VARIATION', '0 100'),
'V2_VARIATION': os.environ.get('V2_VARIATION', '100 100'),
}
# We define default values here, as a fallback.
# By default, v1 will be served 100% of the time.
AB_DEFAULTS = {
'V1_VARIATION': (0, 100),
'V2_VARIATION': (100, 100),
}
EXP_MAX_AGE = int(os.environ.get('EXP_MAX_AGE', 0))
# AB testing config
# See /docs/ab-testing.md for configuration instructions
AB_EXPERIMENTS = {}
ES_LOG_ENABLED = False
if PRODUCTION:
ES_LOG_ENABLED = True
from webcompat import app # noqa
# We need the milestones
if not initialize_status():
sys.exit('Milestones are not initialized. Check logs.')