Class: Morpheus::Cli::BootScriptsCommand

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

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

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, #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

Constructor Details

#initializeBootScriptsCommand

set_default_subcommand :list



21
22
23
# File 'lib/morpheus/cli/boot_scripts_command.rb', line 21

def initialize()
  # @appliance_name, @appliance_url = Morpheus::Cli::Remote.active_appliance
end

Instance Method Details

#add(args) ⇒ Object



148
149
150
151
152
153
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
# File 'lib/morpheus/cli/boot_scripts_command.rb', line 148

def add(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[fileName]")
    build_option_type_options(opts, options, add_boot_script_option_types(false))
    build_common_options(opts, options, [:options, :json, :dry_run, :quiet, :remote])
  end
  optparse.parse!(args)
  connect(options)
  begin
    options[:options] ||= {}
    # support [boot-script] as first argument still
    if args[0]
      options[:options]['fileName'] = args[0]
    end

    payload = {
      'bootScript' => {}
    }
    # prompt for Script Content unless --file is passed.
    my_options = add_boot_script_option_types()
    if options[:options]['file']
      my_options = my_options.reject {|it| it['fieldName'] == 'content' }
    # elsif options[:options]['content']
    #   my_options = my_options.reject {|it| it['fieldName'] == 'file' }
    else
      my_options = my_options.reject {|it| it['fieldName'] == 'file' }
    end
    params = Morpheus::Cli::OptionTypes.prompt(my_options, options[:options], @api_client, options[:params])
    script_file = params.delete('file')
    if script_file
      if !File.exists?(script_file)
        print_red_alert "File not found: #{script_file}"
        return 1
      end
      payload['bootScript']['content'] = File.read(script_file)
    end
    payload['bootScript'].merge!(params)
    @boot_scripts_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @boot_scripts_interface.dry.create(payload)
      return
    end
    json_response = @boot_scripts_interface.create(payload)
    if options[:json]
      print JSON.pretty_generate(json_response)
      print "\n"
    elsif !options[:quiet]
      print_green_success "Added image build #{payload['bootScript']['fileName']}"
      # list([])
      boot_script = json_response['bootScript']
      get([boot_script['id']])
    end

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

#command_nameObject



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

def command_name
  "image-builder boot-scripts"
end

#connect(opts) ⇒ Object



25
26
27
28
29
# File 'lib/morpheus/cli/boot_scripts_command.rb', line 25

def connect(opts)
  @api_client = establish_remote_appliance_connection(opts)
  @image_builder_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).image_builder
  @boot_scripts_interface = @image_builder_interface.boot_scripts
end

#get(args) ⇒ Object



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
# File 'lib/morpheus/cli/boot_scripts_command.rb', line 93

def get(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[boot-script]")
    build_common_options(opts, options, [:json, :dry_run, :remote])
  end
  optparse.parse!(args)
  if args.count < 1
    print_error Morpheus::Terminal.angry_prompt
    puts_error  "#{command_name} missing argument: [boot-script]\n#{optparse}"
    return 1
  end
  connect(options)
  begin
    @boot_scripts_interface.setopts(options)
    if options[:dry_run]
      if args[0].to_s =~ /\A\d{1,}\Z/
        print_dry_run @boot_scripts_interface.dry.get(args[0].to_i)
      else
        print_dry_run @boot_scripts_interface.dry.list({name:args[0]})
      end
      return
    end
    boot_script = find_boot_script_by_name_or_id(args[0])
    return 1 if boot_script.nil?
    json_response = {'bootScript' => boot_script}  # skip redundant request
    # json_response = @boot_scripts_interface.get(boot_script['id'])
    boot_script = json_response['bootScript']
    if options[:json]
      print JSON.pretty_generate(json_response)
      return
    end
    print_h1 "Boot Script Details"
    print cyan
    description_cols = {
      "ID" => 'id',
      "Name" => 'fileName',
      # "Description" => 'description',
      # "Account" => lambda {|it| it['account'] ? it['account']['name'] : '' },
      # "Visibility" => lambda {|it| it['visibility'] ? it['visibility'].capitalize() : 'Private' },
    }
    print_description_list(description_cols, boot_script)

    print_h2 "Script"
    print cyan
    puts boot_script['content']
    
    print reset,"\n"

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

#handle(args) ⇒ Object



31
32
33
# File 'lib/morpheus/cli/boot_scripts_command.rb', line 31

def handle(args)
  handle_subcommand(args)
end

#list(args) ⇒ Object



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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/morpheus/cli/boot_scripts_command.rb', line 35

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

    json_response = @boot_scripts_interface.list(params)
    if options[:json]
      print JSON.pretty_generate(json_response)
      print "\n"
      return
    end
    boot_scripts = json_response['bootScripts']
    title = "Morpheus Boot Scripts"
    subtitles = []
    if params[:phrase]
      subtitles << "Search: #{params[:phrase]}".strip
    end
    print_h1 title, subtitles
    if boot_scripts.empty?
      print cyan,"No boot scripts found.",reset,"\n"
    else
      rows = boot_scripts.collect {|boot_script| 
          row = {
            id: boot_script['id'],
            name: boot_script['fileName']
          }
          row
        }
        columns = [:id, :name]
        if options[:include_fields]
          columns = options[:include_fields]
        end
        print cyan
        print as_pretty_table(rows, columns, options)
        print reset
        print_results_pagination(json_response)
    end
    print reset,"\n"
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    exit 1
  end
end

#remove(args) ⇒ Object



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
# File 'lib/morpheus/cli/boot_scripts_command.rb', line 278

def remove(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[boot-script]")
    build_common_options(opts, options, [:auto_confirm, :json, :dry_run, :remote])
  end
  optparse.parse!(args)

  if args.count < 1
    print_error Morpheus::Terminal.angry_prompt
    puts_error  "#{command_name} missing argument: [boot-script]\n#{optparse}"
    return 1
  end

  connect(options)
  begin
    boot_script = find_boot_script_by_name_or_id(args[0])
    return 1 if boot_script.nil?

    unless options[:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the boot script: #{boot_script['fileName']}?")
      return 9, "aborted command"
    end
    @boot_scripts_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @boot_scripts_interface.dry.destroy(boot_script['id'])
      return 0
    end
    json_response = @boot_scripts_interface.destroy(boot_script['id'])
    if options[:json]
      print JSON.pretty_generate(json_response)
      print "\n"
    else
      print_green_success "Removed boot script #{boot_script['fileName']}"
      # list([])
    end
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#update(args) ⇒ Object



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
250
251
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
# File 'lib/morpheus/cli/boot_scripts_command.rb', line 208

def update(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[boot-script] [options]")
    build_option_type_options(opts, options, update_boot_script_option_types(false))
    build_common_options(opts, options, [:options, :json, :dry_run, :remote])
  end
  optparse.parse!(args)
  if args.count < 1
    puts optparse
    return 1
  end
  connect(options)

  begin
    boot_script = find_boot_script_by_name_or_id(args[0])

    payload = {
      'bootScript' => {id: boot_script["id"]}
    }

    params = options[:options] || {}
    #puts "parsed params is : #{params.inspect}"
    params = params.select {|k,v| params[k].to_s != "" }
    if params.empty?
      print_red_alert "Specify at least one option to update"
      puts optparse
      return 1
    end

    # prompt for Script Content unless --file is passed.
    # my_options = add_boot_script_option_types()
    # if options[:options]['file']
    #   my_options = my_options.reject {|it| it['fieldName'] == 'content' }
    # # elsif options[:options]['content']
    # #   my_options = my_options.reject {|it| it['fieldName'] == 'file' }
    # else
    #   my_options = my_options.reject {|it| it['fieldName'] == 'file' }
    # end
    # params = Morpheus::Cli::OptionTypes.prompt(my_options, options[:options], @api_client, options[:params])
    script_file = params.delete('file')
    if script_file
      if !File.exists?(script_file)
        print_red_alert "File not found: #{script_file}"
        return 1
      end
      payload['bootScript']['content'] = File.read(script_file)
    end
    payload['bootScript'].merge!(params)
    @boot_scripts_interface.setopts(options)
    if options[:dry_run]
      print_dry_run @boot_scripts_interface.dry.update(boot_script["id"], payload)
      return
    end

    json_response = @boot_scripts_interface.update(boot_script["id"], payload)
    if options[:json]
      print JSON.pretty_generate(json_response)
      print "\n"
    else
      print_green_success "Updated boot script #{boot_script['fileName']}"
      get([boot_script['id']])
    end
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end