mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-03 06:36:23 +08:00
18 lines
462 B
Ruby
18 lines
462 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AllowedIframesValidator
|
|
# Url starts with http:// or https:// and has at least one more additional '/'
|
|
VALID_ALLOWED_IFRAME_URL_REGEX = %r{\Ahttps?://([^/]*/)+[^/]*\z}x
|
|
|
|
def initialize(opts = {})
|
|
@opts = opts
|
|
end
|
|
|
|
def valid_value?(values)
|
|
values.split("|").all? { it.match? VALID_ALLOWED_IFRAME_URL_REGEX }
|
|
end
|
|
|
|
def error_message
|
|
I18n.t("site_settings.errors.invalid_allowed_iframes_url")
|
|
end
|
|
end
|