| Current File : //opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/network/http/api/indirection_type.rb |
class Puppet::Network::HTTP::API::IndirectionType
INDIRECTION_TYPE_MAP = {
"certificate" => :ca,
"certificate_request" => :ca,
"certificate_revocation_list" => :ca,
"certificate_status" => :ca
}
def self.master_url_prefix
"#{Puppet::Network::HTTP::MASTER_URL_PREFIX}/v3"
end
def self.ca_url_prefix
"#{Puppet::Network::HTTP::CA_URL_PREFIX}/v1"
end
def self.type_for(indirection)
INDIRECTION_TYPE_MAP[indirection] || :master
end
def self.url_prefix_for(indirection_name)
case type_for(indirection_name)
when :ca
ca_url_prefix
when :master
master_url_prefix
else
raise ArgumentError, _("Not a valid indirection type")
end
end
end