OLD | NEW |
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 re | 18 import re |
19 import time | 19 import datetime |
20 from urlparse import parse_qsl | 20 from urlparse import parse_qsl |
21 from sitescripts.utils import get_config, sendMail, setupStderr | 21 from sitescripts.utils import get_config, sendMail, setupStderr |
22 from sitescripts.web import url_handler | 22 from sitescripts.web import url_handler |
23 | 23 |
24 @url_handler('/formmail') | 24 @url_handler('/formmail') |
25 def handleRequest(environ, start_response): | 25 def handleRequest(environ, start_response): |
26 setupStderr(environ['wsgi.errors']) | 26 setupStderr(environ['wsgi.errors']) |
27 | 27 |
28 start_response('200 OK', [('Content-Type', 'text/plain; charset=utf-8')]) | 28 start_response('200 OK', [('Content-Type', 'text/plain; charset=utf-8')]) |
29 if environ['REQUEST_METHOD'].upper() != 'POST' or not environ.get('CONTENT_TYP
E', '').startswith('application/x-www-form-urlencoded'): | 29 if environ['REQUEST_METHOD'].upper() != 'POST' or not environ.get('CONTENT_TYP
E', '').startswith('application/x-www-form-urlencoded'): |
(...skipping 14 matching lines...) Expand all Loading... |
44 if not 'email' in params or params['email'] == '': | 44 if not 'email' in params or params['email'] == '': |
45 return 'No email address entered' | 45 return 'No email address entered' |
46 if not 'subject' in params or params['subject'] == '': | 46 if not 'subject' in params or params['subject'] == '': |
47 return 'No subject entered' | 47 return 'No subject entered' |
48 if not 'message' in params or params['message'] == '': | 48 if not 'message' in params or params['message'] == '': |
49 return 'No message entered' | 49 return 'No message entered' |
50 | 50 |
51 if not re.match(r'^\w[\w.+!-]+@\w[\w.-]+\.[a-zA-Z]{2,6}$', params['email']): | 51 if not re.match(r'^\w[\w.+!-]+@\w[\w.-]+\.[a-zA-Z]{2,6}$', params['email']): |
52 return 'Invalid email address' | 52 return 'Invalid email address' |
53 | 53 |
54 params['strftime'] = time.strftime | 54 params['time'] = datetime.datetime.now() |
55 sendMail(get_config().get('formmail', 'template'), params) | 55 sendMail(get_config().get('formmail', 'template'), params) |
56 return 'Message sent' | 56 return 'Message sent' |
OLD | NEW |