Sha256: 3f2c172e01313b3465281977dbeaca0ba6a9ed1c9117b3426ad512d66023c3fe
Contents?: true
Size: 1.57 KB
Versions: 5
Compression:
Stored size: 1.57 KB
Contents
module Saml class AuthnRequest include Saml::ComplexTypes::RequestAbstractType attr_accessor :xml_value tag 'AuthnRequest' attribute :force_authn, Boolean, :tag => "ForceAuthn" attribute :is_passive, Boolean, :tag => "IsPassive" attribute :assertion_consumer_service_index, Integer, :tag => "AssertionConsumerServiceIndex" attribute :assertion_consumer_service_url, String, :tag => "AssertionConsumerServiceURL" attribute :attribute_consuming_service_index, Integer, :tag => "AttributeConsumingServiceIndex" attribute :protocol_binding, String, :tag => "ProtocolBinding" attribute :provider_name, String, :tag => "ProviderName" has_one :requested_authn_context, Saml::Elements::RequestedAuthnContext has_one :scoping, Saml::Elements::Scoping validates :force_authn, :inclusion => [true, false, nil] validates :assertion_consumer_service_index, :numericality => true, :if => lambda { |val| val.assertion_consumer_service_index.present? } validate :check_assertion_consumer_service def assertion_url return assertion_consumer_service_url if assertion_consumer_service_url provider.assertion_consumer_service_url(assertion_consumer_service_index) if assertion_consumer_service_index end private def check_assertion_consumer_service if assertion_consumer_service_index.present? errors.add(:assertion_consumer_service_url, :must_be_blank) if @assertion_consumer_service_url.present? errors.add(:protocol_binding, :must_be_blank) if protocol_binding.present? end end end end
Version data entries
5 entries across 5 versions & 1 rubygems