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

39 lines
880 B
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
module Gitlab
module OAuth
class Provider
2015-11-26 14:37:03 +05:30
LABELS = {
"github" => "GitHub",
"gitlab" => "GitLab.com",
"google_oauth2" => "Google"
}.freeze
2015-09-11 14:41:01 +05:30
def self.providers
Devise.omniauth_providers
end
def self.enabled?(name)
providers.include?(name.to_sym)
end
def self.ldap_provider?(name)
name.to_s.start_with?('ldap')
end
def self.config_for(name)
name = name.to_s
if ldap_provider?(name)
Gitlab::LDAP::Config.new(name).options
else
Gitlab.config.omniauth.providers.find { |provider| provider.name == name }
end
end
def self.label_for(name)
2015-11-26 14:37:03 +05:30
name = name.to_s
2015-09-11 14:41:01 +05:30
config = config_for(name)
2015-11-26 14:37:03 +05:30
(config && config['label']) || LABELS[name] || name.titleize
2015-09-11 14:41:01 +05:30
end
end
end
end