recaptcha.rb
1.34 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require 'recaptcha/configuration'
require 'recaptcha/client_helper'
require 'recaptcha/verify'
module Recaptcha
module VERSION #:nodoc:
MAJOR = 0
MINOR = 2
TINY = 2
PATCH = 1
STRING = [MAJOR, MINOR, TINY, PATCH].join('.')
end
RECAPTCHA_API_SERVER_URL = 'http://www.google.com/recaptcha/api'
RECAPTCHA_API_SECURE_SERVER_URL = 'https://www.google.com/recaptcha/api'
RECAPTCHA_VERIFY_URL = 'http://www.google.com/recaptcha/api/verify'
SKIP_VERIFY_ENV = ['test', 'cucumber']
# Gives access to the current Configuration.
def self.configuration
@configuration ||= Configuration.new
end
# Allows easy setting of multiple configuration options. See Configuration
# for all available options.
#--
# The temp assignment is only used to get a nicer rdoc. Feel free to remove
# this hack.
#++
def self.configure
config = configuration
yield(config)
end
def self.with_configuration(config)
original_config = {}
config.each do |key, value|
original_config[key] = configuration.send(key)
configuration.send("#{key}=", value)
end
result = yield if block_given?
original_config.each { |key, value| configuration.send("#{key}=", value) }
result
end
class RecaptchaError < StandardError
end
end
if defined?(Rails)
require 'recaptcha/rails'
end