diff options
author | Jeff McCune <jeff@puppetlabs.com> | 2012-11-07 09:43:47 -0800 |
---|---|---|
committer | Jeff McCune <jeff@puppetlabs.com> | 2012-11-07 09:43:47 -0800 |
commit | 348f1300c028ca85ca8c772881b11c88c667d321 (patch) | |
tree | 58ca3bb825aed18dcbc50f90f15f5b57481490cd /lib/puppet/parser/functions | |
parent | 6f0c1e248ce1d5ab934b37c6633459ff521eca77 (diff) | |
parent | 2fc85d25d2cb1f46dcd7010f13c98213cc22bb4b (diff) | |
download | puppet-stdlib-348f1300c028ca85ca8c772881b11c88c667d321.tar.gz puppet-stdlib-348f1300c028ca85ca8c772881b11c88c667d321.tar.bz2 |
Merge branch 'add/3.x/joejulian-add_uriescape' into 3.x
* add/3.x/joejulian-add_uriescape:
Add function, uriescape, to URI.escape strings. Redmine #17459
Diffstat (limited to 'lib/puppet/parser/functions')
-rw-r--r-- | lib/puppet/parser/functions/uriescape.rb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/uriescape.rb b/lib/puppet/parser/functions/uriescape.rb new file mode 100644 index 0000000..67b93a6 --- /dev/null +++ b/lib/puppet/parser/functions/uriescape.rb @@ -0,0 +1,36 @@ +# +# uriescape.rb +# +require 'uri' + +module Puppet::Parser::Functions + newfunction(:uriescape, :type => :rvalue, :doc => <<-EOS + Urlencodes a string or array of strings. + Requires either a single string or an array as an input. + EOS + ) do |arguments| + + raise(Puppet::ParseError, "uriescape(): Wrong number of arguments " + + "given (#{arguments.size} for 1)") if arguments.size < 1 + + value = arguments[0] + klass = value.class + unsafe = ":/?#[]@!$&'()*+,;= " + + unless [Array, String].include?(klass) + raise(Puppet::ParseError, 'uriescape(): Requires either ' + + 'array or string to work with') + end + + if value.is_a?(Array) + # Numbers in Puppet are often string-encoded which is troublesome ... + result = value.collect { |i| i.is_a?(String) ? URI.escape(i,unsafe) : i } + else + result = URI.escape(value,unsafe) + end + + return result + end +end + +# vim: set ts=2 sw=2 et : |