Module: Decidim::SanitizeHelper
- Included in:
- ActivityCell, AddressCell, AnnouncementCell, AuthorCell, CardMCell, ContentBlocks::CtaCell, ContentBlocks::HeroCell, ContentBlocks::HighlightedContentBannerCell, ContentBlocks::SubHeroCell, EndorsementButtonsCell, Events::SimpleEvent, FingerprintCell, FollowButtonCell, HtmlTruncation, NewsletterTemplates::BaseCell, ProfileSidebarCell, ResourcePresenter, TosPageCell, TraceabilityHelper, UploadModalCell, UserConversationCell, UserConversationsCell, UserProfileCell, ValidationErrorsPresenter, VersionAuthorCell, VersionCell, VersionsListCell
- Defined in:
- app/helpers/decidim/sanitize_helper.rb
Overview
Helper that provides methods to render order selector and links
Class Method Summary collapse
Instance Method Summary collapse
- #decidim_html_escape(text) ⇒ Object
-
#decidim_sanitize(html, options = {}) ⇒ Object
Public: It sanitizes a user-inputted string with the ‘Decidim::UserInputScrubber` scrubber, so that video embeds work as expected.
- #decidim_sanitize_admin(html, options = {}) ⇒ Object
- #decidim_sanitize_editor(html, options = {}) ⇒ Object
- #decidim_sanitize_editor_admin(html, options = {}) ⇒ Object
- #decidim_sanitize_newsletter(html, options = {}) ⇒ Object
- #decidim_url_escape(text) ⇒ Object
Class Method Details
.included(base) ⇒ Object
6 7 8 9 |
# File 'app/helpers/decidim/sanitize_helper.rb', line 6 def self.included(base) base.include ActionView::Helpers::SanitizeHelper base.include ActionView::Helpers::TagHelper end |
Instance Method Details
#decidim_html_escape(text) ⇒ Object
48 49 50 |
# File 'app/helpers/decidim/sanitize_helper.rb', line 48 def decidim_html_escape(text) ERB::Util.unwrapped_html_escape(text.to_str) end |
#decidim_sanitize(html, options = {}) ⇒ Object
Public: It sanitizes a user-inputted string with the ‘Decidim::UserInputScrubber` scrubber, so that video embeds work as expected. Uses Rails’ ‘sanitize` internally.
html - A string representing user-inputted HTML.
Returns an HTML-safe String.
18 19 20 21 22 23 24 25 |
# File 'app/helpers/decidim/sanitize_helper.rb', line 18 def decidim_sanitize(html, = {}) scrubber = [:scrubber] || Decidim::UserInputScrubber.new if [:strip_tags] sanitize(html, scrubber: scrubber) else sanitize(html, scrubber: scrubber) end end |
#decidim_sanitize_admin(html, options = {}) ⇒ Object
27 28 29 |
# File 'app/helpers/decidim/sanitize_helper.rb', line 27 def decidim_sanitize_admin(html, = {}) decidim_sanitize(html, { scrubber: Decidim::AdminInputScrubber.new }.merge()) end |
#decidim_sanitize_editor(html, options = {}) ⇒ Object
39 40 41 |
# File 'app/helpers/decidim/sanitize_helper.rb', line 39 def decidim_sanitize_editor(html, = {}) content_tag(:div, decidim_sanitize(html, ), class: %w(ql-editor-display)) end |
#decidim_sanitize_editor_admin(html, options = {}) ⇒ Object
43 44 45 46 |
# File 'app/helpers/decidim/sanitize_helper.rb', line 43 def decidim_sanitize_editor_admin(html, = {}) html = Decidim::IframeDisabler.new(html, ).perform decidim_sanitize_editor(html, { scrubber: Decidim::AdminInputScrubber.new }.merge()) end |
#decidim_sanitize_newsletter(html, options = {}) ⇒ Object
31 32 33 34 35 36 37 |
# File 'app/helpers/decidim/sanitize_helper.rb', line 31 def (html, = {}) if [:strip_tags] sanitize(html, scrubber: Decidim::NewsletterScrubber.new) else sanitize(html, scrubber: Decidim::NewsletterScrubber.new) end end |
#decidim_url_escape(text) ⇒ Object
52 53 54 |
# File 'app/helpers/decidim/sanitize_helper.rb', line 52 def decidim_url_escape(text) decidim_html_escape(text).sub(/^javascript:/, "") end |