2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-23 16:00:49 +08:00
|
|
|
class EnableSsoValidator
|
|
|
|
def initialize(opts = {})
|
|
|
|
@opts = opts
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid_value?(val)
|
|
|
|
return true if val == "f"
|
2023-04-05 00:52:11 +08:00
|
|
|
return false if SiteSetting.discourse_connect_url.blank? || is_2fa_enforced?
|
2019-04-02 22:26:27 +08:00
|
|
|
true
|
2017-12-23 16:00:49 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def error_message
|
2021-02-08 18:04:33 +08:00
|
|
|
if SiteSetting.discourse_connect_url.blank?
|
|
|
|
return I18n.t("site_settings.errors.discourse_connect_url_is_empty")
|
2023-01-09 20:10:19 +08:00
|
|
|
end
|
2023-04-05 00:52:11 +08:00
|
|
|
|
2022-04-26 01:49:36 +08:00
|
|
|
if is_2fa_enforced?
|
|
|
|
I18n.t("site_settings.errors.discourse_connect_cannot_be_enabled_if_second_factor_enforced")
|
2023-01-09 20:10:19 +08:00
|
|
|
end
|
2022-04-26 01:49:36 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def is_2fa_enforced?
|
|
|
|
SiteSetting.enforce_second_factor? != "no"
|
2017-12-23 16:00:49 +08:00
|
|
|
end
|
|
|
|
end
|