Class: Crowbar::Client::Command::Upgrade::Prechecks

Inherits:
Base
  • Object
show all
Includes:
Mixin::Filter, Mixin::Format
Defined in:
lib/crowbar/client/command/upgrade/prechecks.rb

Overview

Implementation for the upgrade status command

Instance Attribute Summary

Attributes inherited from Base

#args, #options, #stderr, #stdin, #stdout

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Crowbar::Client::Command::Base

Instance Method Details

#executeObject



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/crowbar/client/command/upgrade/prechecks.rb', line 34

def execute
  request.process do |request|
    case request.code
    when 200
      formatter = Formatter::Hash.new(
        format: provide_format,
        headings: ["Check ID", "Passed", "Required", "Errors", "Help"],
        values: Filter::Hash.new(
          filter: provide_filter,
          values: content_from(request)
        ).result
      )

      if formatter.empty?
        err "No checks"
      else
        say formatter.result
        next unless provide_format == :table
        say "Make sure that there are no errors for the required checks" \
          " before executing the next step."
        say "Next step: 'crowbarctl upgrade prepare'"
      end
    else
      err request.parsed_response["error"]
    end
  end
end

#requestObject



28
29
30
31
32
# File 'lib/crowbar/client/command/upgrade/prechecks.rb', line 28

def request
  @request ||= Request::Upgrade::Prechecks.new(
    args
  )
end