Class: Astrails::Safe::Config::Builder

Inherits:
Object
  • Object
show all
Defined in:
lib/astrails/safe/config/builder.rb

Constant Summary collapse

COLLECTIONS =
%w/database archive repo/
ITEMS =
%w/s3 cloudfiles key secret bucket api_key container service_net path gpg password keep local mysqldump pgdump command options
user host port socket skip_tables tar files exclude filename svndump repo_path sftp ftp mongodump/
NAMES =
COLLECTIONS + ITEMS

Instance Method Summary collapse

Constructor Details

#initialize(node) ⇒ Builder

Returns a new instance of Builder.



9
10
11
# File 'lib/astrails/safe/config/builder.rb', line 9

def initialize(node)
  @node = node
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(sym, *args, &block) ⇒ Object

supported args:

args = [value]
args = [id, data]
args = [data]

id/value - simple values, data - hash



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
55
56
# File 'lib/astrails/safe/config/builder.rb', line 18

def method_missing(sym, *args, &block)
  return super unless NAMES.include?(sym.to_s)

  # do we have id or value?
  unless args.first.is_a?(Hash)
    id_or_value = args.shift # nil for args == []
  end

  id_or_value = id_or_value.map {|v| v.to_s} if id_or_value.is_a?(Array)

  # do we have data hash?
  if data = args.shift
    raise "#{sym}: hash expected: #{data.inspect}" unless data.is_a?(Hash)
  end

  #puts "#{sym}: args=#{args.inspect}, id_or_value=#{id_or_value}, data=#{data.inspect}, block=#{block.inspect}"

  raise "#{sym}: unexpected: #{args.inspect}" unless args.empty?
  raise "#{sym}: missing arguments" unless id_or_value || data || block

  if COLLECTIONS.include?(sym.to_s) && id_or_value
    data ||= {}
  end

  if !data && !block
    # simple value assignment
    @node[sym] = id_or_value

  elsif id_or_value
    # collection element with id => create collection node and a subnode in it
    key = sym.to_s + "s"
    collection = @node[key] || @node.set(key, {})
    collection.set(id_or_value, data || {}, &block)

  else
    # simple subnode
    @node.set(sym, data || {}, &block)
  end
end