69 lines
2.7 KiB
Ruby
69 lines
2.7 KiB
Ruby
|
require 'optparse'
|
||
|
|
||
|
module VagrantPlugins
|
||
|
module CloudCommand
|
||
|
module ProviderCommand
|
||
|
module Command
|
||
|
class Upload < Vagrant.plugin("2", :command)
|
||
|
def execute
|
||
|
options = {}
|
||
|
|
||
|
opts = OptionParser.new do |o|
|
||
|
o.banner = "Usage: vagrant cloud provider upload [options] organization/box-name provider-name version box-file"
|
||
|
o.separator ""
|
||
|
o.separator "Uploads a box file to Vagrant Cloud for a specific provider"
|
||
|
o.separator ""
|
||
|
o.separator "Options:"
|
||
|
o.separator ""
|
||
|
|
||
|
o.on("-u", "--username USERNAME_OR_EMAIL", String, "Specify your Vagrant Cloud username or email address") do |t|
|
||
|
options[:username] = u
|
||
|
end
|
||
|
end
|
||
|
|
||
|
# Parse the options
|
||
|
argv = parse_options(opts)
|
||
|
return if !argv
|
||
|
if argv.empty? || argv.length > 4
|
||
|
raise Vagrant::Errors::CLIInvalidUsage,
|
||
|
help: opts.help.chomp
|
||
|
end
|
||
|
|
||
|
@client = VagrantPlugins::CloudCommand::Util.client_login(@env, options[:username])
|
||
|
|
||
|
box = argv.first.split('/')
|
||
|
org = box[0]
|
||
|
box_name = box[1]
|
||
|
provider_name = argv[1]
|
||
|
version = argv[2]
|
||
|
file = argv[3]
|
||
|
|
||
|
upload_provider(org, box_name, provider_name, version, file, @client.token, options)
|
||
|
end
|
||
|
|
||
|
def upload_provider(org, box_name, provider_name, version, file, access_token, options)
|
||
|
org = options[:username] if options[:username]
|
||
|
|
||
|
server_url = VagrantPlugins::CloudCommand::Util.api_server_url
|
||
|
account = VagrantPlugins::CloudCommand::Util.account?(org, access_token, server_url)
|
||
|
box = VagrantCloud::Box.new(account, box_name, nil, nil, nil, access_token)
|
||
|
cloud_version = VagrantCloud::Version.new(box, version, nil, nil, access_token)
|
||
|
provider = VagrantCloud::Provider.new(cloud_version, provider_name, nil, nil, org, box_name, access_token)
|
||
|
|
||
|
begin
|
||
|
@env.ui.info(I18n.t("cloud_command.provider.upload", provider_file: file))
|
||
|
success = provider.upload_file(file)
|
||
|
@env.ui.success(I18n.t("cloud_command.provider.upload_success", provider: provider_name, org: org, box_name: box_name, version: version))
|
||
|
return 0
|
||
|
rescue VagrantCloud::ClientError => e
|
||
|
@env.ui.error(I18n.t("cloud_command.errors.provider.upload_fail", provider: provider_name, org: org, box_name: box_name, version: version))
|
||
|
@env.ui.error(e)
|
||
|
return 1
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|