Class: Vagrant::Action::Builtin::BoxAdd
- Inherits:
-
Object
- Object
- Vagrant::Action::Builtin::BoxAdd
- Defined in:
- lib/vagrant/action/builtin/box_add.rb
Overview
This middleware will download a remote box and add it to the given box collection.
Constant Summary collapse
- METADATA_SIZE_LIMIT =
This is the size in bytes that if a file exceeds, is considered to NOT be metadata.
20971520
- RESUME_DELAY =
This is the amount of time to "resume" downloads if a partial box file already exists.
24 * 60 * 60
Instance Method Summary collapse
-
#add_direct(urls, env) ⇒ Object
Adds a box file directly (no metadata component, versioning, etc.).
-
#add_from_metadata(url, env, expanded) ⇒ Object
Adds a box given that the URL is a metadata document.
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ BoxAdd
constructor
A new instance of BoxAdd.
Constructor Details
#initialize(app, env) ⇒ BoxAdd
Returns a new instance of BoxAdd.
25 26 27 28 29 |
# File 'lib/vagrant/action/builtin/box_add.rb', line 25 def initialize(app, env) @app = app @logger = Log4r::Logger.new("vagrant::action::builtin::box_add") @parser = URI::RFC2396_Parser.new end |
Instance Method Details
#add_direct(urls, env) ⇒ Object
Adds a box file directly (no metadata component, versioning, etc.)
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/vagrant/action/builtin/box_add.rb', line 132 def add_direct(urls, env) env[:ui].output(I18n.t("vagrant.box_adding_direct")) name = env[:box_name] if !name || name == "" raise Errors::BoxAddNameRequired end if env[:box_version] raise Errors::BoxAddDirectVersion end provider = env[:box_provider] provider = Array(provider) if provider box_add( urls, name, "0", provider, nil, env, checksum: env[:box_checksum], checksum_type: env[:box_checksum_type], ) end |
#add_from_metadata(url, env, expanded) ⇒ Object
Adds a box given that the URL is a metadata document.
168 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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 |
# File 'lib/vagrant/action/builtin/box_add.rb', line 168 def (url, env, ) original_url = env[:box_url] provider = env[:box_provider] provider = Array(provider) if provider version = env[:box_version] authenticated_url = url if url.is_a?(Array) # We have both a normal URL and "authenticated" URL. Split # them up. authenticated_url = url[1] url = url[0] end display_original_url = Util::CredentialScrubber.scrub(Array(original_url).first) display_url = Util::CredentialScrubber.scrub(url) env[:ui].output(I18n.t( "vagrant.box_loading_metadata", name: display_original_url)) if original_url != url env[:ui].detail(I18n.t( "vagrant.box_expanding_url", url: display_url)) end = nil begin = download( authenticated_url, env, json: true, ui: false) return if @download_interrupted File.open() do |f| = BoxMetadata.new(f) end rescue Errors::DownloaderError => e raise if ! raise Errors::BoxAddShortNotFound, error: e.extra_data[:message], name: display_original_url, url: display_url ensure .delete if && .file? end if env[:box_name] && .name != env[:box_name] raise Errors::BoxAddNameMismatch, actual_name: .name, requested_name: env[:box_name] end = .version( version || ">= 0", provider: provider) if ! if provider && !.version(">= 0", provider: provider) raise Errors::BoxAddNoMatchingProvider, name: .name, requested: provider, url: display_url else raise Errors::BoxAddNoMatchingVersion, constraints: version || ">= 0", name: .name, url: display_url, versions: .versions.join(", ") end end = nil if provider # If a provider was specified, make sure we get that specific # version. provider.each do |p| = .provider(p) break if end elsif .providers.length == 1 # If we have only one provider in the metadata, just use that # provider. = .provider( .providers.first) else providers = .providers.sort choice = 0 = providers.map do |p| choice += 1 "#{choice}) #{p}" end.join("\n") # We have more than one provider, ask the user what they want choice = env[:ui].ask(I18n.t( "vagrant.box_add_choose_provider", options: ) + " ", prefix: false) choice = choice.to_i if choice while !choice || choice <= 0 || choice > providers.length choice = env[:ui].ask(I18n.t( "vagrant.box_add_choose_provider_again") + " ", prefix: false) choice = choice.to_i if choice end = .provider( providers[choice-1]) end provider_url = .url if provider_url != authenticated_url # Authenticate the provider URL since we're using auth hook_env = env[:hook].call(:authenticate_box_url, box_urls: [provider_url]) authed_urls = hook_env[:box_urls] if !authed_urls || authed_urls.length != 1 raise "Bad box authentication hook, did not generate proper results." end provider_url = authed_urls[0] end box_add( [[provider_url, .url]], .name, .version, .name, url, env, checksum: .checksum, checksum_type: .checksum_type, ) end |
#call(env) ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 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/vagrant/action/builtin/box_add.rb', line 31 def call(env) @download_interrupted = false unless env[:box_name].nil? begin if URI.parse(env[:box_name]).kind_of?(URI::HTTP) env[:ui].warn(I18n.t("vagrant.box_add_url_warn")) end rescue URI::InvalidURIError # do nothing end end url = Array(env[:box_url]).map do |u| u = u.gsub("\\", "/") if Util::Platform.windows? && u =~ /^[a-z]:/i # On Windows, we need to be careful about drive letters u = "file:///#{@parser.escape(u)}" end if u =~ /^[a-z0-9]+:.*$/i && !u.start_with?("file://") # This is not a file URL... carry on next u end # Expand the path and try to use that, if possible p = File.(@parser.unescape(u.gsub(/^file:\/\//, ""))) p = Util::Platform.cygwin_windows_path(p) next "file://#{@parser.escape(p.gsub("\\", "/"))}" if File.file?(p) u end # If we received a shorthand URL ("mitchellh/precise64"), # then expand it properly. = false url.each_index do |i| next if url[i] !~ /^[^\/]+\/[^\/]+$/ if !File.file?(url[i]) server = Vagrant.server_url env[:box_server_url] raise Errors::BoxServerNotSet if !server = true url[i] = "#{server}/#{url[i]}" end end # Call the hook to transform URLs into authenticated URLs. # In the case we don't have a plugin that does this, then it # will just return the same URLs. hook_env = env[:hook].call( :authenticate_box_url, box_urls: url.dup) authed_urls = hook_env[:box_urls] if !authed_urls || authed_urls.length != url.length raise "Bad box authentication hook, did not generate proper results." end # Test if any of our URLs point to metadata = authed_urls.map do |u| begin (u, env) rescue Errors::DownloaderError => e e end end if && url.length == 1 is_error = .find do |b| b.is_a?(Errors::DownloaderError) end if is_error raise Errors::BoxAddShortNotFound, error: is_error.extra_data[:message], name: env[:box_url], url: url end end = .any? { |b| b === true } if && url.length > 1 raise Errors::BoxAddMetadataMultiURL, urls: url.join(", ") end if url = [url.first, authed_urls.first] (url, env, ) else add_direct(url, env) end @app.call(env) end |