Module: Liquid::StandardFilters

Defined in:
lib/liquid/standardfilters.rb

Instance Method Summary collapse

Instance Method Details

#append(input, string) ⇒ Object

add one string to another



113
114
115
# File 'lib/liquid/standardfilters.rb', line 113

def append(input, string)
  input.to_s + string.to_s
end

#capitalize(input) ⇒ Object

capitalize words in the input centence



24
25
26
# File 'lib/liquid/standardfilters.rb', line 24

def capitalize(input)
  input.to_s.capitalize
end

#date(input, format) ⇒ Object

Reformat a date

%a - The abbreviated weekday name (``Sun'')
%A - The  full  weekday  name (``Sunday'')
%b - The abbreviated month name (``Jan'')
%B - The  full  month  name (``January'')
%c - The preferred local date and time representation
%d - Day of the month (01..31)
%H - Hour of the day, 24-hour clock (00..23)
%I - Hour of the day, 12-hour clock (01..12)
%j - Day of the year (001..366)
%m - Month of the year (01..12)
%M - Minute of the hour (00..59)
%p - Meridian indicator (``AM''  or  ``PM'')
%S - Second of the minute (00..60)
%U - Week  number  of the current year,
        starting with the first Sunday as the first
        day of the first week (00..53)
%W - Week  number  of the current year,
        starting with the first Monday as the first
        day of the first week (00..53)
%w - Day of the week (Sunday is 0, 0..6)
%x - Preferred representation for the date alone, no time
%X - Preferred representation for the time alone, no date
%y - Year without a century (00..99)
%Y - Year with century
%Z - Time zone name
%% - Literal ``%'' character


155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# File 'lib/liquid/standardfilters.rb', line 155

def date(input, format)

  if format.to_s.empty?
    return input.to_s
  end

  date = input.is_a?(String) ? Time.parse(input) : input

  if date.respond_to?(:strftime)
    date.strftime(format.to_s)
  else
    input
  end
rescue => e
  input
end

#divided_by(input, operand) ⇒ Object

division



206
207
208
# File 'lib/liquid/standardfilters.rb', line 206

def divided_by(input, operand)
  to_number(input) / to_number(operand)
end

#downcase(input) ⇒ Object

convert a input string to DOWNCASE



14
15
16
# File 'lib/liquid/standardfilters.rb', line 14

def downcase(input)
  input.to_s.downcase
end

#escape(input) ⇒ Object Also known as: h



28
29
30
# File 'lib/liquid/standardfilters.rb', line 28

def escape(input)
  CGI.escapeHTML(input) rescue input
end

#escape_once(input) ⇒ Object



32
33
34
# File 'lib/liquid/standardfilters.rb', line 32

def escape_once(input)
  ActionView::Helpers::TagHelper.escape_once(input) rescue input
end

#first(array) ⇒ Object

Get the first element of the passed in array

Example:

{{ product.images | first | to_img }}


177
178
179
# File 'lib/liquid/standardfilters.rb', line 177

def first(array)
  array.first if array.respond_to?(:first)
end

#join(input, glue = ' ') ⇒ Object

Join elements of the array with certain character between them



65
66
67
# File 'lib/liquid/standardfilters.rb', line 65

def join(input, glue = ' ')
  [input].flatten.join(glue)
end

#last(array) ⇒ Object

Get the last element of the passed in array

Example:

{{ product.images | last | to_img }}


186
187
188
# File 'lib/liquid/standardfilters.rb', line 186

def last(array)
  array.last if array.respond_to?(:last)
end

#map(input, property) ⇒ Object

map/collect on a given property



83
84
85
86
87
88
89
90
# File 'lib/liquid/standardfilters.rb', line 83

def map(input, property)
  ary = [input].flatten
  if ary.first.respond_to?('[]') and !ary.first[property].nil?
    ary.map {|e| e[property] }
  elsif ary.first.respond_to?(property)
    ary.map {|e| e.send(property) }
  end
end

#minus(input, operand) ⇒ Object

subtraction



196
197
198
# File 'lib/liquid/standardfilters.rb', line 196

def minus(input, operand)
  to_number(input) - to_number(operand)
end

#newline_to_br(input) ⇒ Object

Add <br /> tags in front of all newlines in input string



123
124
125
# File 'lib/liquid/standardfilters.rb', line 123

def newline_to_br(input)
  input.to_s.gsub(/\n/, "<br />\n")
end

#plus(input, operand) ⇒ Object

addition



191
192
193
# File 'lib/liquid/standardfilters.rb', line 191

def plus(input, operand)
  to_number(input) + to_number(operand)
end

#prepend(input, string) ⇒ Object

prepend a string to another



118
119
120
# File 'lib/liquid/standardfilters.rb', line 118

def prepend(input, string)
  string.to_s + input.to_s
end

#remove(input, string) ⇒ Object

remove a substring



103
104
105
# File 'lib/liquid/standardfilters.rb', line 103

def remove(input, string)
  input.to_s.gsub(string, '')
end

#remove_first(input, string) ⇒ Object

remove the first occurrences of a substring



108
109
110
# File 'lib/liquid/standardfilters.rb', line 108

def remove_first(input, string)
  input.to_s.sub(string, '')
end

#replace(input, string, replacement = '') ⇒ Object

Replace occurrences of a string with another



93
94
95
# File 'lib/liquid/standardfilters.rb', line 93

def replace(input, string, replacement = '')
  input.to_s.gsub(string, replacement)
end

#replace_first(input, string, replacement = '') ⇒ Object

Replace the first occurrences of a string with another



98
99
100
# File 'lib/liquid/standardfilters.rb', line 98

def replace_first(input, string, replacement = '')
  input.to_s.sub(string, replacement)
end

#size(input) ⇒ Object

Return the size of an array or of an string



8
9
10
11
# File 'lib/liquid/standardfilters.rb', line 8

def size(input)

  input.respond_to?(:size) ? input.size : 0
end

#sort(input, property = nil) ⇒ Object

Sort elements of the array provide optional property with which to sort an array of hashes or drops



71
72
73
74
75
76
77
78
79
80
# File 'lib/liquid/standardfilters.rb', line 71

def sort(input, property = nil)
  ary = [input].flatten
  if property.nil?
    ary.sort
  elsif ary.first.respond_to?('[]') and !ary.first[property].nil?
    ary.sort {|a,b| a[property] <=> b[property] }
  elsif ary.first.respond_to?(property)
    ary.sort {|a,b| a.send(property) <=> b.send(property) }
  end
end

#strip_html(input) ⇒ Object



54
55
56
# File 'lib/liquid/standardfilters.rb', line 54

def strip_html(input)
  input.to_s.gsub(/<script.*?<\/script>/, '').gsub(/<.*?>/, '')
end

#strip_newlines(input) ⇒ Object

Remove all newlines from the string



59
60
61
# File 'lib/liquid/standardfilters.rb', line 59

def strip_newlines(input)
  input.to_s.gsub(/\n/, '')
end

#times(input, operand) ⇒ Object

multiplication



201
202
203
# File 'lib/liquid/standardfilters.rb', line 201

def times(input, operand)
  to_number(input) * to_number(operand)
end

#truncate(input, length = 50, truncate_string = "...") ⇒ Object

Truncate a string down to x characters



39
40
41
42
43
44
# File 'lib/liquid/standardfilters.rb', line 39

def truncate(input, length = 50, truncate_string = "...")
  if input.nil? then return end
  l = length.to_i - truncate_string.length
  l = 0 if l < 0
  input.length > length.to_i ? input[0...l] + truncate_string : input
end

#truncatewords(input, words = 15, truncate_string = "...") ⇒ Object



46
47
48
49
50
51
52
# File 'lib/liquid/standardfilters.rb', line 46

def truncatewords(input, words = 15, truncate_string = "...")
  if input.nil? then return end
  wordlist = input.to_s.split
  l = words.to_i - 1
  l = 0 if l < 0
  wordlist.length > l ? wordlist[0..l].join(" ") + truncate_string : input
end

#upcase(input) ⇒ Object

convert a input string to UPCASE



19
20
21
# File 'lib/liquid/standardfilters.rb', line 19

def upcase(input)
  input.to_s.upcase
end