
The os_database_connection function is an helper used to build database connection URI from various parameters. Example: os_database_connection({ dialect => 'mysql', host => '127.0.0.1', port => '3306', username => 'guest', password => 's3cr3t', database => 'test', charset => 'utf-8' }) Result: mysql://guest:s3cr3t@127.0.0.1:3306/test?charset=utf-8 Change-Id: Id0bde33891112e36f13d3f8fdf0ff89820c09c01
73 lines
1.9 KiB
Ruby
73 lines
1.9 KiB
Ruby
require 'puppet/parser/functions'
|
|
|
|
Puppet::Parser::Functions.newfunction(:os_database_connection,
|
|
:type => :rvalue,
|
|
:doc => <<-EOS
|
|
This function builds a os_database_connection string from various parameters.
|
|
EOS
|
|
) do |arguments|
|
|
|
|
require 'uri'
|
|
|
|
if (arguments.size != 1) then
|
|
raise(Puppet::ParseError, "os_database_connection(): Wrong number of arguments " +
|
|
"given (#{arguments.size} for 1)")
|
|
end
|
|
|
|
v = arguments[0]
|
|
klass = v.class
|
|
|
|
unless klass == Hash
|
|
raise(Puppet::ParseError, "os_database_connection(): Requires an hash, got #{klass}")
|
|
end
|
|
|
|
v.keys.each do |key|
|
|
unless (v[key].class == String) or (v[key] == :undef)
|
|
raise(Puppet::ParseError, "os_database_connection(): #{key} should be a String")
|
|
end
|
|
end
|
|
|
|
parts = {}
|
|
|
|
unless v.include?('dialect')
|
|
raise(Puppet::ParseError, 'os_database_connection(): dialect is required')
|
|
end
|
|
|
|
if v.include?('host')
|
|
parts[:host] = v['host']
|
|
end
|
|
|
|
unless v.include?('database')
|
|
raise(Puppet::ParseError, 'os_database_connection(): database is required')
|
|
end
|
|
|
|
if v.include?('port')
|
|
if v.include?('host')
|
|
parts[:port] = v['port'].to_i
|
|
else
|
|
raise(Puppet::ParseError, 'os_database_connection(): host is required with port')
|
|
end
|
|
end
|
|
|
|
if v.include?('username') and (v['username'] != :undef) and (v['username'].to_s != '')
|
|
parts[:userinfo] = URI.escape(v['username'])
|
|
if v.include?('password') and (v['password'] != :undef) and (v['password'].to_s != '')
|
|
parts[:userinfo] += ":#{URI.escape(v['password'])}"
|
|
end
|
|
end
|
|
|
|
if v.include?('charset')
|
|
parts[:query] = "charset=#{v['charset']}"
|
|
end
|
|
|
|
parts[:scheme] = v['dialect']
|
|
|
|
if v.include?('host')
|
|
parts[:path] = "/#{v['database']}"
|
|
else
|
|
parts[:path] = "///#{v['database']}"
|
|
end
|
|
|
|
URI::Generic.build(parts).to_s
|
|
end
|