card-mod-recaptcha 0.13.0 → 0.13.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d5a79c7dd93ee85cbf86649466fc1d4e52ad683483abb6c2b3e1a17c17020f8
4
- data.tar.gz: 6f2d7a2cf2baba2c65a5d9f27b15c0cd8506795d43043a6c8d901de725c2e48c
3
+ metadata.gz: 402e8c4f2bf3d79cac2d4c46687cca5ed24948370de669ed38cea73ac3c760e7
4
+ data.tar.gz: e19882af8f375e644a4c10fc913320e77f0fafb3c2af83b81af8abfe0646ab8f
5
5
  SHA512:
6
- metadata.gz: be6a92321fccd3c04b010773b9569a1344572ea6701edbb728492c50627758e6b299f803e39cafed5c42822df0bb7b2e8047df8db0f568c3a5bfe367c7e1415c
7
- data.tar.gz: 5977f9eee5eb4522c8be928a1a4a1531c159880fdb4ecf88983ed30e7db097139508cbdb6e1bc5f97e2f8287197ab2449f6f3ee6f50395395296b61512d1895d
6
+ metadata.gz: c2488fec47bec58a5dd2225947b238e394c1b2782cd4bb454ad527927c93cdedc6c72ef4a04a1c51b4dadf60e1613db23dc63ac19117b51c96c8c8236355d2a0
7
+ data.tar.gz: 2930668ad5156378a37b19819453c7eedf5e50125e7f90b1e81566ac61930b88c2c56f1b3ca238c107488bcbab0ff779b56e4388e912149c82ec52cb7bcc6e89
@@ -0,0 +1,59 @@
1
+ # -*- encoding : utf-8 -*-
2
+
3
+ require "recaptcha"
4
+
5
+ # This initializer module is mostly here to avoid adding methods/vars to the Object
6
+ # namespace
7
+ module RecaptchaCard
8
+ @deprecated = {
9
+ recaptcha_site_key: :recaptcha_public_key,
10
+ recaptcha_secret_key: :recaptcha_private_key
11
+ }
12
+ @defaults = {
13
+ recaptcha_site_key: "6LdoqpgUAAAAAEdhJ4heI1h3XLlpXcDf0YubriCG",
14
+ recaptcha_secret_key: "6LdoqpgUAAAAAP4Sz1L5PY6VKrum_RFxq4-awj4BH"
15
+ }
16
+
17
+ mattr_accessor :using_card_defaults
18
+
19
+ class << self
20
+ def load_recaptcha_config setting
21
+ setting = "recaptcha_#{setting}".to_sym
22
+ Cardio.config.send "#{setting}=", recaptcha_setting_value(setting)
23
+ end
24
+
25
+ def using_defaults?
26
+ Cardio.config.recaptcha_site_key == @defaults[:recaptcha_site_key]
27
+ end
28
+
29
+ # card config overrides application.rb config overrides default
30
+ def recaptcha_setting_value setting
31
+ card_value(setting) || # card content
32
+ config_value(setting) || # application.rb (current setting)
33
+ config_value(@deprecated[setting]) || # application.rb (deprecated setting)
34
+ @defaults[setting]
35
+ end
36
+
37
+ def config_value setting
38
+ Cardio.config.send setting
39
+ end
40
+
41
+ def card_value setting
42
+ return unless Card::Codename.exist? setting # prevents breakage in migrations
43
+
44
+ value = Card[setting]&.content
45
+ value if value.present?
46
+ end
47
+ end
48
+ end
49
+
50
+ ActiveSupport.on_load :after_card do
51
+ Recaptcha.configure do |config|
52
+ %i[site_key secret_key].each do |setting|
53
+ config.send "#{setting}=", RecaptchaCard.load_recaptcha_config(setting)
54
+ end
55
+ config.verify_url = "https://www.google.com/recaptcha/api/siteverify"
56
+ end
57
+ end
58
+
59
+ CardController.include ::Recaptcha::Verify
data/locales/en.yml ADDED
@@ -0,0 +1,9 @@
1
+ en:
2
+ recaptcha_captcha_keys: You are configured to use %{captcha_link}, but for that to work you need new %{recaptcha_link}.
3
+ recaptcha_captcha_temp: Your captcha is currently working with temporary settings. This is fine for a local installation, but you will need new %{recaptcha_link} if you want to make this site public.
4
+ recaptcha_howto_add: Add your keys to %{recaptcha_settings}
5
+ recaptcha_howto_add_keys: "How to add new recaptcha keys:"
6
+ recaptcha_howto_go: Go to %{captcha_card}
7
+ recaptcha_howto_register: Register your domain at %{recaptcha_link}
8
+ recaptcha_howto_turn_off: 'How to turn captcha off:'
9
+ recaptcha_howto_update: Update all *captcha rules to "no".
@@ -1,4 +1,4 @@
1
- add_to_basket :warnings, :recaptcha_config_issues
1
+ basket[:warnings] << :recaptcha_config_issues
2
2
 
3
3
  def recaptcha_config_issues?
4
4
  RecaptchaCard.using_defaults?
@@ -3,7 +3,7 @@ format :html do
3
3
  # LOCALIZE
4
4
  "Register your domain at Google's [[http://google.com/recaptcha|reCAPTCHA service]] "\
5
5
  "and enter your site key and secret key below.<br>"\
6
- "If you want to turn catchas off then change all [[*captcha|captcha rules]] to 'no'."
6
+ "If you want to turn captchas off then change all [[*captcha|captcha rules]] to 'no'."
7
7
  end
8
8
 
9
9
  # def instructions title, steps
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: card-mod-recaptcha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.13.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ethan McCutchen
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2021-08-06 00:00:00.000000000 Z
13
+ date: 2021-09-24 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: card
@@ -18,14 +18,14 @@ dependencies:
18
18
  requirements:
19
19
  - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 1.103.0
21
+ version: 1.103.4
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
25
25
  requirements:
26
26
  - - '='
27
27
  - !ruby/object:Gem::Version
28
- version: 1.103.0
28
+ version: 1.103.4
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: recaptcha
31
31
  requirement: !ruby/object:Gem::Requirement
@@ -47,6 +47,8 @@ executables: []
47
47
  extensions: []
48
48
  extra_rdoc_files: []
49
49
  files:
50
+ - init/late/recaptcha.rb
51
+ - locales/en.yml
50
52
  - set/all/recaptcha.rb
51
53
  - set/self/admin_info.rb
52
54
  - set/self/captcha.rb