Class: Travis::CLI::Command

Inherits:
Object
  • Object
show all
Extended by:
Forwardable, Parser, Tools::Assets
Includes:
Tools::Assets
Defined in:
lib/travis/cli/command.rb

Direct Known Subclasses

ApiCommand, Help, Version

Constant Summary

Constants included from Tools::Assets

Tools::Assets::BASE

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Tools::Assets

asset, asset_path

Methods included from Parser

new, on, on_initialize

Constructor Details

#initialize(options = {}) ⇒ Command

Returns a new instance of Command.



70
71
72
73
74
75
76
77
78
79
# File 'lib/travis/cli/command.rb', line 70

def initialize(options = {})
  @on_signal  = []
  @formatter  = Travis::Tools::Formatter.new
  self.output = $stdout
  self.input  = $stdin
  options.each do |key, value|
    public_send("#{key}=", value) if respond_to? "#{key}="
  end
  @arguments ||= []
end

Instance Attribute Details

#argumentsObject

Returns the value of attribute arguments.



66
67
68
# File 'lib/travis/cli/command.rb', line 66

def arguments
  @arguments
end

#configObject

Returns the value of attribute config.



66
67
68
# File 'lib/travis/cli/command.rb', line 66

def config
  @config
end

#debug(line) ⇒ Object

Returns the value of attribute debug.



66
67
68
# File 'lib/travis/cli/command.rb', line 66

def debug
  @debug
end

#force_interactiveObject

Returns the value of attribute force_interactive.



66
67
68
# File 'lib/travis/cli/command.rb', line 66

def force_interactive
  @force_interactive
end

#formatterObject

Returns the value of attribute formatter.



66
67
68
# File 'lib/travis/cli/command.rb', line 66

def formatter
  @formatter
end

#inputObject

Returns the value of attribute input.



67
68
69
# File 'lib/travis/cli/command.rb', line 67

def input
  @input
end

#outputObject

Returns the value of attribute output.



67
68
69
# File 'lib/travis/cli/command.rb', line 67

def output
  @output
end

Class Method Details

.abstractObject



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

def self.abstract
  @@abstract << self
end

.abstract?Boolean

Returns:

  • (Boolean)


49
50
51
# File 'lib/travis/cli/command.rb', line 49

def self.abstract?
  @@abstract.include? self
end

.command_nameObject



44
45
46
# File 'lib/travis/cli/command.rb', line 44

def self.command_name
  name[/[^:]*$/].downcase
end

.description(description = nil) ⇒ Object



61
62
63
64
# File 'lib/travis/cli/command.rb', line 61

def self.description(description = nil)
  @description = description if description
  @description ||= ""
end

.skip(*names) ⇒ Object



57
58
59
# File 'lib/travis/cli/command.rb', line 57

def self.skip(*names)
  names.each { |n| define_method(n) {} }
end

Instance Method Details

#check_completionObject



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/travis/cli/command.rb', line 137

def check_completion
  return if skip_completion_check? or !interactive?

  if config['checked_completion']
    Tools::Completion.update_completion if config['completion_version'] != Travis::VERSION
  else
    write_to($stderr) do
      next Tools::Completion.update_completion if Tools::Completion.completion_installed?
      next unless agree('Shell completion not installed. Would you like to like to install it now? ') { |q| q.default = "y" }
      Tools::Completion.install_completion
    end
  end

  config['checked_completion'] = true
  config['completion_version'] = Travis::VERSION
end

#check_rubyObject



154
155
156
157
# File 'lib/travis/cli/command.rb', line 154

def check_ruby
  return if RUBY_VERSION > '1.9.2' or skip_version_check?
  warn "Your Ruby version is outdated, please consider upgrading, as we will drop support for #{RUBY_VERSION} soon!"
end

#check_versionObject



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/travis/cli/command.rb', line 120

def check_version
  last_check.clear if last_check['version'] != Travis::VERSION

  return if skip_version_check?
  return if Time.now.to_i - last_check['at'].to_i < 3600

  Timeout.timeout 1.0 do
    response              = Faraday.get('https://rubygems.org/api/v1/gems/travis.json', {}, 'If-None-Match' => last_check['etag'].to_s)
    last_check['etag']    = response.headers['etag']
    last_check['version'] = JSON.parse(response.body)['version'] if response.status == 200
  end

  last_check['at'] = Time.now.to_i
  error "Outdated CLI version, run `gem install travis` or use --skip-version-check." if Travis::VERSION < last_check['version']
rescue Timeout::Error, Faraday::Error::ClientError
end

#command_nameObject



179
180
181
# File 'lib/travis/cli/command.rb', line 179

def command_name
  self.class.command_name
end

#debug?Object

Returns the value of attribute debug.



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

def debug
  @debug
end

#executeObject



159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# File 'lib/travis/cli/command.rb', line 159

def execute
  setup_trap
  check_ruby
  check_arity(method(:run), *arguments)
  load_config
  check_version
  check_completion
  setup
  run(*arguments)
  clear_error
  store_config
rescue StandardError => e
  raise(e) if explode?
  message = e.message
  message += " - try running #{command("login#{endpoint_option}")}" if Travis::Client::Error === e and message == 'access denied'
  message += color("\nfor a full error report, run #{command("report#{endpoint_option}")}", :error) if interactive?
  store_error(e)
  error(message)
end

#help(info = "") ⇒ Object



199
200
201
202
# File 'lib/travis/cli/command.rb', line 199

def help(info = "")
  parser.banner = usage
  self.class.description.sub(/./) { |c| c.upcase } + ".\n" + info + parser.to_s
end

#info(line) ⇒ Object



224
225
226
227
228
# File 'lib/travis/cli/command.rb', line 224

def info(line)
  write_to($stderr) do
    say color(line, :info)
  end
end

#last_checkObject



112
113
114
115
116
117
118
# File 'lib/travis/cli/command.rb', line 112

def last_check
  config['last_check'] ||= {
    # migrate from old values
    'at'   => config.delete('last_version_check'),
    'etag' => config.delete('etag')
  }
end

#on_signal(&block) ⇒ Object



230
231
232
# File 'lib/travis/cli/command.rb', line 230

def on_signal(&block)
  @on_signal << block
end

#parse(args) ⇒ Object



102
103
104
105
106
107
# File 'lib/travis/cli/command.rb', line 102

def parse(args)
  rest = parser.parse(args)
  arguments.concat(rest)
rescue OptionParser::ParseError => e
  error e.message
end

#say(data, format = nil, style = nil) ⇒ Object



204
205
206
# File 'lib/travis/cli/command.rb', line 204

def say(data, format = nil, style = nil)
  terminal.say format(data, format, style)
end

#setupObject



109
110
# File 'lib/travis/cli/command.rb', line 109

def setup
end

#terminalObject



81
82
83
# File 'lib/travis/cli/command.rb', line 81

def terminal
  @terminal ||= HighLine.new(input, output)
end

#time(info, callback = Proc.new) ⇒ Object



215
216
217
218
219
220
221
222
# File 'lib/travis/cli/command.rb', line 215

def time(info, callback = Proc.new)
  return callback.call unless debug?
  start = Time.now
  debug(info)
  callback.call
  duration = Time.now - start
  debug("  took %.2g seconds" % duration)
end

#usageObject



183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/travis/cli/command.rb', line 183

def usage
  usage  = "travis #{command_name}"
  method = method(:run)
  if method.respond_to? :parameters
    method.parameters.each do |type, name|
      name = "[#{name}]"      if type == :opt
      name = "[#{name}..]" if type == :rest
      usage << " #{name}"
    end
  elsif method.arity != 0
    usage << " ..."
  end
  usage << " [options]"
  "Usage: " << color(usage, :command)
end

#write_to(io) ⇒ Object



95
96
97
98
99
100
# File 'lib/travis/cli/command.rb', line 95

def write_to(io)
  io_was, self.output = output, io
  yield
ensure
  self.output = io_was if io_was
end