Class: Crowbar::Client::Command::Backup::Upload

Inherits:
Crowbar::Client::Command::Base show all
Defined in:
lib/crowbar/client/command/backup/upload.rb

Overview

Implementation for the backup upload command

Instance Attribute Summary

Attributes inherited from Crowbar::Client::Command::Base

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

Instance Method Summary collapse

Methods inherited from Crowbar::Client::Command::Base

#initialize

Constructor Details

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

Instance Method Details

#executeObject



43
44
45
46
47
48
49
50
51
52
# File 'lib/crowbar/client/command/backup/upload.rb', line 43

def execute
  request.process do |request|
    case request.code
    when 200
      say "Successfully uploaded backup"
    else
      err request.parsed_response["error"]
    end
  end
end

#requestObject



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/crowbar/client/command/backup/upload.rb', line 24

def request
  args.file =
    case args.file
    when "-"
      stdin.to_io
    when File
      args.file
    else
      File.new(
        args.file,
        File::RDONLY
      )
    end

  @request ||= Request::Backup::Upload.new(
    args
  )
end