Class: Roadworker::Client

Inherits:
Object
  • Object
show all
Includes:
Log
Defined in:
lib/roadworker/client.rb

Instance Method Summary collapse

Methods included from Log

#log

Constructor Details

#initialize(options = {}) ⇒ Client

Returns a new instance of Client.



13
14
15
16
17
18
19
20
21
# File 'lib/roadworker/client.rb', line 13

def initialize(options = {})
  @options = OpenStruct.new(options)
  @options.logger ||= Logger.new($stdout)
  String.colorize = @options.color
  @options.route53 = AWS::Route53.new
  @health_checks = HealthCheck.health_checks(@options.route53, :extended => true)
  @options.health_checks = @health_checks
  @route53 = Route53Wrapper.new(@options)
end

Instance Method Details

#apply(file) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/roadworker/client.rb', line 23

def apply(file)
  dsl = load_file(file)
  updated = false

  if dsl.hosted_zones.empty? and not @options.force
    log(:warn, "Nothing is defined (pass `--force` if you want to remove)", :yellow)
  else
    AWS.memoize {
      walk_hosted_zones(dsl)
      updated = @options.updated
    }
  end

  if updated and not @options.no_health_check_gc
    HealthCheck.gc(@options.route53, :logger => @options.logger)
  end

  return updated
end

#exportObject



43
44
45
46
47
48
49
50
51
# File 'lib/roadworker/client.rb', line 43

def export
  exported = AWS.memoize { @route53.export }

  if block_given?
    yield(exported, DSL.method(:convert))
  else
    DSL.convert(exported)
  end
end

#test(file) ⇒ Object



53
54
55
56
# File 'lib/roadworker/client.rb', line 53

def test(file)
  dsl = load_file(file)
  DSL.test(dsl, @options)
end