Sha256: 937d6008d68805c25f05a7c63555af48ea05a3571f8021e1e93ac725379c658f
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true module Osso module Models # Base class for SAML Providers class IdentityProvider < ActiveRecord::Base NAME_FORMAT = 'urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress' belongs_to :enterprise_account belongs_to :oauth_client has_many :users before_save :set_status def name service.titlecase # raise( # NoMethodError, # '#name must be defined on each provider specific subclass', # ) end def saml_options attributes.slice( 'domain', 'idp_cert', 'idp_sso_target_url', ).symbolize_keys end # def saml_options # raise( # NoMethodError, # '#saml_options must be defined on each provider specific subclass', # ) # end def assertion_consumer_service_url [ ENV.fetch('BASE_URL'), 'auth', 'saml', id, 'callback', ].join('/') end alias acs_url assertion_consumer_service_url def set_status return if status != 'PENDING' self.status = 'CONFIGURED' if sso_url && sso_cert end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
osso-0.0.3.8 | lib/osso/models/identity_provider.rb |