summaryrefslogtreecommitdiff
path: root/lib/oxidized/input/ftp.rb
blob: 93cdb3879cdebc49b30741b4ea1b19d73d6014e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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(Oxidized::Config::Crash + "-#{@node.ip}-ftp", 'w') if Oxidized.config.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
      Oxidized.logger.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 Oxidized.config.input.debug?
    end

  end
end