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