Sha256: ec320bfc23ac0c3451f52902ce8691924e79818536e78cd6f6040be3346eb8dc

Contents?: true

Size: 1.75 KB

Versions: 17

Compression:

Stored size: 1.75 KB

Contents

require 'digest/sha1'
require 'json'
require 'net/ssh'

module Fauxhai
  class Fetcher
    def initialize(options = {}, &override_attributes)
      @options = options

      if !force_cache_miss? && cached?
        @data = cache
      else
        Net::SSH.start(host, user, @options) do |ssh|
          @data = JSON.parse(ssh.exec!('ohai'))
        end

        # cache this data so we do not have to SSH again
        File.open(cache_file, 'w+'){ |f| f.write(@data.to_json) }
      end

      yield(@data) if block_given?

      if defined?(ChefSpec)
        data = @data
        ::ChefSpec::ChefRunner.send :define_method, :fake_ohai do |ohai|
          data.each_pair do |attribute,value|
            ohai[attribute] = value
          end
        end
      end

      @data
    end

    def cache
      @cache ||= JSON.parse(File.read(cache_file))
    end

    def cached?
      File.exists?(cache_file)
    end

    def cache_key
      Digest::SHA2.hexdigest("#{user}@#{host}")
    end

    def cache_file
      File.expand_path( File.join(Fauxhai.root, 'tmp', cache_key) )
    end

    def force_cache_miss?
      @force_cache_miss ||= @options.delete(:force_cache_miss) || false
    end

    # Return the given `@data` attribute as a Ruby hash instead of a JSON object
    #
    # @return [Hash] the `@data` represented as a Ruby hash
    def to_hash(*args)
      @data.to_hash(*args)
    end

    def to_s
      "#<Fauxhai::Fetcher @host=#{host}, @options=#{@options}>"
    end

    private
    def host
      @host ||= begin
        raise ArgumentError, ':host is a required option for Fauxhai.fetch' unless @options[:host]
        @options.delete(:host)
      end
    end

    def user
      @user ||= (@options.delete(:user) || ENV['USER'] || ENV['USERNAME']).chomp
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
fauxhai-3.1.0 lib/fauxhai/fetcher.rb
fauxhai-3.0.1 lib/fauxhai/fetcher.rb
fauxhai-3.0.0 lib/fauxhai/fetcher.rb
fauxhai-2.3.0 lib/fauxhai/fetcher.rb
fauxhai-2.2.0 lib/fauxhai/fetcher.rb
fauxhai-2.1.2 lib/fauxhai/fetcher.rb
fauxhai-2.1.1 lib/fauxhai/fetcher.rb
fauxhai-2.1.0 lib/fauxhai/fetcher.rb
fauxhai-2.0.1 lib/fauxhai/fetcher.rb
fauxhai-2.0.0 lib/fauxhai/fetcher.rb
fauxhai-1.1.1 lib/fauxhai/fetcher.rb
fauxhai-1.1.0 lib/fauxhai/fetcher.rb
fauxhai-1.0.0 lib/fauxhai/fetcher.rb
fauxhai-0.1.1 lib/fauxhai/fetcher.rb
fauxhai-0.0.4 lib/fauxhai/fetcher.rb
fauxhai-0.0.3 lib/fauxhai/fetcher.rb
fauxhai-0.0.1 lib/fauxhai/fetcher.rb