| OLD | NEW |
| 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) |
| 24 | 25 |
| 25 | 26 |
| 26 @url_handler('/updateReport') | 27 @url_handler('/updateReport') |
| 27 def handleRequest(environ, start_response): | 28 def handleRequest(environ, start_response): |
| 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'): | 29 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) | 30 return showError('Unsupported request method', start_response) |
| 32 | 31 |
| 33 try: | 32 try: |
| 34 request_body_length = int(environ['CONTENT_LENGTH']) | 33 request_body_length = int(environ['CONTENT_LENGTH']) |
| 35 except: | 34 except: |
| 36 return showError('Invalid or missing Content-Length header', start_respo
nse) | 35 return showError('Invalid or missing Content-Length header', start_respo
nse) |
| 37 | 36 |
| 38 request_body = environ['wsgi.input'].read(request_body_length) | 37 request_body = environ['wsgi.input'].read(request_body_length) |
| 39 params = {} | 38 params = {} |
| (...skipping 12 matching lines...) Expand all Loading... |
| 52 secret = calculateReportSecret(guid) | 51 secret = calculateReportSecret(guid) |
| 53 if params.get('secret', '') != secret and params.get('secret', '') != calcul
ateReportSecret_compat(guid): | 52 if params.get('secret', '') != secret and params.get('secret', '') != calcul
ateReportSecret_compat(guid): |
| 54 return showError('Wrong secret value', start_response) | 53 return showError('Wrong secret value', start_response) |
| 55 | 54 |
| 56 reportData['status'] = params.get('status', '') | 55 reportData['status'] = params.get('status', '') |
| 57 if len(reportData['status']) > 1024: | 56 if len(reportData['status']) > 1024: |
| 58 reportData['status'] = reportData['status'][:1024] | 57 reportData['status'] = reportData['status'][:1024] |
| 59 | 58 |
| 60 oldusefulness = reportData.get('usefulness', '0') | 59 oldusefulness = reportData.get('usefulness', '0') |
| 61 reportData['usefulness'] = params.get('usefulness', '0') | 60 reportData['usefulness'] = params.get('usefulness', '0') |
| 61 |
| 62 if 'email' in reportData: | 62 if 'email' in reportData: |
| 63 updateUserUsefulness(getUserId(reportData['email']), reportData['usefuln
ess'], oldusefulness) | 63 updateUserUsefulness(getUserId(reportData['email']), reportData['usefuln
ess'], oldusefulness) |
| 64 | 64 |
| 65 saveReport(guid, reportData) | 65 saveReport(guid, reportData) |
| 66 | 66 |
| 67 if params.get('notify', '') and 'email' in reportData: | 67 if params.get('notify', '') and 'email' in reportData: |
| 68 email = reportData['email'] | 68 email = reportData['email'] |
| 69 email = re.sub(r' at ', r'@', email) | 69 email = re.sub(r' at ', r'@', email) |
| 70 email = re.sub(r' dot ', r'.', email) | 70 email = re.sub(r' dot ', r'.', email) |
| 71 if re.match(r'^[\w.%+-]+@[\w.%+-]+(\.[\w.%+-]+)+', email): | 71 if re.match(r'^[\w.%+-]+@[\w.%+-]+(\.[\w.%+-]+)+', email): |
| 72 sendUpdateNotification({ | 72 sendUpdateNotification({ |
| 73 'email': email, | 73 'email': email, |
| 74 'url': get_config().get('reports', 'urlRoot') + guid, | 74 'url': get_config().get('reports', 'urlRoot') + guid, |
| 75 'status': reportData['status'], | 75 'status': reportData['status'], |
| 76 }) | 76 }) |
| 77 | 77 |
| 78 newURL = get_config().get('reports', 'urlRoot') + guid | 78 newURL = get_config().get('reports', 'urlRoot') + guid |
| 79 newURL += '?updated=' + str(int(random.uniform(0, 10000))) | 79 newURL += '?updated=' + str(int(random.uniform(0, 10000))) |
| 80 newURL += '#secret=' + secret | 80 newURL += '#secret=' + secret |
| 81 start_response('302 Found', [('Location', newURL.encode('utf-8'))]) | 81 start_response('302 Found', [('Location', newURL.encode('utf-8'))]) |
| 82 return [] | 82 return [] |
| 83 | 83 |
| 84 | 84 |
| 85 def showError(message, start_response): | 85 def showError(message, start_response): |
| 86 template = get_template(get_config().get('reports', 'errorTemplate')) | 86 template = get_template(get_config().get('reports', 'errorTemplate')) |
| 87 start_response('400 Processing Error', [('Content-Type', 'application/xhtml+
xml; charset=utf-8')]) | 87 start_response('400 Processing Error', [('Content-Type', 'application/xhtml+
xml; charset=utf-8')]) |
| 88 return [template.render({'message': message}).encode('utf-8')] | 88 return [template.render({'message': message}).encode('utf-8')] |
| OLD | NEW |