Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / functions / validate_slength.rb
1 #  Validate that a passed string has length less/equal with the passed value
2 Puppet::Functions.create_function(:validate_slength) do
3   # @param scope
4   #   The main value that will be passed to the method
5   #
6   # @param args
7   #   Any additional values that are to be passed to the method
8   #
9   # @return [Boolean] `true` or `false`
10   #   A boolean value returned from the called function.
11   dispatch :deprecation_gen do
12     param 'Any', :scope
13     repeated_param 'Any', :args
14   end
15   # Workaround PUP-4438 (fixed: https://github.com/puppetlabs/puppet/commit/e01c4dc924cd963ff6630008a5200fc6a2023b08#diff-
16   #   c937cc584953271bb3d3b3c2cb141790R221) to support puppet < 4.1.0 and puppet < 3.8.1.
17   def call(scope, *args)
18     manipulated_args = [scope] + args
19     self.class.dispatcher.dispatch(self, scope, manipulated_args)
20   end
21
22   def deprecation_gen(scope, *args)
23     call_function('deprecation', 'validate_slength', 'This method is deprecated, please use the stdlib validate_legacy function,
24                     with String[]. There is further documentation for validate_legacy function in the README.')
25     scope.send('function_validate_slength', args)
26   end
27 end