summaryrefslogtreecommitdiff
path: root/lib/oxidized/source/sql.rb
blob: 44f3f00968cc3bb6d94c993718642de67cbd9523 (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
module Oxidized
class SQL < Source
  require 'sequel'

  def initialize
    super
    @cfg = CFG.source[:sql]
  end

  def setup
    if not @cfg
      CFG.source[:sql] = {
        :adapter => 'sqlite',
        :file    => File.join(Config::Root, 'sqlite.db'),
        :table   => 'devices',
        :map     => {
          :name      => 'name',
          :model     => 'rancid',
        }
      }
    end
    CFG.save
  end

  def load
    nodes = []
    case @cfg[:adapter]
    when 'sqlite'
      require 'sqlite3'
      Sequel.sqlite @cfg[:file]
    end
    klass = Class.new(Sequel::Model @cfg[:table].to_sym)
    SQL.send :remove_const, :Nodes if SQL.const_defined? :Nodes
    SQL.const_set :Nodes, klass
    Nodes.each do |node|
      keys = {}
      @cfg[:map].each { |key, sql_column| keys[key] = node.send(sql_column.to_sym) }
      keys[:model] = map_model keys[:model] if keys.key? :model
      nodes << keys
    end
    nodes
  end

end
end