Sha256: eb83405aa914d84b110b891577e4763bd6e8422137a331d0ccb1b8c0dd9fa80a

Contents?: true

Size: 1.11 KB

Versions: 5

Compression:

Stored size: 1.11 KB

Contents

# frozen_string_literal: true

module Saml
  module Kit
    # {include:file:spec/examples/service_provider_metadata_spec.rb}
    class ServiceProviderMetadata < Metadata
      def initialize(xml)
        super('SPSSODescriptor', xml)
      end

      # Returns each of the AssertionConsumerService bindings.
      def assertion_consumer_services
        services('AssertionConsumerService')
      end

      # Returns the AssertionConsumerService for the specified binding.
      #
      # @param binding [Symbol] can be either `:http_post` or `:http_redirect`
      def assertion_consumer_service_for(binding:)
        service_for(binding: binding, type: 'AssertionConsumerService')
      end

      # Returns true when the metadata demands that Assertions must be signed.
      def want_assertions_signed
        attribute = at_xpath("/md:EntityDescriptor/md:#{name}").attribute('WantAssertionsSigned')
        return true if attribute.nil?
        attribute.text.casecmp('true').zero?
      end

      # @!visibility private
      def self.builder_class
        Saml::Kit::Builders::ServiceProviderMetadata
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
saml-kit-1.0.14 lib/saml/kit/service_provider_metadata.rb
saml-kit-1.0.13 lib/saml/kit/service_provider_metadata.rb
saml-kit-1.0.12 lib/saml/kit/service_provider_metadata.rb
saml-kit-1.0.11 lib/saml/kit/service_provider_metadata.rb
saml-kit-1.0.10 lib/saml/kit/service_provider_metadata.rb