Class: Travis::CLI::ApiCommand

Inherits:
Command
  • Object
show all
Includes:
Travis::Client::Methods
Defined in:
lib/travis/cli/api_command.rb

Constant Summary

Constants inherited from Command

Command::DAY, Command::HOUR, Command::MINUTE, Command::WEEK

Constants included from Tools::Assets

Tools::Assets::BASE

Instance Attribute Summary collapse

Attributes inherited from Command

#arguments, #config, #debug, #force_interactive, #formatter, #input, #output

Instance Method Summary collapse

Methods included from Travis::Client::Methods

#access_token, #access_token=, #account, #accounts, #api_endpoint, #api_endpoint=, #artifact, #broadcasts, #build, #cancel, #explicit_api_endpoint?, #github_auth, #hooks, #job, #lint, #logout, #regenerate_token, #remove_token, #repo, #repos, #restart, #user

Methods inherited from Command

abstract, abstract?, #check_completion, #check_ruby, #check_version, #command_name, command_name, #debug?, description, #error, #execute, #help, #info, #last_check, #on_signal, #parse, #say, skip, subcommands, #terminal, #time, #usage, #usage_for, #warn, #write_to

Methods included from Tools::Assets

asset, asset_path

Methods included from Parser

#new, #on, #on_initialize

Constructor Details

#initializeApiCommand

Returns a new instance of ApiCommand.



47
48
49
50
# File 'lib/travis/cli/api_command.rb', line 47

def initialize(*)
  @session = Travis::Client.new(agent_info: "command #{command_name}")
  super
end

Instance Attribute Details

#enterprise_nameObject

Returns the value of attribute enterprise_name.



10
11
12
# File 'lib/travis/cli/api_command.rb', line 10

def enterprise_name
  @enterprise_name
end

#sessionObject (readonly)

Returns the value of attribute session.



11
12
13
# File 'lib/travis/cli/api_command.rb', line 11

def session
  @session
end

Instance Method Details

#authenticateObject



80
81
82
# File 'lib/travis/cli/api_command.rb', line 80

def authenticate
  error "not logged in, please run #{command("login#{endpoint_option}")}" if access_token.nil?
end

#detected_endpoint?Boolean

Returns:

  • (Boolean)


76
77
78
# File 'lib/travis/cli/api_command.rb', line 76

def detected_endpoint?
  api_endpoint == detected_endpoint
end

#endpoint_configObject



52
53
54
55
# File 'lib/travis/cli/api_command.rb', line 52

def endpoint_config
  config['endpoints'] ||= {}
  config['endpoints'][api_endpoint] ||= {}
end

#enterprise?Boolean

Returns:

  • (Boolean)


68
69
70
# File 'lib/travis/cli/api_command.rb', line 68

def enterprise?
  !!endpoint_config['enterprise']
end

#pro?Boolean

Returns:

  • (Boolean)


72
73
74
# File 'lib/travis/cli/api_command.rb', line 72

def pro?
  api_endpoint == Travis::Client::COM_URI
end

#setupObject



57
58
59
60
61
62
63
64
65
66
# File 'lib/travis/cli/api_command.rb', line 57

def setup
  setup_enterprise
  self.api_endpoint = default_endpoint if default_endpoint and not explicit_api_endpoint?
  self.access_token               ||= fetch_token
  endpoint_config['access_token'] ||= access_token
  endpoint_config['insecure']       = insecure unless insecure.nil?
  self.insecure                     = endpoint_config['insecure']
  session.ssl                       = { verify: false } if insecure?
  authenticate
end

#sync(block = true, dot = '.') ⇒ Object



84
85
86
87
88
89
90
91
92
93
94
95
96
97
# File 'lib/travis/cli/api_command.rb', line 84

def sync(block = true, dot = '.')
  user.sync

  steps = count = 1
  while block && user.reload.syncing?
    count += 1
    sleep(1)

    if (count % steps).zero?
      steps = count / 10 + 1
      output.print dot
    end
  end
end