mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
30 lines
770 B
Ruby
30 lines
770 B
Ruby
# frozen_string_literal: true
|
|
|
|
class EnableSsoValidator
|
|
def initialize(opts = {})
|
|
@opts = opts
|
|
end
|
|
|
|
def valid_value?(val)
|
|
return true if val == "f"
|
|
if SiteSetting.discourse_connect_url.blank? || SiteSetting.invite_only? || is_2fa_enforced?
|
|
return false
|
|
end
|
|
true
|
|
end
|
|
|
|
def error_message
|
|
if SiteSetting.discourse_connect_url.blank?
|
|
return I18n.t("site_settings.errors.discourse_connect_url_is_empty")
|
|
end
|
|
return I18n.t("site_settings.errors.discourse_connect_invite_only") if SiteSetting.invite_only?
|
|
if is_2fa_enforced?
|
|
I18n.t("site_settings.errors.discourse_connect_cannot_be_enabled_if_second_factor_enforced")
|
|
end
|
|
end
|
|
|
|
def is_2fa_enforced?
|
|
SiteSetting.enforce_second_factor? != "no"
|
|
end
|
|
end
|