Class: Crowbar::Client::Command::Proposal::Show

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

Overview

Implementation for the proposal show 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



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'lib/crowbar/client/command/proposal/show.rb', line 37

def execute
  validate_barclamp! args.barclamp

  request.process do |request|
    case request.code
    when 200
      content = if options[:raw]
        content_from(request)
      else
        deployment_cleanup(content_from(request))
      end

      formatter = Formatter::Nested.new(
        format: provide_format,
        path: provide_filter,
        headings: ["Key", "Value"],
        values: Filter::Subset.new(
          filter: provide_filter,
          values: content
        ).result
      )

      if formatter.empty?
        err "No result"
      else
        say formatter.result
      end
    when 404
      err "Proposal does not exist"
    else
      err request.parsed_response["error"]
    end
  end
end

#requestObject



31
32
33
34
35
# File 'lib/crowbar/client/command/proposal/show.rb', line 31

def request
  @request ||= Request::Proposal::Show.new(
    args
  )
end