Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / uriescape.rb
1 require 'uri'
2 #
3 #  uriescape.rb
4 #  Please note: This function is an implementation of a Ruby class and as such may not be entirely UTF8 compatible. To ensure compatibility please use this function with Ruby 2.4.0 or greater - https://bugs.ruby-lang.org/issues/10085.
5 #
6 module Puppet::Parser::Functions
7   newfunction(:uriescape, :type => :rvalue, :doc => <<-DOC
8     Urlencodes a string or array of strings.
9     Requires either a single string or an array as an input.
10     DOC
11              ) do |arguments|
12
13     raise(Puppet::ParseError, "uriescape(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.empty?
14
15     value = arguments[0]
16
17     unless value.is_a?(Array) || value.is_a?(String)
18       raise(Puppet::ParseError, 'uriescape(): Requires either array or string to work with')
19     end
20
21     result = if value.is_a?(Array)
22                # Numbers in Puppet are often string-encoded which is troublesome ...
23                value.map { |i| i.is_a?(String) ? URI.escape(i) : i }
24              else
25                URI.escape(value)
26              end
27
28     return result
29   end
30 end
31
32 # vim: set ts=2 sw=2 et :