lib/chef-cli/policyfile/source_uri.rb
# # Copyright:: Copyright (c) 2016 Chef Software Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # module Addressable autoload :URI, "addressable/uri" end require_relative "../exceptions" module ChefCLI module Policyfile class SourceURI < Addressable::URI class << self # Returns a URI object based on the parsed string. # # @param [String, Addressable::URI, #to_str] uri The URI # string to parse. No parsing is performed if the object # is already an <code>Addressable::URI</code>. # # @raise [ChefCLI::InvalidPolicyfileSourceURI] # # @return [ChefCLI::Policyfile::SourceURI] def parse(uri) parsed_uri = super(uri) parsed_uri.send(:validate) parsed_uri rescue TypeError, ArgumentError => ex raise ChefCLI::InvalidPolicyfileSourceURI.new(uri, ex) end end VALID_SCHEMES = %w{ https http }.freeze # @raise [ChefCLI::InvalidPolicyfileSourceURI] def validate super unless VALID_SCHEMES.include?(scheme) raise InvalidPolicyfileSourceURI.new(self, "invalid URI scheme '#{scheme}'. Valid schemes: #{VALID_SCHEMES}") end rescue Addressable::URI::InvalidURIError => ex raise InvalidPolicyfileSourceURI.new(self, ex) end end end end