Sha256: f08bb7b0eb3aa2eced37c2eed017123a2f42f1fbcaded6a1206d086fa048e6f8

Contents?: true

Size: 1.99 KB

Versions: 28

Compression:

Stored size: 1.99 KB

Contents

require 'xmlmapper'

module Saml
  module ComplexTypes
    module RequestAbstractType
      extend ActiveSupport::Concern
      include Saml::Base
      include Saml::XMLHelpers

      included do
        register_namespace 'samlp', Saml::SAMLP_NAMESPACE
        register_namespace 'saml', Saml::SAML_NAMESPACE
        namespace 'samlp'

        attribute :_id, String, tag: 'ID'
        attribute :version, String, tag: 'Version'
        attribute :issue_instant, Time, tag: 'IssueInstant', on_save: lambda { |val| val.utc.xmlschema if val.present? }
        attribute :consent, String, tag: 'Consent'

        attribute :destination, String, tag: 'Destination'
        element :issuer, String, namespace: 'saml', tag: 'Issuer'

        has_one :signature, Saml::Elements::Signature, xpath: "./"
        has_one :extensions, Saml::Elements::SAMLPExtensions

        attr_accessor :actual_destination

        validates :_id, :version, :issue_instant, presence: true

        validates :version, inclusion: %w(2.0)
        validate :check_destination, if: lambda { |val|
          val.destination.present? && val.actual_destination.present?
        }
        validate :check_issue_instant, if: lambda { |val| val.issue_instant.present? }
      end

      def initialize(*args)
        super(*args)
        @_id           ||= Saml.generate_id
        @issue_instant ||= Time.now
        @issuer        ||= Saml.current_provider.entity_id
        @version       ||= Saml::SAML_VERSION
      end

      # @return [Saml::Provider]
      def provider
        Saml.provider(issuer)
      end

      private

      def check_issue_instant
        errors.add(:issue_instant, :too_old) if issue_instant < Time.now - Saml::Config.max_issue_instant_offset.minutes
        errors.add(:issue_instant, :too_new) if issue_instant > Time.now + Saml::Config.max_issue_instant_offset.minutes
      end

      def check_destination
        errors.add(:destination, :invalid) unless actual_destination.start_with?(destination)
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
libsaml-3.1.0 lib/saml/complex_types/request_abstract_type.rb
libsaml-3.0.9 lib/saml/complex_types/request_abstract_type.rb
libsaml-3.0.8 lib/saml/complex_types/request_abstract_type.rb
libsaml-3.0.7 lib/saml/complex_types/request_abstract_type.rb
libsaml-3.0.6 lib/saml/complex_types/request_abstract_type.rb
libsaml-3.0.5 lib/saml/complex_types/request_abstract_type.rb
libsaml-3.0.4 lib/saml/complex_types/request_abstract_type.rb
libsaml-3.0.3 lib/saml/complex_types/request_abstract_type.rb