summaryrefslogtreecommitdiff
path: root/lib/puppet/parser
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
commit70f4a0e9ed6925670ea3767eed0a3c4b3521c28d (patch)
tree375ac4d008efbe141c78a268758a7408022a2661 /lib/puppet/parser
parentcc670fb3b1294a348e9afa03b75cbed8eb08ca36 (diff)
Add function, uriescape, to URI.escape strings. Redmine #17459
Diffstat (limited to 'lib/puppet/parser')
-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 :