2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-07 06:31:04 -05:00
|
|
|
class Auth::GoogleOAuth2Authenticator < Auth::ManagedAuthenticator
|
2014-05-21 18:19:40 -04:00
|
|
|
def name
|
|
|
|
"google_oauth2"
|
|
|
|
end
|
|
|
|
|
2018-07-23 11:51:57 -04:00
|
|
|
def enabled?
|
|
|
|
SiteSetting.enable_google_oauth2_logins
|
|
|
|
end
|
|
|
|
|
2019-03-07 06:31:04 -05:00
|
|
|
def primary_email_verified?(auth_token)
|
|
|
|
# note, emails that come back from google via omniauth are always valid
|
|
|
|
# this protects against future regressions
|
|
|
|
auth_token[:extra][:raw_info][:email_verified]
|
2014-05-21 18:19:40 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def register_middleware(omniauth)
|
2021-12-09 07:30:27 -05:00
|
|
|
strategy_class = Auth::OmniAuthStrategies::DiscourseGoogleOauth2
|
2018-02-22 18:19:36 -05:00
|
|
|
options = {
|
|
|
|
setup: lambda { |env|
|
|
|
|
strategy = env["omniauth.strategy"]
|
2019-01-31 05:05:25 -05:00
|
|
|
strategy.options[:client_id] = SiteSetting.google_oauth2_client_id
|
|
|
|
strategy.options[:client_secret] = SiteSetting.google_oauth2_client_secret
|
|
|
|
|
|
|
|
if (google_oauth2_hd = SiteSetting.google_oauth2_hd).present?
|
|
|
|
strategy.options[:hd] = google_oauth2_hd
|
|
|
|
end
|
|
|
|
|
|
|
|
if (google_oauth2_prompt = SiteSetting.google_oauth2_prompt).present?
|
|
|
|
strategy.options[:prompt] = google_oauth2_prompt.gsub("|", " ")
|
|
|
|
end
|
2020-12-09 04:09:31 -05:00
|
|
|
|
|
|
|
# All the data we need for the `info` and `credentials` auth hash
|
|
|
|
# are obtained via the user info API, not the JWT. Using and verifying
|
|
|
|
# the JWT can fail due to clock skew, so let's skip it completely.
|
|
|
|
# https://github.com/zquestz/omniauth-google-oauth2/pull/392
|
|
|
|
strategy.options[:skip_jwt] = true
|
2021-12-09 07:30:27 -05:00
|
|
|
strategy.options[:request_groups] = provides_groups?
|
|
|
|
|
|
|
|
if provides_groups?
|
|
|
|
strategy.options[:scope] = "#{strategy_class::DEFAULT_SCOPE},#{strategy_class::GROUPS_SCOPE}"
|
|
|
|
end
|
2019-03-07 06:31:04 -05:00
|
|
|
}
|
2018-02-22 18:19:36 -05:00
|
|
|
}
|
2021-12-09 07:30:27 -05:00
|
|
|
omniauth.provider strategy_class, options
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_authenticate(auth_token, existing_account: nil)
|
|
|
|
result = super
|
|
|
|
if provides_groups? && (groups = auth_token[:extra][:raw_groups])
|
|
|
|
result.associated_groups = groups.map { |group| group.slice(:id, :name) }
|
|
|
|
end
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
def provides_groups?
|
|
|
|
SiteSetting.google_oauth2_hd.present? && SiteSetting.google_oauth2_hd_groups
|
2014-05-21 18:19:40 -04:00
|
|
|
end
|
2015-04-24 13:10:43 -04:00
|
|
|
end
|