Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 # coding: utf-8 | 1 # coding: utf-8 |
2 | 2 |
3 # This file is part of the Adblock Plus web scripts, | 3 # This file is part of the Adblock Plus web scripts, |
4 # Copyright (C) 2006-2015 Eyeo GmbH | 4 # Copyright (C) 2006-2015 Eyeo GmbH |
5 # | 5 # |
6 # Adblock Plus is free software: you can redistribute it and/or modify | 6 # Adblock Plus is free software: you can redistribute it and/or modify |
7 # it under the terms of the GNU General Public License version 3 as | 7 # it under the terms of the GNU General Public License version 3 as |
8 # published by the Free Software Foundation. | 8 # published by the Free Software Foundation. |
9 # | 9 # |
10 # Adblock Plus is distributed in the hope that it will be useful, | 10 # Adblock Plus is distributed in the hope that it will be useful, |
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 # GNU General Public License for more details. | 13 # GNU General Public License for more details. |
14 # | 14 # |
15 # You should have received a copy of the GNU General Public License | 15 # You should have received a copy of the GNU General Public License |
16 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 16 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
17 | 17 |
18 import fcntl | 18 import fcntl |
19 import hmac | |
20 import hashlib | |
19 import wsgiref.util | 21 import wsgiref.util |
20 from urlparse import parse_qs, urljoin | 22 from urlparse import parse_qsl, urljoin |
21 from urllib import urlencode | 23 from urllib import urlencode, quote |
22 | 24 |
23 from sitescripts.utils import get_config, sendMail, encode_email_address | 25 from sitescripts.utils import get_config, sendMail, encode_email_address |
24 from sitescripts.web import url_handler, form_handler | 26 from sitescripts.web import url_handler, form_handler, send_simple_response |
25 from sitescripts.signing import sign, verify | |
26 | 27 |
27 VERIFICATION_PATH = '/verifyEmail' | 28 VERIFICATION_PATH = '/verifyEmail' |
29 | |
30 def sign(config, data): | |
31 secret = config.get('submit_email', 'secret') | |
32 return hmac.new(secret, data, hashlib.sha1).hexdigest() | |
28 | 33 |
29 @url_handler('/submitEmail') | 34 @url_handler('/submitEmail') |
30 @form_handler | 35 @form_handler |
31 def submit_email(environ, start_response, data): | 36 def submit_email(environ, start_response, data): |
32 email = data.get('email', '').strip() | 37 email = data.get('email', '').strip() |
33 try: | 38 try: |
34 email = encode_email_address(email) | 39 email = encode_email_address(email) |
35 except ValueError: | 40 except ValueError: |
36 start_response('400 Bad Request', [('Content-Type', 'text/plain')]) | 41 return send_simple_response( |
37 return ['No valid email address given.'] | 42 start_response, 400, |
43 'Please enter a valid email address.' | |
44 ) | |
45 | |
46 config = get_config() | |
47 params = [('email', email), ('signature', sign(config, email))] | |
48 lang = data.get('lang') | |
49 if lang: | |
50 params.append(('lang', lang)) | |
38 | 51 |
39 sendMail( | 52 sendMail( |
40 get_config().get('submit_email', 'verification_email_template'), | 53 config.get('submit_email', 'verification_email_template'), |
41 { | 54 { |
42 'recipient': email, | 55 'recipient': email, |
43 'verification_url': '%s?%s' % ( | 56 'verification_url': '%s?%s' % ( |
44 urljoin(wsgiref.util.application_uri(environ), VERIFICATION_PATH), | 57 urljoin(wsgiref.util.application_uri(environ), VERIFICATION_PATH), |
45 urlencode([('email', email), ('signature', sign(email))]) | 58 urlencode(params) |
46 ) | 59 ) |
47 } | 60 } |
48 ) | 61 ) |
49 | 62 |
50 start_response('200 OK', [('Content-Type', 'text/plain')]) | 63 return send_simple_response( |
51 return ["Thanks for your submission! You'll receive a verification email short ly."] | 64 start_response, 200, |
65 'A confirmation email has been sent. Please check ' | |
66 'your email and click the confirmation link.' | |
67 ) | |
52 | 68 |
53 @url_handler(VERIFICATION_PATH) | 69 @url_handler(VERIFICATION_PATH) |
54 def verify_email(environ, start_response): | 70 def verify_email(environ, start_response): |
55 config = get_config() | 71 config = get_config() |
72 params = dict(parse_qsl(environ.get('QUERY_STRING', ''))) | |
56 | 73 |
57 params = parse_qs(environ.get('QUERY_STRING', '')) | 74 email = params.get('email', '') |
58 email = params.get('email', [''])[0] | 75 signature = params.get('signature', '') |
59 signature = params.get('signature', [''])[0] | 76 if sign(config, email) != signature: |
77 return send_simple_response( | |
78 start_response, 403, | |
79 'Invalid signature in verification request.' | |
80 ) | |
60 | 81 |
61 if verify(email, signature): | 82 filename = config.get('submit_email', 'filename') |
62 filename = config.get('submit_email', 'filename') | 83 with open(filename, 'ab', 0) as file: |
63 with open(filename, 'a', 0) as file: | 84 fcntl.lockf(file, fcntl.LOCK_EX) |
64 fcntl.lockf(file, fcntl.LOCK_EX) | 85 try: |
65 try: | 86 print >>file, email |
66 print >>file, email | 87 finally: |
67 finally: | 88 fcntl.lockf(file, fcntl.LOCK_UN) |
68 fcntl.lockf(file, fcntl.LOCK_UN) | |
69 | 89 |
70 option = 'successful_verification_redirect_location' | 90 location = config.get('submit_email', 'successful_verification_redirect_locati on') |
71 else: | 91 location = location.format(lang=quote(params.get('lang') or 'en', '')) |
kzar
2015/04/28 11:13:42
Looks like a typo at the end there? ", ''"
Sebastian Noack
2015/04/28 11:31:25
The empty string at the end is the second argument
kzar
2015/04/28 11:33:41
Oh I see.
Sebastian Noack
2015/04/28 11:36:04
I meant (forward) slashes.
| |
72 option = 'failed_verification_redirect_location' | 92 start_response('303 See Other', [('Location', location)]) |
73 | |
74 start_response('303 See Other', [('Location', config.get('submit_email', optio n))]) | |
75 return [] | 93 return [] |
LEFT | RIGHT |