Module: Decidim::SanitizeHelper

Overview

Helper that provides methods to render order selector and links

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(base) ⇒ Object



6
7
8
# File 'app/helpers/decidim/sanitize_helper.rb', line 6

def self.included(base)
  base.include ActionView::Helpers::SanitizeHelper
end

Instance Method Details

#decidim_html_escape(text) ⇒ Object



33
34
35
# File 'app/helpers/decidim/sanitize_helper.rb', line 33

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.



17
18
19
20
21
22
23
# File 'app/helpers/decidim/sanitize_helper.rb', line 17

def decidim_sanitize(html, options = {})
  if options[:strip_tags]
    strip_tags sanitize(html, scrubber: Decidim::UserInputScrubber.new)
  else
    sanitize(html, scrubber: Decidim::UserInputScrubber.new)
  end
end

#decidim_sanitize_newsletter(html, options = {}) ⇒ Object



25
26
27
28
29
30
31
# File 'app/helpers/decidim/sanitize_helper.rb', line 25

def decidim_sanitize_newsletter(html, options = {})
  if options[:strip_tags]
    strip_tags sanitize(html, scrubber: Decidim::NewsletterScrubber.new)
  else
    sanitize(html, scrubber: Decidim::NewsletterScrubber.new)
  end
end

#decidim_url_escape(text) ⇒ Object



37
38
39
# File 'app/helpers/decidim/sanitize_helper.rb', line 37

def decidim_url_escape(text)
  decidim_html_escape(text).sub(/^javascript:/, "")
end