Class: Crowbar::Client::Command::Proposal::Commit

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

Overview

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



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/crowbar/client/command/proposal/commit.rb', line 33

def execute
  validate_barclamp! args.barclamp

  request.process do |request|
    case request.code
    when 200
      say "Successfully commited #{args.proposal} proposal"
    when 202
      say "Successfully queued #{args.proposal} proposal"
    when 404
      say "Proposal does not exist"
    else
      err request.parsed_response["error"]
    end
  end
end

#requestObject



27
28
29
30
31
# File 'lib/crowbar/client/command/proposal/commit.rb', line 27

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