Sha256: cc1178baefbd400546528aa6e84ff6759728e87560f283b23100219b31137b51
Contents?: true
Size: 1.89 KB
Versions: 5
Compression:
Stored size: 1.89 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 # == Schema Information # # Table name: identity_providers # # id :uuid not null, primary key # service :string # domain :string not null # sso_url :string # sso_cert :text # enterprise_account_id :uuid # oauth_client_id :uuid # status :enum default("PENDING") # created_at :datetime # updated_at :datetime # # Indexes # # index_identity_providers_on_domain (domain) # index_identity_providers_on_enterprise_account_id (enterprise_account_id) # index_identity_providers_on_oauth_client_id (oauth_client_id) #
Version data entries
5 entries across 5 versions & 1 rubygems