Created
May 24, 2013 14:43
-
-
Save fiddyspence/5644024 to your computer and use it in GitHub Desktop.
Will you just look at that!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Puppet::Parser::Functions | |
newfunction(:base64, :type => :rvalue, :doc => <<-'ENDHEREDOC') do |args| | |
ENDHEREDOC | |
require 'base64' | |
raise Puppet::ParseError, ("base64(): Wrong number of arguments (#{args.length}; must be = 2)") unless args.length == 2 | |
actions = ['encode','decode'] | |
unless actions.include?(args[0]) | |
raise Puppet::ParseError, ("base64(): the first argument must be one of 'encode' or 'decode'") | |
end | |
unless args[1].is_a?(String) | |
raise Puppet::ParseError, ("base64(): the second argument must be a string to base64") | |
end | |
case args[0] | |
when 'encode' | |
result = Base64.encode64(args[1]) | |
when 'decode' | |
result = Base64.decode64(args[1]) | |
end | |
return result | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment