Class: Rivet::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/rivet/common/client.rb

Instance Method Summary collapse

Instance Method Details

#run(client_type, options) ⇒ Object



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
# File 'lib/rivet/common/client.rb', line 5

def run(client_type,options)
  AwsUtils.set_aws_credentials options.profile
  Rivet::Log.level options.log_level

  Rivet::Log.info "Using #{client_type} config path #{options.config_path}"

  unless Dir.exists?(options.config_path)
    Rivet::Utils.die "The #{client_type} config path does not exist"
  end

  config = Rivet::Utils.get_config(
    client_type,
    options.name,
    options.config_path)

  unless config
    Rivet::Utils.list_groups(options.config_path)
    Rivet::Utils.die "The #{options.name} #{client_type} definition doesn't exist"
  end

  config.validate

  config = ConfigProxy.new(config)

  Rivet::Log.info "#{options.name} #{client_type} definition"

  asset = Rivet.const_get(client_type.capitalize).new(config)
  asset.display

  if options.sync
    Rivet::Log.debug "syncing asset #{options.name}"
    asset.sync
  else
    Rivet::Log.info 'use the -s [--sync] flag to sync changes'
  end
end