forked from earthquakesan/docker-ckan
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcaptcha.py
44 lines (35 loc) · 1.36 KB
/
captcha.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# encoding: utf-8
from ckan.common import config
import urllib
import urllib2
import json
import logging
log = logging.getLogger(__name__)
def check_recaptcha(request):
'''Check a user\'s recaptcha submission is valid, and raise CaptchaError
on failure.'''
recaptcha_private_key = config.get('ckan.recaptcha.privatekey', '')
if not recaptcha_private_key:
# Recaptcha not enabled
return
client_ip_address = request.environ.get('REMOTE_ADDR', 'Unknown IP Address')
# reCAPTCHA v2
recaptcha_response_field = request.values.get('g-recaptcha-response', '')
recaptcha_server_name = 'https://www.google.com/recaptcha/api/siteverify'
# recaptcha_response_field will be unicode if there are foreign chars in
# the user input. So we need to encode it as utf8 before urlencoding or
# we get an exception (#1431).
params = urllib.urlencode(dict(secret=recaptcha_private_key,
remoteip=client_ip_address,
response=recaptcha_response_field.encode('utf8')))
f = urllib2.urlopen(recaptcha_server_name, params)
data = json.load(f)
f.close()
try:
if not data['success']:
raise CaptchaError()
except IndexError:
# Something weird with recaptcha response
raise CaptchaError()
class CaptchaError(ValueError):
pass