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: Add form_handler() and encode_email_address() Created Feb. 7, 2019, 3:53 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 sitescripts.utils import get_config, get_template, encode_email_address
21 from sitescripts.utils import get_config, get_template, setupStderr 19 from sitescripts.web import url_handler, form_handler, send_simple_response
22 from sitescripts.web import url_handler 20 from sitescripts.reports.utils import (calculateReportSecret,
23 from sitescripts.reports.utils import calculateReportSecret, calculateReportSecr et_compat, getReport, saveReport, sendUpdateNotification, getUserId, updateUserU sefulness 21 calculateReportSecret_compat, getReport,
22 saveReport, sendUpdateNotification,
23 getUserId, updateUserUsefulness)
24 24
25 25
26 @url_handler('/updateReport') 26 @url_handler('/updateReport')
27 def handleRequest(environ, start_response): 27 @form_handler
28 setupStderr(environ['wsgi.errors']) 28 def handleRequest(environ, start_response, data):
29 29 params = {name: data.get(name, '').strip() for name in ['name', 'email',
Vasily Kuznetsov 2019/02/07 20:19:16 These checks were not there before, right? If this
rhowell 2019/02/08 01:34:51 Actually, it seems that most of these params are n
30 if environ['REQUEST_METHOD'].upper() != 'POST' or not environ.get('CONTENT_T YPE', '').startswith('application/x-www-form-urlencoded'): 30 'subject', 'message', 'guid', 'secret', 'status', 'usefulness',
Vasily Kuznetsov 2019/02/07 20:19:16 What do you think about putting this list of field
rhowell 2019/02/08 01:34:52 Turns out, we don't need this list for anything!
Vasily Kuznetsov 2019/02/08 19:06:07 Acknowledged.
31 return showError('Unsupported request method', start_response) 31 'notify']}
32 missing = [k for k, v in params.iteritems() if not v]
33 if missing:
34 text = 'Missing fields: ' + ', '.join(missing)
35 return send_simple_response(start_response, 400, text)
32 36
33 try: 37 try:
34 request_body_length = int(environ['CONTENT_LENGTH']) 38 params['email'] = encode_email_address(params['email'])
35 except: 39 except ValueError:
36 return showError('Invalid or missing Content-Length header', start_respo nse) 40 return send_simple_response(start_response, 400,
37 41 'Invalid email address')
38 request_body = environ['wsgi.input'].read(request_body_length)
39 params = {}
40 for key, value in parse_qsl(request_body):
41 params[key] = value.decode('utf-8')
42 42
43 guid = params.get('guid', '').lower() 43 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): 44 guid_regex = r'^[\da-f]{8}-[\da-f]{4}-[\da-f]{4}-[\da-f]{4}-[\da-f]{12}$'
Vasily Kuznetsov 2019/02/07 20:19:16 This could also be a constant at the top of the mo
rhowell 2019/02/08 01:34:52 Done.
45 if not re.match(guid_regex, guid):
45 return showError('Invalid or missing report GUID', start_response) 46 return showError('Invalid or missing report GUID', start_response)
46 47
47 reportData = getReport(guid) 48 reportData = getReport(guid)
48 49
49 if reportData == None: 50 if reportData is None:
50 return showError('Report does not exist', start_response) 51 return showError('Report does not exist', start_response)
51 52
52 secret = calculateReportSecret(guid) 53 secret = calculateReportSecret(guid)
53 if params.get('secret', '') != secret and params.get('secret', '') != calcul ateReportSecret_compat(guid): 54 if (params.get('secret', '') != secret and
55 params.get('secret', '') != calculateReportSecret_compat(guid)):
54 return showError('Wrong secret value', start_response) 56 return showError('Wrong secret value', start_response)
55 57
56 reportData['status'] = params.get('status', '') 58 reportData['status'] = params.get('status', '')
57 if len(reportData['status']) > 1024: 59 if len(reportData['status']) > 1024:
58 reportData['status'] = reportData['status'][:1024] 60 reportData['status'] = reportData['status'][:1024]
59 61
60 oldusefulness = reportData.get('usefulness', '0') 62 oldusefulness = reportData.get('usefulness', '0')
61 reportData['usefulness'] = params.get('usefulness', '0') 63 reportData['usefulness'] = params.get('usefulness', '0')
64
62 if 'email' in reportData: 65 if 'email' in reportData:
63 updateUserUsefulness(getUserId(reportData['email']), reportData['usefuln ess'], oldusefulness) 66 updateUserUsefulness(getUserId(reportData['email']),
67 reportData['usefulness'], oldusefulness)
64 68
65 saveReport(guid, reportData) 69 saveReport(guid, reportData)
66 70
67 if params.get('notify', '') and 'email' in reportData: 71 if params.get('notify', '') and 'email' in reportData:
68 email = reportData['email'] 72 email = reportData['email']
69 email = re.sub(r' at ', r'@', email) 73 email = re.sub(r' at ', r'@', email)
70 email = re.sub(r' dot ', r'.', email) 74 email = re.sub(r' dot ', r'.', email)
71 if re.match(r'^[\w.%+-]+@[\w.%+-]+(\.[\w.%+-]+)+', email): 75 if re.match(r'^[\w.%+-]+@[\w.%+-]+(\.[\w.%+-]+)+', email):
72 sendUpdateNotification({ 76 sendUpdateNotification({
73 'email': email, 77 'email': email,
74 'url': get_config().get('reports', 'urlRoot') + guid, 78 'url': get_config().get('reports', 'urlRoot') + guid,
75 'status': reportData['status'], 79 'status': reportData['status'],
76 }) 80 })
77 81
78 newURL = get_config().get('reports', 'urlRoot') + guid 82 newURL = get_config().get('reports', 'urlRoot') + guid
79 newURL += '?updated=' + str(int(random.uniform(0, 10000))) 83 newURL += '?updated=' + str(int(random.uniform(0, 10000)))
80 newURL += '#secret=' + secret 84 newURL += '#secret=' + secret
81 start_response('302 Found', [('Location', newURL.encode('utf-8'))]) 85 start_response('302 Found', [('Location', newURL.encode('utf-8'))])
82 return [] 86 return []
83 87
84 88
85 def showError(message, start_response): 89 def showError(message, start_response):
86 template = get_template(get_config().get('reports', 'errorTemplate')) 90 template = get_template(get_config().get('reports', 'errorTemplate'))
87 start_response('400 Processing Error', [('Content-Type', 'application/xhtml+ xml; charset=utf-8')]) 91 start_response('400 Processing Error',
92 [('Content-Type', 'application/xhtml+xml; charset=utf-8')])
88 return [template.render({'message': message}).encode('utf-8')] 93 return [template.render({'message': message}).encode('utf-8')]
OLDNEW

Powered by Google App Engine
This is Rietveld