Class: Kontena::Cli::Master::Token::ListCommand

Inherits:
Kontena::Command
  • Object
show all
Includes:
Common, Common, TableGenerator::Helper, Util
Defined in:
lib/kontena/cli/master/token/list_command.rb

Instance Attribute Summary

Attributes inherited from Kontena::Command

#arguments, #exit_code, #result

Instance Method Summary collapse

Methods included from Common

#token_data_to_hash

Methods included from TableGenerator::Helper

#generate_table, included, #print_table, #table_generator

Methods included from Common

#access_token=, #add_master, #any_key_to_continue, #any_key_to_continue_with_timeout, #api_url, #api_url=, #caret, #clear_current_grid, #client, #cloud_auth?, #cloud_client, #config, #confirm, #confirm_command, #current_grid, #current_master_index, #debug?, #display_account_login_info, #display_login_info, display_logo, #display_master_login_info, #error, exit_with_error, #kontena_account, #logger, #pastel, #print, #prompt, #puts, #require_api_url, #require_token, #reset_client, #reset_cloud_client, #running_quiet?, #running_silent?, #running_verbose?, #spin_if, #spinner, #sprint, #sputs, #stdin_input, #use_refresh_token, #vfakespinner, #vputs, #vspinner, #warning

Methods included from Util

included, #longest_string_in_array, #safe_dig, #seconds_to_human, stringify_keys, stringify_keys!, symbolize_keys, symbolize_keys!, #time_ago, #time_until, which

Methods inherited from Kontena::Command

banner, callback_matcher, #help_requested?, inherited, #instance, load_subcommand, requires_current_account_token, requires_current_account_token?, requires_current_grid, requires_current_grid?, requires_current_master, requires_current_master?, requires_current_master_token, requires_current_master_token?, #run, #run_callbacks, #verify_current_account_token, #verify_current_grid, #verify_current_master, #verify_current_master_token

Instance Method Details

#colorize(expires_in) ⇒ Object



27
28
29
30
31
32
33
34
35
36
# File 'lib/kontena/cli/master/token/list_command.rb', line 27

def colorize(expires_in)
  return expires_in.to_s unless $stdout.tty?
  if expires_in.zero?
    pastel.yellow('never')
  elsif expires_in < 0
    pastel.red(time_ago(Time.now.to_i + expires_in))
  else
    pastel.green(time_until(expires_in))
  end
end

#executeObject



18
19
20
21
22
23
24
25
# File 'lib/kontena/cli/master/token/list_command.rb', line 18

def execute
  data = Array(client.get("/oauth2/tokens")["tokens"])
  print_table(data) do |row|
    next if quiet?
    row['expires_in'] = colorize(row['expires_in'].to_i)
    row['token_type'] ||= row['grant_type']
  end
end

#fieldsObject



13
14
15
16
# File 'lib/kontena/cli/master/token/list_command.rb', line 13

def fields
  return ['id'] if quiet?
  { id: 'id', token_type: 'token_type', token_last4: 'access_token_last_four', expires_in: 'expires_in', scopes: 'scopes', description: 'description' }
end