Class: Morpheus::Cli::LibraryContainerTemplatesCommand

Inherits:
Object
  • Object
show all
Includes:
CliCommand, LibraryHelper
Defined in:
lib/morpheus/cli/library_container_templates_command.rb

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from LibraryHelper

#api_client, #find_container_type_by_id, #find_container_type_by_name, #find_container_type_by_name_or_id, #find_instance_type_by_id, #find_instance_type_by_name, #find_instance_type_by_name_or_id, #find_option_type_by_id, #find_option_type_by_name, #find_option_type_by_name_or_id, #find_option_type_list_by_id, #find_option_type_list_by_name, #find_option_type_list_by_name_or_id, #find_spec_template_by_id, #find_spec_template_by_name, #find_spec_template_by_name_or_id, #find_spec_template_type_by_id, #find_spec_template_type_by_name_or_code, #find_spec_template_type_by_name_or_code_id, #format_container_type_technology, #format_instance_type_technology, #get_all_spec_template_types, included, #load_balance_protocols_dropdown, #print_container_types_table, #print_instance_types_table, #print_resource_specs_table, #prompt_exposed_ports, #prompt_for_container_types, #prompt_for_option_types, #prompt_for_spec_templates

Methods included from CliCommand

#apply_options, #build_common_options, #build_option_type_options, #build_standard_add_options, #build_standard_delete_options, #build_standard_get_options, #build_standard_list_options, #build_standard_post_options, #build_standard_put_options, #build_standard_remove_options, #build_standard_update_options, #command_description, #command_name, #default_refresh_interval, #default_sigdig, #default_subcommand, #establish_remote_appliance_connection, #full_command_usage, #get_subcommand_description, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_bytes_param, #parse_id_list, #parse_list_options, #parse_list_subtitles, #parse_passed_options, #parse_payload, #parse_query_options, #print, #print_error, #println, #prog_name, #puts, #puts_error, #raise_args_error, #raise_command_error, #render_response, #run_command_for_each_arg, #subcommand_aliases, #subcommand_description, #subcommand_usage, #subcommands, #usage, #validate_outfile, #verify_args!, #visible_subcommands

Instance Method Details

#_get(id, options) ⇒ Object



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/morpheus/cli/library_container_templates_command.rb', line 96

def _get(id, options)

  begin
    container_template = find_container_template_by_name_or_id(id)
    if container_template.nil?
      return 1
    end
    @container_templates_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @container_templates_interface.dry.get(container_template['id'])
      return
    end
    json_response = @container_templates_interface.get(container_template['id'])
    container_template = json_response['containerTemplate']
    instances = json_response['instances'] || []
    servers = json_response['servers'] || []
    if options[:json]
      puts as_json(json_response, options, "containerTemplate")
      return 0
    elsif options[:yaml]
      puts as_yaml(json_response, options, "containerTemplate")
      return 0
    elsif options[:csv]
      puts records_as_csv([json_response['containerTemplate']], options)
      return 0
    end

    print_h1 "File Template Details"
    print cyan
    description_cols = {
      "ID" => lambda {|it| it['id'] },
      "Name" => lambda {|it| it['name'] },
      "File Name" => lambda {|it| it['fileName'] },
      "File Path" => lambda {|it| it['filePath'] },
      "Setting Category" => lambda {|it| it['settingCategory'] },
      "Setting Name" => lambda {|it| it['settingName'] },
      "Phase" => lambda {|it| it['templatePhase'] },
      "Owner" => lambda {|it| it['account'] ? it['account']['name'] : '' },
      # "Enabled" => lambda {|it| format_boolean it['enabled'] },
      "Created" => lambda {|it| format_local_dt(it['dateCreated']) },
      "Updated" => lambda {|it| format_local_dt(it['lastUpdated']) }
    }
    print_description_list(description_cols, container_template)

    print_h2 "Template"

    puts container_template['template']

    

    print reset,"\n"

  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#add(args) ⇒ Object



154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
# File 'lib/morpheus/cli/library_container_templates_command.rb', line 154

def add(args)
  options = {}
  params = {'templatePhase' => 'provision'}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name]")
    opts.on('--name VALUE', String, "Name") do |val|
      params['name'] = val
    end
    opts.on('--fileName VALUE', String, "File Name") do |val|
      params['fileName'] = val
    end
    opts.on('--filePath VALUE', String, "File Path") do |val|
      params['filePath'] = val
    end
    # opts.on('--code VALUE', String, "Code") do |val|
    #   params['code'] = val
    # end
    # opts.on('--description VALUE', String, "Description") do |val|
    #   params['description'] = val
    # end
    opts.on('--phase [start|stop|postProvision]', String, "Template Phase. Default is 'provision'") do |val|
      params['scriptPhase'] = val
    end
    opts.on('--category VALUE', String, "Category") do |val|
      params['category'] = val
    end
    # opts.on('--enabled [on|off]', String, "Can be used to disable it") do |val|
    #   options['enabled'] = !(val.to_s == 'off' || val.to_s == 'false')
    # end
    opts.on('--template TEXT', String, "Contents of the template.") do |val|
      params['template'] = val
    end
    opts.on('--file FILE', "File containing the template. This can be used instead of --template" ) do |filename|
      full_filename = File.expand_path(filename)
      if File.exists?(full_filename)
        params['template'] = File.read(full_filename)
      else
        print_red_alert "File not found: #{full_filename}"
        exit 1
      end
      # use the filename as the name by default.
      if !params['name']
        params['name'] = File.basename(full_filename)
      end
      if !params['fileName']
        params['fileName'] = File.basename(full_filename)
      end
      # if !params['filePath']
      #   params['filePath'] = File.dirname(full_filename)
      # end
    end
    build_common_options(opts, options, [:options, :payload, :json, :dry_run, :remote, :quiet])
    opts.footer = "Create a new file template." + "\n" +
                  "[name] is required and can be passed as --name instead."
  end
  optparse.parse!(args)
  if args.count > 1
    print_error Morpheus::Terminal.angry_prompt
    puts_error  "wrong number of arguments, expected 0-1 and got (#{args.count}) #{args.inspect}\n#{optparse}"
    return 1
  end
  # support [name] as first argument
  if args[0]
    params['name'] = args[0]
  end
  connect(options)
  begin
    # construct payload
    payload = nil
    if options[:payload]
      payload = options[:payload]
    else
      # merge -O options into normally parsed options
      params.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
      # todo: prompt?
      payload = {'containerTemplate' => params}
    end
    @container_templates_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @container_templates_interface.dry.create(payload)
      return
    end
    json_response = @container_templates_interface.create(payload)
    if options[:json]
      puts as_json(json_response, options)
    elsif !options[:quiet]
      container_template = json_response['containerTemplate']
      print_green_success "Added file template #{container_template['name']}"
      _get(container_template['id'], {})
    end
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#connect(opts) ⇒ Object



12
13
14
15
# File 'lib/morpheus/cli/library_container_templates_command.rb', line 12

def connect(opts)
  @api_client = establish_remote_appliance_connection(opts)
  @container_templates_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).library_container_templates
end

#get(args) ⇒ Object



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/morpheus/cli/library_container_templates_command.rb', line 78

def get(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name]")
    build_common_options(opts, options, [:json, :yaml, :csv, :fields, :dry_run, :remote])
  end
  optparse.parse!(args)
  if args.count < 1
    puts optparse
    return 1
  end
  connect(options)
  id_list = parse_id_list(args)
  return run_command_for_each_arg(id_list) do |arg|
    _get(arg, options)
  end
end

#handle(args) ⇒ Object



17
18
19
# File 'lib/morpheus/cli/library_container_templates_command.rb', line 17

def handle(args)
  handle_subcommand(args)
end

#list(args) ⇒ Object



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

def list(args)
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage()
    build_common_options(opts, options, [:list, :json, :yaml, :csv, :fields, :dry_run, :remote])
  end
  optparse.parse!(args)
  connect(options)
  begin
    [:phrase, :offset, :max, :sort, :direction, :lastUpdated].each do |k|
      params[k] = options[k] unless options[k].nil?
    end
    @container_templates_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @container_templates_interface.dry.list(params)
      return
    end

    json_response = @container_templates_interface.list(params)
    if options[:json]
      puts as_json(json_response, options, "containerTemplates")
      return 0
    elsif options[:csv]
      puts records_as_csv(json_response['containerTemplates'], options)
      return 0
    elsif options[:yaml]
      puts as_yaml(json_response, options, "containerTemplates")
      return 0
    end
    container_templates = json_response['containerTemplates']
    title = "Morpheus Library - File Templates"
    subtitles = []
    # if group
    #   subtitles << "Group: #{group['name']}".strip
    # end
    # if cloud
    #   subtitles << "Cloud: #{cloud['name']}".strip
    # end
    if params[:phrase]
      subtitles << "Search: #{params[:phrase]}".strip
    end
    print_h1 title, subtitles
    if container_templates.empty?
      print cyan,"No container file templates found.",reset,"\n"
    else
      print_container_templates_table(container_templates, options)
      print_results_pagination(json_response, {:label => "container file template", :n_label => "container file templates"})
      # print_results_pagination(json_response)
    end
    print reset,"\n"
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#remove(args) ⇒ Object



335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
# File 'lib/morpheus/cli/library_container_templates_command.rb', line 335

def remove(args)
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name]")
    build_common_options(opts, options, [:json, :dry_run, :quiet, :auto_confirm])
  end
  optparse.parse!(args)
  if args.count < 1
    puts optparse
    return 127
  end
  connect(options)

  begin
    container_template = find_container_template_by_name_or_id(args[0])
    if container_template.nil?
      return 1
    end

    unless options[:yes] || ::Morpheus::Cli::OptionTypes::confirm("Are you sure you would like to delete file template '#{container_template['name']}'?", options)
      return false
    end

    # payload = {
    #   'containerTemplate' => {id: container_template["id"]}
    # }
    # payload['containerTemplate'].merge!(container_template)
    payload = params
    @container_templates_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @container_templates_interface.dry.destroy(container_template["id"])
      return
    end

    json_response = @container_templates_interface.destroy(container_template["id"])
    if options[:json]
      puts as_json(json_response, options)
    elsif !options[:quiet]
      print_green_success "Deleted file template #{container_template['name']}"
    end
    return 0, nil
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#update(args) ⇒ Object



252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
# File 'lib/morpheus/cli/library_container_templates_command.rb', line 252

def update(args)
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name]")
    opts.on('--name VALUE', String, "Name") do |val|
      params['name'] = val
    end
    opts.on('--fileName VALUE', String, "File Name") do |val|
      params['fileName'] = val
    end
    opts.on('--filePath VALUE', String, "File Path") do |val|
      params['filePath'] = val
    end
    # opts.on('--code VALUE', String, "Code") do |val|
    #   params['code'] = val
    # end
    # opts.on('--description VALUE', String, "Description") do |val|
    #   params['description'] = val
    # end
    opts.on('--phase [start|stop]', String, "Template Phase") do |val|
      params['scriptPhase'] = val
    end

    # opts.on('--enabled [on|off]', String, "Can be used to disable it") do |val|
    #   options['enabled'] = !(val.to_s == 'off' || val.to_s == 'false')
    # end
    opts.on('--template TEXT', String, "Contents of the template.") do |val|
      params['template'] = val
    end
    opts.on('--file FILE', "File containing the template. This can be used instead of --template" ) do |filename|
      full_filename = File.expand_path(filename)
      if File.exists?(full_filename)
        params['template'] = File.read(full_filename)
      else
        print_red_alert "File not found: #{full_filename}"
        exit 1
      end
    end
    build_common_options(opts, options, [:options, :payload, :json, :dry_run, :remote, :quiet])
    opts.footer = "Update a file template." + "\n" +
                  "[name] is required. This is the name or id of a file template."
  end
  optparse.parse!(args)
  if args.count != 1
    print_error Morpheus::Terminal.angry_prompt
    puts_error  "wrong number of arguments, expected 1 and got (#{args.count}) #{args.inspect}\n#{optparse}"
    return 1
  end
  connect(options)
  begin
    container_template = find_container_template_by_name_or_id(args[0])
    if container_template.nil?
      return 1
    end
    # construct payload
    payload = nil
    if options[:payload]
      payload = options[:payload]
    else
      # merge -O options into normally parsed options
      params.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
      payload = {'containerTemplate' => params}
    end
    @container_templates_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @container_templates_interface.dry.update(container_template["id"], payload)
      return
    end
    json_response = @container_templates_interface.update(container_template["id"], payload)
    if options[:json]
      puts as_json(json_response, options)
    elsif !options[:quiet]
      print_green_success "Updated file template #{container_template['name']}"
      _get(container_template['id'], {})
    end
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end