Sha256: 43e7d2c3cd3f013dc08f6a4fb77d8463d9757b5e77d4fb07153398fc1c25ac59

Contents?: true

Size: 1.65 KB

Versions: 92

Compression:

Stored size: 1.65 KB

Contents

require 'uri'

require 'puppet/forge'

class Puppet::Forge
  # = Cache
  #
  # Provides methods for reading files from local cache, filesystem or network.
  class Cache

    # Instantiate new cache for the +repository+ instance.
    def initialize(repository, options = {})
      @repository = repository
      @options = options
    end

    # Return filename retrieved from +uri+ instance. Will download this file and
    # cache it if needed.
    #
    # TODO: Add checksum support.
    # TODO: Add error checking.
    def retrieve(url)
      (path + File.basename(url.to_s)).tap do |cached_file|
        uri = url.is_a?(::URI) ? url : ::URI.parse(url)
        unless cached_file.file?
          if uri.scheme == 'file'
            # CGI.unescape butchers Uris that are escaped properly
            FileUtils.cp(Puppet::Util.uri_unescape(uri.path), cached_file)
          else
            # TODO: Handle HTTPS; probably should use repository.contact
            data = read_retrieve(uri)
            cached_file.open('wb') { |f| f.write data }
          end
        end
      end
    end

    # Return contents of file at the given URI's +uri+.
    def read_retrieve(uri)
      return uri.read
    end

    # Return Pathname for repository's cache directory, create it if needed.
    def path
      (self.class.base_path + @repository.cache_key).tap{ |o| o.mkpath }
    end

    # Return the base Pathname for all the caches.
    def self.base_path
      (Pathname(Puppet.settings[:module_working_dir]) + 'cache').tap do |o|
        o.mkpath unless o.exist?
      end
    end

    # Clean out all the caches.
    def self.clean
      base_path.rmtree if base_path.exist?
    end
  end
end

Version data entries

92 entries across 92 versions & 1 rubygems

Version Path
puppet-6.29.0 lib/puppet/forge/cache.rb
puppet-6.29.0-x86-mingw32 lib/puppet/forge/cache.rb
puppet-6.29.0-x64-mingw32 lib/puppet/forge/cache.rb
puppet-6.29.0-universal-darwin lib/puppet/forge/cache.rb
puppet-6.28.0 lib/puppet/forge/cache.rb
puppet-6.28.0-x86-mingw32 lib/puppet/forge/cache.rb
puppet-6.28.0-x64-mingw32 lib/puppet/forge/cache.rb
puppet-6.28.0-universal-darwin lib/puppet/forge/cache.rb
puppet-6.27.0 lib/puppet/forge/cache.rb
puppet-6.27.0-x86-mingw32 lib/puppet/forge/cache.rb
puppet-6.27.0-x64-mingw32 lib/puppet/forge/cache.rb
puppet-6.27.0-universal-darwin lib/puppet/forge/cache.rb
puppet-6.26.0 lib/puppet/forge/cache.rb
puppet-6.26.0-x86-mingw32 lib/puppet/forge/cache.rb
puppet-6.26.0-x64-mingw32 lib/puppet/forge/cache.rb
puppet-6.26.0-universal-darwin lib/puppet/forge/cache.rb
puppet-6.25.1 lib/puppet/forge/cache.rb
puppet-6.25.1-x86-mingw32 lib/puppet/forge/cache.rb
puppet-6.25.1-x64-mingw32 lib/puppet/forge/cache.rb
puppet-6.25.1-universal-darwin lib/puppet/forge/cache.rb