debian-mirror-gitlab/lib/gitlab/auth/o_auth/provider.rb

100 lines
2.7 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-03-27 19:54:05 +05:30
module Gitlab
module Auth
module OAuth
class Provider
LABELS = {
2021-04-17 20:07:23 +05:30
"github" => "GitHub",
"gitlab" => "GitLab.com",
"google_oauth2" => "Google",
"azure_oauth2" => "Azure AD",
"azure_activedirectory_v2" => "Azure AD v2",
'atlassian_oauth2' => 'Atlassian'
2018-03-27 19:54:05 +05:30
}.freeze
def self.authentication(user, provider)
return unless user
return unless enabled?(provider)
authenticator =
case provider
2021-02-22 17:27:13 +05:30
when /crowd/
Gitlab::Auth::Crowd::Authentication
2018-03-27 19:54:05 +05:30
when /^ldap/
2020-04-08 14:13:33 +05:30
Gitlab::Auth::Ldap::Authentication
2018-03-27 19:54:05 +05:30
when 'database'
Gitlab::Auth::Database::Authentication
end
authenticator&.new(provider, user)
end
def self.providers
Devise.omniauth_providers
end
def self.enabled?(name)
return true if name == 'database'
2018-11-18 11:00:15 +05:30
return true if self.ldap_provider?(name) && providers.include?(name.to_sym)
2018-03-27 19:54:05 +05:30
2018-11-18 11:00:15 +05:30
Gitlab::Auth.omniauth_enabled? && providers.include?(name.to_sym)
2018-03-27 19:54:05 +05:30
end
def self.ldap_provider?(name)
name.to_s.start_with?('ldap')
end
def self.sync_profile_from_provider?(provider)
return true if ldap_provider?(provider)
providers = Gitlab.config.omniauth.sync_profile_from_provider
if providers.is_a?(Array)
providers.include?(provider)
else
providers
end
end
def self.config_for(name)
name = name.to_s
if ldap_provider?(name)
2020-04-08 14:13:33 +05:30
if Gitlab::Auth::Ldap::Config.valid_provider?(name)
Gitlab::Auth::Ldap::Config.new(name).options
2018-03-27 19:54:05 +05:30
else
nil
end
else
2020-05-24 23:13:21 +05:30
provider = Gitlab.config.omniauth.providers.find { |provider| provider.name == name }
merge_provider_args_with_defaults!(provider)
provider
2018-03-27 19:54:05 +05:30
end
end
def self.label_for(name)
name = name.to_s
config = config_for(name)
(config && config['label']) || LABELS[name] || name.titleize
end
2020-04-08 14:13:33 +05:30
def self.icon_for(name)
name = name.to_s
config = config_for(name)
config && config['icon']
end
2020-05-24 23:13:21 +05:30
def self.merge_provider_args_with_defaults!(provider)
return unless provider
provider['args'] ||= {}
defaults = Gitlab::OmniauthInitializer.default_arguments_for(provider['name'])
provider['args'].deep_merge!(defaults.deep_stringify_keys)
end
2018-03-27 19:54:05 +05:30
end
end
end
end