Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: sitescripts/reports/web/updateReport.py

Issue 29993614: Issue 2267 - Unify form handling by reusing form_handler() (Closed) Base URL: https://hg.adblockplus.org/sitescripts/
Patch Set: Get the tests (clumsily) working Created Feb. 2, 2019, 5:39 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 # This file is part of the Adblock Plus web scripts, 1 # This file is part of the Adblock Plus web scripts,
2 # Copyright (C) 2006-present eyeo GmbH 2 # Copyright (C) 2006-present eyeo GmbH
3 # 3 #
4 # Adblock Plus is free software: you can redistribute it and/or modify 4 # Adblock Plus is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License version 3 as 5 # it under the terms of the GNU General Public License version 3 as
6 # published by the Free Software Foundation. 6 # published by the Free Software Foundation.
7 # 7 #
8 # Adblock Plus is distributed in the hope that it will be useful, 8 # Adblock Plus is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details. 11 # GNU General Public License for more details.
12 # 12 #
13 # You should have received a copy of the GNU General Public License 13 # You should have received a copy of the GNU General Public License
14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. 14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
15 15
16 import re 16 import re
17 import os
18 import sys
19 import random 17 import random
20 from urlparse import parse_qsl 18 from urlparse import parse_qsl
21 from sitescripts.utils import get_config, get_template, setupStderr 19 from sitescripts.utils import get_config, get_template
22 from sitescripts.web import url_handler 20 from sitescripts.web import url_handler
23 from sitescripts.reports.utils import calculateReportSecret, calculateReportSecr et_compat, getReport, saveReport, sendUpdateNotification, getUserId, updateUserU sefulness 21 from sitescripts.reports.utils import (calculateReportSecret,
22 calculateReportSecret_compat, getReport,
23 saveReport, sendUpdateNotification,
24 getUserId, updateUserUsefulness)
25
26
27 def _getReport(guid, test_mode):
28 if not test_mode:
29 return getReport(guid)
30 return {'usefulness': 1}
rhowell 2019/02/02 05:45:22 If I also return an email address here, we can tes
Vasily Kuznetsov 2019/02/04 17:48:50 I think it would make more sense to mock getReport
rhowell 2019/02/07 03:54:32 Done.
31
32
33 def _saveReport(guid, report_data, test_mode):
34 if not test_mode:
35 return saveReport(guid, report_data)
24 36
25 37
26 @url_handler('/updateReport') 38 @url_handler('/updateReport')
27 def handleRequest(environ, start_response): 39 def handleRequest(environ, start_response, test_mode=False):
28 setupStderr(environ['wsgi.errors'])
29
30 if environ['REQUEST_METHOD'].upper() != 'POST' or not environ.get('CONTENT_T YPE', '').startswith('application/x-www-form-urlencoded'): 40 if environ['REQUEST_METHOD'].upper() != 'POST' or not environ.get('CONTENT_T YPE', '').startswith('application/x-www-form-urlencoded'):
31 return showError('Unsupported request method', start_response) 41 return showError('Unsupported request method', start_response)
32 42
33 try: 43 try:
34 request_body_length = int(environ['CONTENT_LENGTH']) 44 request_body_length = int(environ['CONTENT_LENGTH'])
35 except: 45 except:
36 return showError('Invalid or missing Content-Length header', start_respo nse) 46 return showError('Invalid or missing Content-Length header', start_respo nse)
37 47
38 request_body = environ['wsgi.input'].read(request_body_length) 48 request_body = environ['wsgi.input'].read(request_body_length)
39 params = {} 49 params = {}
40 for key, value in parse_qsl(request_body): 50 for key, value in parse_qsl(request_body):
41 params[key] = value.decode('utf-8') 51 params[key] = value.decode('utf-8')
42 52
43 guid = params.get('guid', '').lower() 53 guid = params.get('guid', '').lower()
44 if not re.match(r'^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$' , guid): 54 if not re.match(r'^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$' , guid):
45 return showError('Invalid or missing report GUID', start_response) 55 return showError('Invalid or missing report GUID', start_response)
46 56
47 reportData = getReport(guid) 57 reportData = _getReport(guid, params['test_mode'])
48 58
49 if reportData == None: 59 if reportData == None:
50 return showError('Report does not exist', start_response) 60 return showError('Report does not exist', start_response)
51 61
52 secret = calculateReportSecret(guid) 62 secret = calculateReportSecret(guid)
53 if params.get('secret', '') != secret and params.get('secret', '') != calcul ateReportSecret_compat(guid): 63 if params.get('secret', '') != secret and params.get('secret', '') != calcul ateReportSecret_compat(guid):
54 return showError('Wrong secret value', start_response) 64 return showError('Wrong secret value', start_response)
55 65
56 reportData['status'] = params.get('status', '') 66 reportData['status'] = params.get('status', '')
57 if len(reportData['status']) > 1024: 67 if len(reportData['status']) > 1024:
58 reportData['status'] = reportData['status'][:1024] 68 reportData['status'] = reportData['status'][:1024]
59 69
60 oldusefulness = reportData.get('usefulness', '0') 70 oldusefulness = reportData.get('usefulness', '0')
61 reportData['usefulness'] = params.get('usefulness', '0') 71 reportData['usefulness'] = params.get('usefulness', '0')
72
62 if 'email' in reportData: 73 if 'email' in reportData:
63 updateUserUsefulness(getUserId(reportData['email']), reportData['usefuln ess'], oldusefulness) 74 updateUserUsefulness(getUserId(reportData['email']), reportData['usefuln ess'], oldusefulness)
64 75
65 saveReport(guid, reportData) 76 _saveReport(guid, reportData, params['test_mode'])
66 77
67 if params.get('notify', '') and 'email' in reportData: 78 if params.get('notify', '') and 'email' in reportData:
68 email = reportData['email'] 79 email = reportData['email']
69 email = re.sub(r' at ', r'@', email) 80 email = re.sub(r' at ', r'@', email)
70 email = re.sub(r' dot ', r'.', email) 81 email = re.sub(r' dot ', r'.', email)
71 if re.match(r'^[\w.%+-]+@[\w.%+-]+(\.[\w.%+-]+)+', email): 82 if re.match(r'^[\w.%+-]+@[\w.%+-]+(\.[\w.%+-]+)+', email):
72 sendUpdateNotification({ 83 sendUpdateNotification({
73 'email': email, 84 'email': email,
74 'url': get_config().get('reports', 'urlRoot') + guid, 85 'url': get_config().get('reports', 'urlRoot') + guid,
75 'status': reportData['status'], 86 'status': reportData['status'],
76 }) 87 })
77 88
78 newURL = get_config().get('reports', 'urlRoot') + guid 89 newURL = get_config().get('reports', 'urlRoot') + guid
79 newURL += '?updated=' + str(int(random.uniform(0, 10000))) 90 newURL += '?updated=' + str(int(random.uniform(0, 10000)))
80 newURL += '#secret=' + secret 91 newURL += '#secret=' + secret
92
81 start_response('302 Found', [('Location', newURL.encode('utf-8'))]) 93 start_response('302 Found', [('Location', newURL.encode('utf-8'))])
82 return [] 94 return []
83 95
84 96
85 def showError(message, start_response): 97 def showError(message, start_response):
86 template = get_template(get_config().get('reports', 'errorTemplate')) 98 template = get_template(get_config().get('reports', 'errorTemplate'))
87 start_response('400 Processing Error', [('Content-Type', 'application/xhtml+ xml; charset=utf-8')]) 99 start_response('400 Processing Error', [('Content-Type', 'application/xhtml+ xml; charset=utf-8')])
88 return [template.render({'message': message}).encode('utf-8')] 100 return [template.render({'message': message}).encode('utf-8')]
OLDNEW

Powered by Google App Engine
This is Rietveld