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