Class: Puppet::Forge::Repository
- Includes:
- Errors
- Defined in:
- lib/puppet/forge/repository.rb
Overview
Repository
This class is a file for accessing remote repositories with modules.
Constant Summary collapse
- NET_HTTP_EXCEPTIONS =
List of Net::HTTP exceptions to catch
[ EOFError, Errno::ECONNABORTED, Errno::ECONNREFUSED, Errno::ECONNRESET, Errno::EINVAL, Errno::ETIMEDOUT, Net::HTTPBadResponse, Net::HTTPHeaderSyntaxError, Net::ProtocolError, SocketError, ]
Instance Attribute Summary collapse
- #cache ⇒ Object readonly
- #uri ⇒ Object readonly
Instance Method Summary collapse
-
#cache_key ⇒ Object
Return the cache key for this repository, this a hashed string based on the URI.
- #forge_authorization ⇒ Object
-
#get_http_object ⇒ Net::HTTP::Proxy
Return a Net::HTTP::Proxy object constructed from the settings provided accessing the repository.
- #get_request_object(path) ⇒ Object
-
#initialize(host, for_agent) ⇒ Repository
constructor
Instantiate a new repository instance rooted at the
url
. -
#make_http_request(path, io = nil) ⇒ Object
Return a Net::HTTPResponse read for this
path
. -
#read_response(request, io = nil) ⇒ Net::HTTPResponse
Return a Net::HTTPResponse read from this HTTPRequest
request
. -
#retrieve(release) ⇒ Object
Return the local file name containing the data downloaded from the repository at
release
(e.g. “myuser-mymodule”). -
#to_s ⇒ Object
Return the URI string for this repository.
Constructor Details
#initialize(host, for_agent) ⇒ Repository
Instantiate a new repository instance rooted at the url
. The library will report for_agent
in the User-Agent to the repository.
41 42 43 44 45 46 |
# File 'lib/puppet/forge/repository.rb', line 41 def initialize(host, for_agent) @host = host @agent = for_agent @cache = Cache.new(self) @uri = URI.parse(host) end |
Instance Attribute Details
#cache ⇒ Object (readonly)
19 20 21 |
# File 'lib/puppet/forge/repository.rb', line 19 def cache @cache end |
Instance Method Details
#cache_key ⇒ Object
Return the cache key for this repository, this a hashed string based on the URI.
165 166 167 168 169 170 |
# File 'lib/puppet/forge/repository.rb', line 165 def cache_key return @cache_key ||= [ @host.to_s.gsub(/[^[:alnum:]]+/, '_').sub(/_$/, ''), Digest::SHA1.hexdigest(@host.to_s) ].join('-').freeze end |
#forge_authorization ⇒ Object
55 56 57 58 59 60 61 |
# File 'lib/puppet/forge/repository.rb', line 55 def if Puppet[:forge_authorization] Puppet[:forge_authorization] elsif Puppet.features.pe_license? PELicense.load_license_key. end end |
#get_http_object ⇒ Net::HTTP::Proxy
Return a Net::HTTP::Proxy object constructed from the settings provided accessing the repository.
This method optionally configures SSL correctly if the URI scheme is ‘https’, including setting up the root certificate store so remote server SSL certificates can be validated.
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/puppet/forge/repository.rb', line 135 def get_http_object proxy_class = Net::HTTP::Proxy(Puppet::Util::HttpProxy.http_proxy_host, Puppet::Util::HttpProxy.http_proxy_port, Puppet::Util::HttpProxy.http_proxy_user, Puppet::Util::HttpProxy.http_proxy_password) proxy = proxy_class.new(@uri.host, @uri.port) if @uri.scheme == 'https' cert_store = OpenSSL::X509::Store.new cert_store.set_default_paths proxy.use_ssl = true proxy.verify_mode = OpenSSL::SSL::VERIFY_PEER proxy.cert_store = cert_store end proxy end |
#get_request_object(path) ⇒ Object
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/puppet/forge/repository.rb', line 63 def get_request_object(path) headers = { "User-Agent" => user_agent, } if Puppet.features.zlib? && Puppet[:zlib] && RUBY_VERSION >= "1.9" headers = headers.merge({ "Accept-Encoding" => "gzip;q=1.0,deflate;q=0.6,identity;q=0.3", }) end if headers = headers.merge({"Authorization" => }) end request = Net::HTTP::Get.new(URI.escape(path), headers) unless @uri.user.nil? || @uri.password.nil? || request.basic_auth(@uri.user, @uri.password) end return request end |
#make_http_request(path, io = nil) ⇒ Object
Return a Net::HTTPResponse read for this path
.
49 50 51 52 53 |
# File 'lib/puppet/forge/repository.rb', line 49 def make_http_request(path, io = nil) Puppet.debug "HTTP GET #{@host}#{path}" request = get_request_object(path) return read_response(request, io) end |
#read_response(request, io = nil) ⇒ Net::HTTPResponse
Return a Net::HTTPResponse read from this HTTPRequest request
.
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/puppet/forge/repository.rb', line 95 def read_response(request, io = nil) http_object = get_http_object http_object.start do |http| response = http.request(request) if Puppet.features.zlib? && Puppet[:zlib] if response && response.key?("content-encoding") case response["content-encoding"] when "gzip" response.body = Zlib::GzipReader.new(StringIO.new(response.read_body), :encoding => "ASCII-8BIT").read response.delete("content-encoding") when "deflate" response.body = Zlib::Inflate.inflate(response.read_body) response.delete("content-encoding") end end end io.write(response.body) if io.respond_to? :write response end rescue *NET_HTTP_EXCEPTIONS => e raise CommunicationError.new(:uri => @uri.to_s, :original => e) rescue OpenSSL::SSL::SSLError => e if e. =~ /certificate verify failed/ raise SSLVerifyError.new(:uri => @uri.to_s, :original => e) else raise e end end |
#retrieve(release) ⇒ Object
Return the local file name containing the data downloaded from the repository at release
(e.g. “myuser-mymodule”).
153 154 155 156 |
# File 'lib/puppet/forge/repository.rb', line 153 def retrieve(release) path = @host.chomp('/') + release return cache.retrieve(path) end |
#to_s ⇒ Object
Return the URI string for this repository.
159 160 161 |
# File 'lib/puppet/forge/repository.rb', line 159 def to_s "#<#{self.class} #{@host}>" end |