]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/stdlib/lib/puppet/parser/functions/downcase.rb
upgrade to stdlib 4.6.1
[dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / downcase.rb
1 #
2 #  downcase.rb
3 #
4
5 module Puppet::Parser::Functions
6   newfunction(:downcase, :type => :rvalue, :doc => <<-EOS
7 Converts the case of a string or all strings in an array to lower case.
8     EOS
9   ) do |arguments|
10
11     raise(Puppet::ParseError, "downcase(): Wrong number of arguments " +
12       "given (#{arguments.size} for 1)") if arguments.size < 1
13
14     value = arguments[0]
15
16     unless value.is_a?(Array) || value.is_a?(String)
17       raise(Puppet::ParseError, 'downcase(): Requires either ' +
18         'array or string to work with')
19     end
20
21     if value.is_a?(Array)
22       # Numbers in Puppet are often string-encoded which is troublesome ...
23       result = value.collect { |i| i.is_a?(String) ? i.downcase : i }
24     else
25       result = value.downcase
26     end
27
28     return result
29   end
30 end
31
32 # vim: set ts=2 sw=2 et :