debian-mirror-gitlab/config/initializers_before_autoloader/100_patch_omniauth_saml.rb

29 lines
768 B
Ruby
Raw Normal View History

2019-09-30 23:59:55 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
require 'omniauth/strategies/saml'
2019-09-30 23:59:55 +05:30
module OmniAuth
module Strategies
class SAML
# NOTE: This method duplicates code from omniauth-saml
# so that we can access authn_request to store it
# See: https://github.com/omniauth/omniauth-saml/issues/172
def request_phase
authn_request = OneLogin::RubySaml::Authrequest.new
store_authn_request_id(authn_request)
with_settings do |settings|
redirect(authn_request.create(settings, additional_params_for_authn_request))
end
end
private
def store_authn_request_id(authn_request)
Gitlab::Auth::Saml::OriginValidator.new(session).store_origin(authn_request)
end
end
end
end