Class: Duse::CLI::Login

Inherits:
ApiCommand show all
Includes:
KeyHelper
Defined in:
lib/duse/cli/login.rb

Instance Attribute Summary

Attributes inherited from Command

#arguments, #force_interactive, #input, #output

Instance Method Summary collapse

Methods included from KeyHelper

#choose_key, #choose_private_key_file, #ensure_matching_keys_for, #generate_key, #home_dir, #matching_keys?, #possible_ssh_keys, #private_key_for, #ssh_dir, #valid_ssh_private_key?

Methods inherited from ApiCommand

#execute, #setup

Methods inherited from Command

abstract, abstract?, #check_arity, #color, #command_name, command_name, #config, description, #error, #execute, #format, #full_command, full_command, has_subcommands?, has_super_command?, #help, #help_subcommands, #initialize, #interactive?, #parse, #say, #setup, skip, subcommand, subcommands, #success, super_command, super_command=, #terminal, #usage, #usage_for, #warn, #write_to, #wrong_args

Methods included from Parser

#new, #on, #on_initialize

Constructor Details

This class inherits a constructor from Duse::CLI::Command

Instance Method Details

#runObject



13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/duse/cli/login.rb', line 13

def run
  username = terminal.ask('Username: ')
  password = terminal.ask('Password: ') { |q| q.echo = 'x' }
  response = Duse.session.post('/users/token', { username: username, password: password })
  config.token = response['api_token']
  CLIConfig.save(config)
  user = Duse::User.find 'me'
  ensure_matching_keys_for user
  success 'Successfully logged in!'
rescue Duse::Client::NotLoggedIn => e
  error e.message.empty? ? 'Wrong username or password!' : e.message
end