Class: SinareySupport::SafeBuffer

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

Defined Under Namespace

Classes: SafeConcatError

Constant Summary collapse

UNSAFE_STRING_METHODS =
%w(
  capitalize chomp chop delete downcase gsub lstrip next reverse rstrip
  slice squeeze strip sub succ swapcase tr tr_s upcase prepend
)

Instance Method Summary collapse

Methods inherited from String

#acts_like_string?, #at, #blank?, #exclude?, #first, #from, #html_safe, #indent, #indent!, #last, #squish, #squish!, #to, #truncate

Constructor Details

#initializeSafeBuffer

Returns a new instance of SafeBuffer.



104
105
106
107
# File 'lib/sinarey_support/core_ext/string/output_safety.rb', line 104

def initialize(*)
  @html_safe = true
  super
end

Instance Method Details

#%(args) ⇒ Object



131
132
133
134
135
136
137
138
139
140
141
# File 'lib/sinarey_support/core_ext/string/output_safety.rb', line 131

def %(args)
  args = Array(args).map do |arg|
    if !html_safe? || arg.html_safe?
      arg
    else
      ERB::Util.h(arg)
    end
  end

  self.class.new(super(args))
end

#+(other) ⇒ Object



127
128
129
# File 'lib/sinarey_support/core_ext/string/output_safety.rb', line 127

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

#[](*args) ⇒ Object



85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/sinarey_support/core_ext/string/output_safety.rb', line 85

def [](*args)
  if args.size < 2
    super
  else
    if html_safe?
      new_safe_buffer = super
      new_safe_buffer.instance_eval { @html_safe = true }
      new_safe_buffer
    else
      to_str[*args]
    end
  end
end

#clone_emptyObject



114
115
116
# File 'lib/sinarey_support/core_ext/string/output_safety.rb', line 114

def clone_empty
  self[0, 0]
end

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



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

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

#encode_with(coder) ⇒ Object



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

def encode_with(coder)
  coder.represent_scalar nil, to_str
end

#html_safe?Boolean

Returns:

  • (Boolean)


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

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

#initialize_copy(other) ⇒ Object



109
110
111
112
# File 'lib/sinarey_support/core_ext/string/output_safety.rb', line 109

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

#safe_concat(value) ⇒ Object

Raises:



99
100
101
102
# File 'lib/sinarey_support/core_ext/string/output_safety.rb', line 99

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

#to_paramObject



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

def to_param
  to_str
end

#to_sObject



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

def to_s
  self
end