Sha256: 861ba3eddf88cf6e99f454fc4cd081d39da1d4d9d87d90b637bb33840ecd9b22

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

module Oxidized
  require 'net/ftp'
  require 'timeout'
  require_relative 'cli'

  class FTP < Input
    RescueFail = {
      :debug => [
        #Net::SSH::Disconnect,
      ],
      :warn => [
        #RuntimeError,
        #Net::SSH::AuthenticationFailed,
      ],
    }
    include Input::CLI

    def connect node
      @node       = node
      @node.model.cfg['ftp'].each { |cb| instance_exec(&cb) }
      @log = File.open(CFG.input.debug?.to_s + '-ftp', 'w') if CFG.input.debug?
      @ftp = Net::FTP.new @node.ip, @node.auth[:username], @node.auth[:password]
      connected?
    end

    def connected?
      @ftp and not @ftp.closed?
    end

    def cmd file
      Log.debug "FTP: #{file} @ #{@node.name}"
      @ftp.getbinaryfile file, nil
    end

    # meh not sure if this is the best way, but perhaps better than not implementing send
    def send my_proc
      my_proc.call
    end

    def output
      ""
    end

    private

    def disconnect
      @ftp.close
    #rescue Errno::ECONNRESET, IOError
    ensure
      @log.close if CFG.input.debug?
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
oxidized-0.8.1 lib/oxidized/input/ftp.rb
oxidized-0.8.0 lib/oxidized/input/ftp.rb