1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/core/ssh.rb

116 lines
2.8 KiB
Ruby
Raw Normal View History

2010-04-14 23:32:56 -04:00
module Fog
2010-05-02 22:43:03 -04:00
module SSH
2010-04-14 23:32:56 -04:00
2010-05-02 22:43:03 -04:00
def self.new(address, username, options = {})
if Fog.mocking?
Fog::SSH::Mock.new(address, username, options)
else
Fog::SSH::Real.new(address, username, options)
end
end
class Mock
def self.data
@data ||= Hash.new do |hash, key|
hash[key] = {}
end
end
def initialize(address, username, options)
@address = address
@username = username
@options = options
end
def run(commands)
Fog::Mock.not_implemented
2010-05-02 22:43:03 -04:00
end
end
class Real
def initialize(address, username, options)
require 'net/ssh'
key_manager = Net::SSH::Authentication::KeyManager.new(nil, options)
unless options[:key_data] || options[:keys] || options[:password] || key_manager.agent
raise ArgumentError.new(':key_data, :keys, :password or a loaded ssh-agent is required to initialize SSH')
end
2010-05-02 22:43:03 -04:00
@address = address
@username = username
@options = { :paranoid => false }.merge(options)
2010-05-02 22:43:03 -04:00
end
def run(commands)
commands = [*commands]
results = []
begin
Net::SSH.start(@address, @username, @options) do |ssh|
commands.each do |command|
result = Result.new(command)
ssh.open_channel do |ssh_channel|
ssh_channel.request_pty
ssh_channel.exec(command) do |channel, success|
2010-05-02 22:43:03 -04:00
unless success
raise "Could not execute command: #{command.inspect}"
end
channel.on_data do |ch, data|
2010-05-02 22:43:03 -04:00
result.stdout << data
end
channel.on_extended_data do |ch, type, data|
2010-05-02 22:43:03 -04:00
next unless type == 1
result.stderr << data
end
channel.on_request('exit-status') do |ch, data|
2010-05-02 22:43:03 -04:00
result.status = data.read_long
end
channel.on_request('exit-signal') do |ch, data|
2010-05-02 22:43:03 -04:00
result.status = 255
end
2010-04-19 00:42:08 -04:00
end
end
2010-05-02 22:43:03 -04:00
ssh.loop
results << result
2010-04-19 00:42:08 -04:00
end
2010-04-14 23:32:56 -04:00
end
2010-05-02 22:43:03 -04:00
rescue Net::SSH::HostKeyMismatch => exception
exception.remember_host!
sleep 0.2
retry
2010-04-14 23:32:56 -04:00
end
2010-05-02 22:43:03 -04:00
results
end
end
class Result
attr_accessor :command, :stderr, :stdout, :status
def display_stdout
Formatador.display_line(stdout.split("\r\n"))
end
def display_stderr
Formatador.display_line(stderr.split("\r\n"))
end
2010-05-02 22:43:03 -04:00
def initialize(command)
@command = command
@stderr = ''
@stdout = ''
2010-04-14 23:32:56 -04:00
end
2010-05-02 22:43:03 -04:00
2010-04-14 23:32:56 -04:00
end
end
end