Class: Crowbar::Client::Command::Backup::Upload
- Inherits:
-
Crowbar::Client::Command::Base
- Object
- Crowbar::Client::Command::Base
- Crowbar::Client::Command::Backup::Upload
- 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
Constructor Details
This class inherits a constructor from Crowbar::Client::Command::Base
Instance Method Details
#execute ⇒ Object
46 47 48 49 50 51 52 53 54 55 |
# File 'lib/crowbar/client/command/backup/upload.rb', line 46 def execute request.process do |request| case request.code when 200 say "Successfully uploaded backup" else err request.parsed_response["error"] end end end |
#request ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# 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 unless File.exist?(args.file) err "File #{args.file} does not exist." end File.new( args.file, File::RDONLY ) end @request ||= Request::Backup::Upload.new( args ) end |