summaryrefslogtreecommitdiff
path: root/lib/gitlab/recaptcha.rb
blob: f3cbe1db901b873afcc590424fe90e92e42c0d51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

module Gitlab
  module Recaptcha
    def self.load_configurations!
      if Gitlab::CurrentSettings.recaptcha_enabled || enabled_on_login?
        ::Recaptcha.configure do |config|
          config.site_key = Gitlab::CurrentSettings.recaptcha_site_key
          config.secret_key = Gitlab::CurrentSettings.recaptcha_private_key
        end

        true
      end
    end

    def self.enabled?
      Gitlab::CurrentSettings.recaptcha_enabled
    end

    def self.enabled_on_login?
      Gitlab::CurrentSettings.login_recaptcha_protection_enabled
    end
  end
end