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.



105
106
107
108
# File 'lib/active_support/core_ext/string/output_safety.rb', line 105

def initialize(*)
  @html_safe = true
  super
end

Instance Method Details

#+(other) ⇒ Object



128
129
130
# File 'lib/active_support/core_ext/string/output_safety.rb', line 128

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

#[](*args) ⇒ Object



88
89
90
91
92
93
94
95
96
97
98
# File 'lib/active_support/core_ext/string/output_safety.rb', line 88

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



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

def clone_empty
  self[0, 0]
end

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



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

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

#html_safe?Boolean

Returns:

  • (Boolean)


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

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

#initialize_copy(other) ⇒ Object



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

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

#safe_concat(value) ⇒ Object

Raises:



100
101
102
103
# File 'lib/active_support/core_ext/string/output_safety.rb', line 100

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

#to_paramObject



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

def to_param
  to_str
end

#to_sObject



136
137
138
# File 'lib/active_support/core_ext/string/output_safety.rb', line 136

def to_s
  self
end

#to_yaml(*args) ⇒ Object



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

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