Class: ActiveSupport::SafeBuffer

Inherits:
String show all
Defined in:
lib/active_support/core_ext/string/output_safety.rb

Defined Under Namespace

Classes: SafeConcatError

Constant Summary collapse

UNSAFE_STRING_METHODS =
["capitalize", "chomp", "chop", "delete", "downcase", "gsub", "lstrip", "next", "reverse", "rstrip", "slice", "squeeze", "strip", "sub", "succ", "swapcase", "tr", "tr_s", "upcase", "prepend"].freeze

Instance Method Summary collapse

Methods inherited from String

#acts_like_string?, #as_json, #at, #blank?, #camelize, #classify, #constantize, #dasherize, #demodulize, #encode_json, #encoding_aware?, #exclude?, #first, #foreign_key, #from, #html_safe, #humanize, #is_utf8?, #last, #mb_chars, #ord, #parameterize, #pluralize, #singularize, #squish, #squish!, #strip_heredoc, #tableize, #titleize, #to, #to_date, #to_datetime, #to_time, #truncate, #underscore

Constructor Details

#initializeSafeBuffer

Returns a new instance of SafeBuffer.



116
117
118
119
# File 'lib/active_support/core_ext/string/output_safety.rb', line 116

def initialize(*)
  @html_safe = true
  super
end

Instance Method Details

#+(other) ⇒ Object



139
140
141
# File 'lib/active_support/core_ext/string/output_safety.rb', line 139

def +(other)
  dup.concat(other)
end

#[](*args) ⇒ Object



99
100
101
102
103
104
105
106
107
108
109
# File 'lib/active_support/core_ext/string/output_safety.rb', line 99

def [](*args)
  return super if args.size < 2

  if html_safe?
    new_safe_buffer = super
    new_safe_buffer.instance_eval { @html_safe = true }
    new_safe_buffer
  else
    to_str[*args]
  end
end

#clone_emptyObject



126
127
128
# File 'lib/active_support/core_ext/string/output_safety.rb', line 126

def clone_empty
  self[0, 0]
end

#concat(value) ⇒ Object Also known as: <<



130
131
132
133
134
135
136
# File 'lib/active_support/core_ext/string/output_safety.rb', line 130

def concat(value)
  if !html_safe? || value.html_safe?
    super(value)
  else
    super(ERB::Util.h(value))
  end
end

#html_safe?Boolean

Returns:

  • (Boolean)


143
144
145
# File 'lib/active_support/core_ext/string/output_safety.rb', line 143

def html_safe?
  defined?(@html_safe) && @html_safe
end

#initialize_copy(other) ⇒ Object



121
122
123
124
# File 'lib/active_support/core_ext/string/output_safety.rb', line 121

def initialize_copy(other)
  super
  @html_safe = other.html_safe?
end

#safe_concat(value) ⇒ Object

Raises:



111
112
113
114
# File 'lib/active_support/core_ext/string/output_safety.rb', line 111

def safe_concat(value)
  raise SafeConcatError unless html_safe?
  original_concat(value)
end

#to_paramObject



151
152
153
# File 'lib/active_support/core_ext/string/output_safety.rb', line 151

def to_param
  to_str
end

#to_sObject



147
148
149
# File 'lib/active_support/core_ext/string/output_safety.rb', line 147

def to_s
  self
end

#to_yaml(*args) ⇒ Object



155
156
157
# File 'lib/active_support/core_ext/string/output_safety.rb', line 155

def to_yaml(*args)
  to_str.to_yaml(*args)
end