Class: Bundler::Fetcher
- Inherits:
-
Object
- Object
- Bundler::Fetcher
- Defined in:
- lib/bundler/fetcher.rb,
lib/bundler/fetcher/base.rb,
lib/bundler/fetcher/index.rb,
lib/bundler/fetcher/dependency.rb,
lib/bundler/fetcher/downloader.rb,
lib/bundler/fetcher/compact_index.rb
Overview
Handles all the fetching with the rubygems server
Defined Under Namespace
Classes: AuthenticationRequiredError, BadAuthenticationError, Base, CertificateFailureError, CompactIndex, Dependency, Downloader, FallbackError, Index, NetworkDownError, SSLError, TooManyRequestsError
Constant Summary collapse
- NET_ERRORS =
Exceptions classes that should bypass retry attempts. If your password didn’t work the first time, it’s not going to the third time.
[:HTTPBadGateway, :HTTPBadRequest, :HTTPFailedDependency, :HTTPForbidden, :HTTPInsufficientStorage, :HTTPMethodNotAllowed, :HTTPMovedPermanently, :HTTPNoContent, :HTTPNotFound, :HTTPNotImplemented, :HTTPPreconditionFailed, :HTTPRequestEntityTooLarge, :HTTPRequestURITooLong, :HTTPUnauthorized, :HTTPUnprocessableEntity, :HTTPUnsupportedMediaType, :HTTPVersionNotSupported].freeze
- FAIL_ERRORS =
begin fail_errors = [AuthenticationRequiredError, BadAuthenticationError, FallbackError] fail_errors << Gem::Requirement::BadRequirementError fail_errors.concat(NET_ERRORS.map {|e| Net.const_get(e) }) end.freeze
Class Attribute Summary collapse
-
.api_timeout ⇒ Object
Returns the value of attribute api_timeout.
-
.disable_endpoint ⇒ Object
Returns the value of attribute disable_endpoint.
-
.max_retries ⇒ Object
Returns the value of attribute max_retries.
-
.redirect_limit ⇒ Object
Returns the value of attribute redirect_limit.
Instance Method Summary collapse
-
#fetch_spec(spec) ⇒ Object
fetch a gem specification.
- #fetchers ⇒ Object
- #http_proxy ⇒ Object
-
#initialize(remote) ⇒ Fetcher
constructor
A new instance of Fetcher.
- #inspect ⇒ Object
-
#specs(gem_names, source) ⇒ Object
return the specs in the bundler format as an index.
-
#specs_with_retry(gem_names, source) ⇒ Object
return the specs in the bundler format as an index with retries.
- #uri ⇒ Object
- #use_api ⇒ Object
- #user_agent ⇒ Object
Constructor Details
#initialize(remote) ⇒ Fetcher
Returns a new instance of Fetcher.
86 87 88 89 90 91 |
# File 'lib/bundler/fetcher.rb', line 86 def initialize(remote) @remote = remote Socket.do_not_reverse_lookup = true connection # create persistent connection end |
Class Attribute Details
.api_timeout ⇒ Object
Returns the value of attribute api_timeout.
79 80 81 |
# File 'lib/bundler/fetcher.rb', line 79 def api_timeout @api_timeout end |
.disable_endpoint ⇒ Object
Returns the value of attribute disable_endpoint.
79 80 81 |
# File 'lib/bundler/fetcher.rb', line 79 def disable_endpoint @disable_endpoint end |
.max_retries ⇒ Object
Returns the value of attribute max_retries.
79 80 81 |
# File 'lib/bundler/fetcher.rb', line 79 def max_retries @max_retries end |
.redirect_limit ⇒ Object
Returns the value of attribute redirect_limit.
79 80 81 |
# File 'lib/bundler/fetcher.rb', line 79 def redirect_limit @redirect_limit end |
Instance Method Details
#fetch_spec(spec) ⇒ Object
fetch a gem specification
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/bundler/fetcher.rb', line 98 def fetch_spec(spec) spec -= [nil, "ruby", ""] spec_file_name = "#{spec.join "-"}.gemspec" uri = Bundler::URI.parse("#{remote_uri}#{Gem::MARSHAL_SPEC_DIR}#{spec_file_name}.rz") if uri.scheme == "file" path = Bundler.rubygems.correct_for_windows_path(uri.path) Bundler.load_marshal Bundler.rubygems.inflate(Gem.read_binary(path)) elsif cached_spec_path = gemspec_cached_path(spec_file_name) Bundler.load_gemspec(cached_spec_path) else Bundler.load_marshal Bundler.rubygems.inflate(downloader.fetch(uri).body) end rescue MarshalError raise HTTPError, "Gemspec #{spec} contained invalid data.\n" \ "Your network or your gem server is probably having issues right now." end |
#fetchers ⇒ Object
204 205 206 |
# File 'lib/bundler/fetcher.rb', line 204 def fetchers @fetchers ||= FETCHERS.map {|f| f.new(downloader, @remote, uri) } end |
#http_proxy ⇒ Object
208 209 210 211 |
# File 'lib/bundler/fetcher.rb', line 208 def http_proxy return unless uri = connection.proxy_uri uri.to_s end |
#inspect ⇒ Object
213 214 215 |
# File 'lib/bundler/fetcher.rb', line 213 def inspect "#<#{self.class}:0x#{object_id} uri=#{uri}>" end |
#specs(gem_names, source) ⇒ Object
return the specs in the bundler format as an index
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/bundler/fetcher.rb', line 124 def specs(gem_names, source) index = Bundler::Index.new if Bundler::Fetcher.disable_endpoint @use_api = false specs = fetchers.last.specs(gem_names) else specs = [] fetchers.shift until fetchers.first.available? || fetchers.empty? fetchers.dup.each do |f| break unless f.api_fetcher? && !gem_names || !specs = f.specs(gem_names) fetchers.delete(f) end @use_api = false if fetchers.none?(&:api_fetcher?) end specs.each do |name, version, platform, dependencies, | spec = if dependencies EndpointSpecification.new(name, version, platform, dependencies, ) else RemoteSpecification.new(name, version, platform, self) end spec.source = source spec.remote = @remote index << spec end index rescue CertificateFailureError Bundler.ui.info "" if gem_names && use_api # newline after dots raise end |
#specs_with_retry(gem_names, source) ⇒ Object
return the specs in the bundler format as an index with retries
117 118 119 120 121 |
# File 'lib/bundler/fetcher.rb', line 117 def specs_with_retry(gem_names, source) Bundler::Retry.new("fetcher", FAIL_ERRORS).attempts do specs(gem_names, source) end end |
#uri ⇒ Object
93 94 95 |
# File 'lib/bundler/fetcher.rb', line 93 def uri @remote.anonymized_uri end |
#use_api ⇒ Object
157 158 159 160 161 162 163 164 165 166 167 |
# File 'lib/bundler/fetcher.rb', line 157 def use_api return @use_api if defined?(@use_api) fetchers.shift until fetchers.first.available? @use_api = if remote_uri.scheme == "file" || Bundler::Fetcher.disable_endpoint false else fetchers.first.api_fetcher? end end |
#user_agent ⇒ Object
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
# File 'lib/bundler/fetcher.rb', line 169 def user_agent @user_agent ||= begin ruby = Bundler::RubyVersion.system agent = String.new("bundler/#{Bundler::VERSION}") agent << " rubygems/#{Gem::VERSION}" agent << " ruby/#{ruby.versions_string(ruby.versions)}" agent << " (#{ruby.host})" agent << " command/#{ARGV.first}" if ruby.engine != "ruby" # engine_version raises on unknown engines engine_version = begin ruby.engine_versions rescue RuntimeError "???" end agent << " #{ruby.engine}/#{ruby.versions_string(engine_version)}" end agent << " options/#{Bundler.settings.all.join(",")}" agent << " ci/#{cis.join(",")}" if cis.any? # add a random ID so we can consolidate runs server-side agent << " " << SecureRandom.hex(8) # add any user agent strings set in the config extra_ua = Bundler.settings[:user_agent] agent << " " << extra_ua if extra_ua agent end end |