Class: Crowbar::Client::Command::Ses::Upload

Inherits:
Base
  • Object
show all
Defined in:
lib/crowbar/client/command/ses/upload.rb

Overview

Implementation for the SES config upload 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



46
47
48
49
50
51
52
53
54
55
# File 'lib/crowbar/client/command/ses/upload.rb', line 46

def execute
  request.process do |request|
    case request.code
    when 200
      say "Successfully uploaded SES configuration"
    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
42
43
44
# File 'lib/crowbar/client/command/ses/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::Ses::Upload.new(
    args
  )
end