Sha256: 6ccf1192330c826caec331fe5fe1dcace57438c290c7e5fdb62c97e4ff200be1

Contents?: true

Size: 1.93 KB

Versions: 50

Compression:

Stored size: 1.93 KB

Contents

require "chef/application"
require "chef/chef_fs/path_utils"
require "chef/http/simple"
require "chef/json_compat"

class Chef
  class ConfigFetcher

    attr_reader :config_location

    def initialize(config_location)
      @config_location = config_location
    end

    def expanded_path
      if config_location.nil? || remote_config?
        config_location
      else
        File.expand_path(config_location)
      end
    end

    def fetch_json
      config_data = read_config
      begin
        Chef::JSONCompat.from_json(config_data)
      rescue Chef::Exceptions::JSON::ParseError => error
        Chef::Application.fatal!("Could not parse the provided JSON file (#{config_location}): " + error.message, Chef::Exceptions::DeprecatedExitCode.new)
      end
    end

    def read_config
      if remote_config?
        fetch_remote_config
      else
        read_local_config
      end
    end

    def fetch_remote_config
      http.get("")
    rescue SocketError, SystemCallError, Net::HTTPServerException => error
      Chef::Application.fatal!("Cannot fetch config '#{config_location}': '#{error.class}: #{error.message}", Chef::Exceptions::DeprecatedExitCode.new)
    end

    def read_local_config
      ::File.read(config_location)
    rescue Errno::ENOENT
      Chef::Application.fatal!("Cannot load configuration from #{config_location}", Chef::Exceptions::DeprecatedExitCode.new)
    rescue Errno::EACCES
      Chef::Application.fatal!("Permissions are incorrect on #{config_location}. Please chmod a+r #{config_location}", Chef::Exceptions::DeprecatedExitCode.new)
    end

    def config_missing?
      return false if remote_config?

      # Check if the config file exists
      Pathname.new(config_location).realpath.to_s
      false
    rescue Errno::ENOENT
      return true
    end

    def http
      Chef::HTTP::Simple.new(config_location)
    end

    def remote_config?
      !!(config_location =~ %r{^(http|https)://})
    end
  end
end

Version data entries

50 entries across 50 versions & 1 rubygems

Version Path
chef-12.22.5 lib/chef/config_fetcher.rb
chef-12.22.5-universal-mingw32 lib/chef/config_fetcher.rb
chef-12.22.3 lib/chef/config_fetcher.rb
chef-12.22.3-universal-mingw32 lib/chef/config_fetcher.rb
chef-12.21.31 lib/chef/config_fetcher.rb
chef-12.21.31-universal-mingw32 lib/chef/config_fetcher.rb
chef-12.21.26 lib/chef/config_fetcher.rb
chef-12.21.26-universal-mingw32 lib/chef/config_fetcher.rb
chef-12.21.20-universal-mingw32 lib/chef/config_fetcher.rb
chef-12.21.20 lib/chef/config_fetcher.rb
chef-12.21.14-universal-mingw32 lib/chef/config_fetcher.rb
chef-12.21.14 lib/chef/config_fetcher.rb
chef-12.21.12-universal-mingw32 lib/chef/config_fetcher.rb
chef-12.21.12 lib/chef/config_fetcher.rb
chef-12.21.10 lib/chef/config_fetcher.rb
chef-12.21.10-universal-mingw32 lib/chef/config_fetcher.rb
chef-12.21.4 lib/chef/config_fetcher.rb
chef-12.21.4-universal-mingw32 lib/chef/config_fetcher.rb
chef-12.21.1-universal-mingw32 lib/chef/config_fetcher.rb
chef-12.21.1 lib/chef/config_fetcher.rb