mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 13:16:28 +08:00
31 lines
742 B
Ruby
31 lines
742 B
Ruby
module InputSanitizeHelper
|
|
def sanitize_input(
|
|
text,
|
|
tags = [],
|
|
attributes = []
|
|
)
|
|
ActionController::Base.helpers.sanitize(
|
|
text,
|
|
tags: Constants::WHITELISTED_TAGS + tags,
|
|
attributes: Constants::WHITELISTED_ATTRIBUTES + attributes
|
|
)
|
|
end
|
|
|
|
def escape_input(text)
|
|
ERB::Util.html_escape(text)
|
|
end
|
|
|
|
def custom_auto_link(text, simple_format = true, org = nil, wrapper_tag = {})
|
|
text = if simple_format
|
|
simple_format(sanitize_input(text), {}, wrapper_tag)
|
|
else
|
|
sanitize_input(text)
|
|
end
|
|
auto_link(
|
|
smart_annotation_parser(text, org),
|
|
link: :urls,
|
|
sanitize: false,
|
|
html: { target: '_blank' }
|
|
).html_safe
|
|
end
|
|
end
|