summaryrefslogtreecommitdiff
path: root/lib/puppet/parser/functions/uriescape.rb
diff options
context:
space:
mode:
authorJoe Julian <me@joejulian.name>2012-11-06 16:17:57 -0800
committerJeff McCune <jeff@puppetlabs.com>2012-11-07 09:36:54 -0800
commitfd52b8d88a943aef529adfc06cf709ac35509dc5 (patch)
treeb4dcffe82364a1cd8643afd9782737fec235660f /lib/puppet/parser/functions/uriescape.rb
parent65d9b10876420176715b4a9a5ac3e9cedf881c1d (diff)
Add function, uriescape, to URI.escape strings. Redmine #17459
Diffstat (limited to 'lib/puppet/parser/functions/uriescape.rb')
-rw-r--r--lib/puppet/parser/functions/uriescape.rb36
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 :