Sha256: f86bf0f463965db3bd53a39dc0e23401b6d4e1260f367d88de663516acb1dc0d
Contents?: true
Size: 1.1 KB
Versions: 4
Compression:
Stored size: 1.1 KB
Contents
require "uri" require_relative "../client" module VagrantPlugins module LoginCommand class AddAuthentication def initialize(app, env) @app = app end def call(env) client = Client.new(env[:env]) token = client.token if token && Vagrant.server_url server_uri = URI.parse(Vagrant.server_url) env[:box_urls].map! do |url| u = URI.parse(url) replace = u.host == server_uri.host if !replace # We need this in here for the transition we made from # Vagrant Cloud to Atlas. This preserves access tokens # appending to both without leaking access tokens to # unsavory URLs. replace = u.host == "vagrantcloud.com" && server_uri.host == "atlas.hashicorp.com" end if replace u.query ||= "" u.query += "&" if u.query != "" u.query += "access_token=#{token}" end u.to_s end end @app.call(env) end end end end
Version data entries
4 entries across 1 versions & 1 rubygems