91 lines
2.7 KiB
Ruby
91 lines
2.7 KiB
Ruby
require 'optparse'
|
|
|
|
module VagrantPlugins
|
|
module CloudCommand
|
|
module AuthCommand
|
|
module Command
|
|
class Login < Vagrant.plugin("2", :command)
|
|
def execute
|
|
options = {}
|
|
|
|
opts = OptionParser.new do |o|
|
|
o.banner = "Usage: vagrant cloud auth login [options]"
|
|
o.separator ""
|
|
o.separator "Options:"
|
|
o.separator ""
|
|
o.on("-c", "--check", "Only checks if you're logged in") do |c|
|
|
options[:check] = c
|
|
end
|
|
|
|
o.on("-d", "--description DESCRIPTION", String, "Description for the Vagrant Cloud token") do |d|
|
|
options[:description] = d
|
|
end
|
|
|
|
o.on("-k", "--logout", "Logs you out if you're logged in") do |k|
|
|
options[:logout] = k
|
|
end
|
|
|
|
o.on("-t", "--token TOKEN", String, "Set the Vagrant Cloud token") do |t|
|
|
options[:token] = t
|
|
end
|
|
|
|
o.on("-u", "--username USERNAME_OR_EMAIL", String, "Specify your Vagrant Cloud username or email address") do |l|
|
|
options[:login] = l
|
|
end
|
|
end
|
|
|
|
# Parse the options
|
|
argv = parse_options(opts)
|
|
return if !argv
|
|
|
|
@client = Client.new(@env)
|
|
@client.username_or_email = options[:login]
|
|
|
|
# Determine what task we're actually taking based on flags
|
|
if options[:check]
|
|
return execute_check
|
|
elsif options[:logout]
|
|
return execute_logout
|
|
elsif options[:token]
|
|
return execute_token(options[:token])
|
|
else
|
|
@client = VagrantPlugins::CloudCommand::Util.client_login(@env, options)
|
|
end
|
|
|
|
0
|
|
end
|
|
|
|
def execute_check
|
|
if @client.logged_in?
|
|
@env.ui.success(I18n.t("cloud_command.check_logged_in"))
|
|
return 0
|
|
else
|
|
@env.ui.error(I18n.t("cloud_command.check_not_logged_in"))
|
|
return 1
|
|
end
|
|
end
|
|
|
|
def execute_logout
|
|
@client.clear_token
|
|
@env.ui.success(I18n.t("cloud_command.logged_out"))
|
|
return 0
|
|
end
|
|
|
|
def execute_token(token)
|
|
@client.store_token(token)
|
|
@env.ui.success(I18n.t("cloud_command.token_saved"))
|
|
|
|
if @client.logged_in?
|
|
@env.ui.success(I18n.t("cloud_command.check_logged_in"))
|
|
return 0
|
|
else
|
|
@env.ui.error(I18n.t("cloud_command.invalid_token"))
|
|
return 1
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|