summaryrefslogtreecommitdiff
path: root/config/initializers/7_omniauth.rb
blob: 103aa06ca327399bea5e685508bab98809909d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
if Gitlab::LDAP::Config.enabled?
  module OmniAuth::Strategies
    server = Gitlab.config.ldap.servers.values.first
    klass = server['provider_class']
    const_set(klass, Class.new(LDAP)) unless klass == 'LDAP'
  end

  OmniauthCallbacksController.class_eval do
    server = Gitlab.config.ldap.servers.values.first
    alias_method server['provider_name'], :ldap
  end
end

OmniAuth.config.allowed_request_methods = [:post]
OmniAuth.config.before_request_phase do |env|
  OmniAuth::RequestForgeryProtection.new(env).call
end