Class: Collins::CLI::DC

Inherits:
Object
  • Object
show all
Includes:
Formatter, Mixins
Defined in:
lib/collins/cli/dc.rb

Constant Summary collapse

PROG_NAME =
'collins dc'
DEFAULT_CONFIG_PATH =
'~/.collins.yml'
DEFAULT_OPTIONS =
{
  :show_current => true, # used for :list
  :mode         => :show,
  :dc           => nil, # used for :set
  :timeout      => 120, # used for :new
  :host         => nil, # used for :new
  :pw           => nil, # used for :new
  :user         => nil, # used for :new
}

Constants included from Formatter

Formatter::ADDRESS_POOL_COLUMNS, Formatter::FORMATTING_DEFAULTS, Formatter::STATUS_STATE_COLUMNS

Constants included from Mixins

Mixins::COLORS, Mixins::ERROR, Mixins::SUCCESS

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Formatter

#display_as_link, #display_as_robot_talk, #display_as_table, #format_assets, #format_pools, #format_states

Methods included from Mixins

#api_call, #as_query?, #collins, #convert_to_query

Constructor Details

#initializeDC

Returns a new instance of DC.



26
27
28
29
30
# File 'lib/collins/cli/dc.rb', line 26

def initialize
  @options = DEFAULT_OPTIONS.clone
  @parsed, @validated = false, false
  @parser = nil
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



24
25
26
# File 'lib/collins/cli/dc.rb', line 24

def options
  @options
end

#parserObject (readonly)

Returns the value of attribute parser.



24
25
26
# File 'lib/collins/cli/dc.rb', line 24

def parser
  @parser
end

Instance Method Details

#configured_datacentersObject



154
155
156
157
158
159
160
# File 'lib/collins/cli/dc.rb', line 154

def configured_datacenters
  # return list of dc names, followed by an asterisk if default?
  files = Dir.glob(File.expand_path(DEFAULT_CONFIG_PATH + ".*"))
  files.map do |f|
    File.basename(f).split('.').last
  end.sort
end

#create_new_datacenter(dc, uri, user, pw, t) ⇒ Object



183
184
185
186
187
188
189
190
191
192
193
# File 'lib/collins/cli/dc.rb', line 183

def create_new_datacenter dc, uri, user, pw, t
  o = {
    host: uri.to_s,
    username: user,
    timeout: t
  }
  o[:password] = pw unless pw.nil? || pw.empty?
  File.open(File.expand_path("#{DEFAULT_CONFIG_PATH}.#{dc}"), 'w', 0600) do |f|
    f.puts o.to_yaml
  end
end

#default_datacenterObject



170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/collins/cli/dc.rb', line 170

def default_datacenter
  def_cfg = File.expand_path(DEFAULT_CONFIG_PATH)
  if !File.symlink?(def_cfg)
    raise "Unable to determine default Collins datacenter: #{def_cfg} is not a symlink, which means #{PROG_NAME.inspect} is not managing this configuration"
  end
  target = File.basename(File.readlink(def_cfg))
  if target =~ /^\.collins\.yml\.([A-Za-z0-9\-_]+)$/
    return $1
  else
    raise "Unable to determine datacenter from target config #{target}; does not match .collins.yml.$DATACENTER"
  end
end

#parse!(argv = ARGV) ⇒ Object



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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/collins/cli/dc.rb', line 32

def parse!(argv = ARGV)
  @parser = OptionParser.new do |opts|
    opts.banner = "Usage: #{PROG_NAME} [options]"
    opts.separator ""
    opts.separator "New Configuration:"
    opts.on('-n', '--new DATACENTER', String, "Create a new configuration file for DATACENTER at #{DEFAULT_CONFIG_PATH}.DATACENTER") {|v| @options[:dc] = v ; @options[:mode] = :new}
    opts.on('-H', '--host URI', URI, 'Use URI for host when setting up new datacenter') {|v| @options[:host] = v}
    opts.on('-u', '--username USER', String, 'Use USER for username when setting up new datacenter') {|v| @options[:user] = v}
    opts.on('-p', '--password PASSWORD', String, 'Use PASSWORD for password when setting up new datacenter') {|v| @options[:pw] = v}

    opts.separator ""
    opts.separator "List:"
    opts.on('-l', '--list', 'List configured collins instances') {|v| @options[:mode] = :list}

    opts.separator ""
    opts.separator "General:"
    opts.on('-h','--help',"Help") {@options[:mode] = :help}

    opts.separator ""
    opts.separator "Examples:"
    opts.separator "  Show current Collins instance in use"
    opts.separator "    #{PROG_NAME}"
    opts.separator "  Set current Collins instance to jfk01"
    opts.separator "    #{PROG_NAME} jfk01"
    opts.separator "  List all Collins instances configured"
    opts.separator "    #{PROG_NAME} -l"
    opts.separator "  Set up new Collins instance for sfo01"
    opts.separator "    #{PROG_NAME} --new sfo01 --host https://collins.sfo01.company.net"
    opts.separator "  Iterate over all instances and find assets"
    opts.separator "    for dc in $(#{PROG_NAME} -l) ; do #{PROG_NAME} $dc ; collins find -p DEVELOPMENT ; done"
  end
  @parser.parse!(argv)
  #TODO(gabe): if user not specified, read from env or something

  # if mode is :show (default), and an argument was provided in argv, set mode to :set
  if @options[:mode] == :show && argv.length > 0
    @options[:mode] = :set
    @options[:dc] = argv.first
  end

  @parsed = true
  self
end

#run!Object



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/collins/cli/dc.rb', line 83

def run!
  raise "Options not yet parsed with #parse!" unless @parsed
  raise "Options not yet validated with #validate!" unless @validated
  success = true
  case options[:mode]
  when :help
    puts parser
  when :show
    puts default_datacenter
  when :set
    dc = @options[:dc]
    if !configured_datacenters.include?(dc)
      raise "No Collins configuration for datacenter #{dc.inspect} found. Perhaps you want to create it with '#{PROG_NAME} --new #{dc}'?"
    end
    set_default_datacenter(dc)
  when :list
    dcs = configured_datacenters
    default = default_datacenter
    dcs.each do |dc|
      if dc == default && @options[:show_current]
        puts "#{dc} *"
      else
        puts dc
      end
    end
  when :new
    # check if dc already exists
    dc = @options[:dc]
    if configured_datacenters.include? dc
      raise "Unable to create new configuration for #{dc}: Configuration already exists at #{DEFAULT_CONFIG_PATH}.#{@options[:dc]}"
    end

    uri = @options[:host]
    if uri.nil?
      print "Enter Collins URI for #{dc} (i.e. https://collins.#{dc}.company.net): "
      x = gets
      uri = URI.parse(x.strip)
    end

    user = @options[:user]
    if user.nil?
      default = Etc.getlogin
      print "Enter username (default: #{default}): "
      x = gets.strip
      if x.empty?
        user = default
      else
        user = x
      end
    end

    pw = @options[:pw]
    if pw.nil?
      print "Enter password: "
      pw = STDIN.noecho(&:gets).chomp
      print "\n"
    end
    create_new_datacenter(dc, uri, user, pw, @options[:timeout])

    # if this is the only DC, use it
    has_default_dc = File.symlink?(File.expand_path(DEFAULT_CONFIG_PATH)) rescue false
    if !has_default_dc
      set_default_datacenter(dc)
      puts "Automatically selected #{dc.inspect} as the current datacenter with '#{PROG_NAME} #{dc}'"
    else
      puts "Now, select the Collins instance #{dc.inspect} with '#{PROG_NAME} #{dc}' to access Collins"
    end
  end
  success
end

#set_default_datacenter(dc) ⇒ Object



162
163
164
165
166
167
168
# File 'lib/collins/cli/dc.rb', line 162

def set_default_datacenter dc
  ln = File.expand_path(DEFAULT_CONFIG_PATH)
  if File.exist?(ln) && !File.symlink?(ln)
    raise "Unable to set config to use #{dc}: #{ln} is not a symlink, which means #{PROG_NAME.inspect} is not managing this configuration"
  end
  FileUtils.ln_sf(File.expand_path("~/.collins.yml.#{dc}"), File.expand_path(DEFAULT_CONFIG_PATH))
end

#validate!Object



76
77
78
79
80
81
# File 'lib/collins/cli/dc.rb', line 76

def validate!
  raise "You need to tell me to do something!" if @options[:mode].nil?
  raise "No asset tags found via ARGF" if [:allocate,:delete].include?(options[:mode]) && (options[:tags].nil? or options[:tags].empty?)
  @validated = true
  self
end