Class: Morpheus::Cli::UserSettingsCommand

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

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from CliCommand

#build_common_options, #build_option_type_options, #command_name, #default_subcommand, #establish_remote_appliance_connection, #full_command_usage, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_id_list, #parse_list_options, #parse_list_subtitles, #print, #print_error, #puts, #puts_error, #raise_command_error, #run_command_for_each_arg, #subcommand_aliases, #subcommand_usage, #subcommands, #usage, #verify_access_token!

Constructor Details

#initializeUserSettingsCommand

Returns a new instance of UserSettingsCommand.



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

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

Instance Method Details

#clear_access_token(args) ⇒ Object



333
334
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
# File 'lib/morpheus/cli/user_settings_command.rb', line 333

def clear_access_token(args)
  raw_args = args
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[client-id]")
    build_common_options(opts, options, [:payload, :options, :json, :dry_run, :quiet, :remote])
    opts.footer = "Clear API access token for a specific client.\n" +
                  "[client-id] is required. This is the id of an api client."
  end
  optparse.parse!(args)
  connect(options)
  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
  params['clientId'] = args[0]
  begin
    payload = {}
    if options[:dry_run]
      print_dry_run @user_settings_interface.dry.clear_access_token(params, payload)
      return
    end
    json_response = @user_settings_interface.clear_access_token(params, payload)
    if options[:quiet]
      return 0
    elsif options[:json]
      puts as_json(json_response, options)
      return 0
    end
    new_access_token = json_response['token']
    # update credentials if regenerating cli token
    # if params['clientId'] == 'morph-cli'
    #   logout_result = Morpheus::Cli::Credentials.new(@appliance_name, @appliance_url).logout
    # end
    print_green_success "Cleared #{params['clientId']} access token"
    if params['clientId'] == 'morph-cli'
      print yellow,"Your current access token is no longer valid, you will need to login again.",reset,"\n"
    end
    #get([])
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#connect(opts) ⇒ Object



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

def connect(opts)
  @api_client = establish_remote_appliance_connection(opts)
  @user_settings_interface = @api_client.
end

#get(args) ⇒ Object



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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/morpheus/cli/user_settings_command.rb', line 25

def get(args)
  raw_args = args
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage()
    build_common_options(opts, options, [:query, :json, :yaml, :csv, :fields, :dry_run, :remote])
    opts.footer = "Get your user settings."
  end
  optparse.parse!(args)
  connect(options)
  if args.count != 0
    print_error Morpheus::Terminal.angry_prompt
    puts_error  "wrong number of arguments, expected 0 and got (#{args.count}) #{args.inspect}\n#{optparse}"
    return 1
  end
  
  begin
    params.merge!(parse_list_options(options))
    if options[:dry_run]
      print_dry_run @user_settings_interface.dry.get(params)
      return
    end
    json_response = @user_settings_interface.get(params)
    if options[:json]
      puts as_json(json_response, options, "user")
      return 0
    elsif options[:yaml]
      puts as_yaml(json_response, options, "user")
      return 0
    elsif options[:csv]
      puts records_as_csv([json_response['user']], options)
      return 0
    end

     = json_response['user'] || json_response['userSettings']
    access_tokens = ['accessTokens'] || json_response['accessTokens'] || json_response['apiAccessTokens'] || []

    print_h1 "User Settings"
    print cyan
    description_cols = {
      #"ID" => lambda {|it| it['id'] },
      "ID" => lambda {|it| it['id'] },
      "Username" => lambda {|it| it['username'] },
      "First Name" => lambda {|it| it['firstName'] },
      "Last Name" => lambda {|it| it['lastName'] },
      "Email" => lambda {|it| it['email'] },
      "Avatar" => lambda {|it| it['avatar'] ? it['avatar'].split('/').last : '' },
      "Notifications" => lambda {|it| format_boolean(it['receiveNotifications']) },
      "Linux Username" => lambda {|it| it['linuxUsername'] },
      "Linux Password" => lambda {|it| it['linuxPassword'] },
      "Linux Key Pair" => lambda {|it| it['linuxKeyPairId'] },
      "Windows Username" => lambda {|it| it['windowsUsername'] },
      "Windows Password" => lambda {|it| it['windowsPassword'] },
    }
    print_description_list(description_cols, )      

    if access_tokens && !access_tokens.empty?
      print_h2 "API Access Tokens"
      cols = {
        #"ID" => lambda {|it| it['id'] },
        "Client ID" => lambda {|it| it['clientId'] },
        "Username" => lambda {|it| it['username'] },
        "Expiration" => lambda {|it| format_local_dt(it['expiration']) }
      }
      print cyan
      puts as_pretty_table(access_tokens, cols)
    end
    
    print reset #, "\n"
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#handle(args) ⇒ Object



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

def handle(args)
  handle_subcommand(args)
end

#list_clients(args) ⇒ Object



381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
# File 'lib/morpheus/cli/user_settings_command.rb', line 381

def list_clients(args)
  raw_args = args
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage()
    build_common_options(opts, options, [:query, :json, :yaml, :csv, :fields, :dry_run, :remote])
    opts.footer = "List available api clients."
  end
  optparse.parse!(args)
  connect(options)
  if args.count != 0
    print_error Morpheus::Terminal.angry_prompt
    puts_error  "wrong number of arguments, expected 0 and got (#{args.count}) #{args.inspect}\n#{optparse}"
    return 1
  end
  
  begin
    params.merge!(parse_list_options(options))
    if options[:dry_run]
      print_dry_run @user_settings_interface.dry.available_clients(params)
      return
    end
    json_response = @user_settings_interface.available_clients(params)
    if options[:json]
      puts as_json(json_response, options, "clients")
      return 0
    elsif options[:yaml]
      puts as_yaml(json_response, options, "clients")
      return 0
    elsif options[:csv]
      puts records_as_csv(json_response['clients'], options)
      return 0
    end

    clients = json_response['clients'] || json_response['apiClients']
    print_h1 "Morpheus API Clients"
    columns = {
      "Client ID" => lambda {|it| it['clientId'] }
    }
    print cyan
    puts as_pretty_table(clients, columns)
    print reset #, "\n"
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#regenerate_access_token(args) ⇒ Object



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

def regenerate_access_token(args)
  raw_args = args
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[client-id]")
    build_common_options(opts, options, [:payload, :options, :json, :dry_run, :quiet, :remote])
    opts.footer = "Regenerate API access token for a specific client.\n" +
                  "[client-id] is required. This is the id of an api client."
  end
  optparse.parse!(args)
  connect(options)
  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
  params['clientId'] = args[0]
  begin
    payload = {}
    if options[:dry_run]
      print_dry_run @user_settings_interface.dry.regenerate_access_token(params, payload)
      return
    end
    json_response = @user_settings_interface.regenerate_access_token(params, payload)
    new_access_token = json_response['token']
    # update credentials if regenerating cli token
    if params['clientId'] == 'morph-cli'
      if new_access_token
         = {:remote_token => new_access_token}
         = Morpheus::Cli::Credentials.new(@appliance_name, @appliance_url).()
      end
    end
    if options[:quiet]
      return 0
    elsif options[:json]
      puts as_json(json_response, options)
      return 0
    end
    print_green_success "Regenerated #{params['clientId']} access token: #{new_access_token}"
    get([])
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#remove_avatar(args) ⇒ Object



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

def remove_avatar(args)
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[file]")
    build_common_options(opts, options, [:json, :dry_run, :quiet, :remote])
    opts.footer = "Remove your avatar profile image."
  end
  optparse.parse!(args)
  connect(options)
  if args.count != 0
    print_error Morpheus::Terminal.angry_prompt
    puts_error  "wrong number of arguments, expected 0 and got (#{args.count}) #{args.inspect}\n#{optparse}"
    return 1
  end
  
  begin
    if options[:dry_run]
      print_dry_run @user_settings_interface.dry.remove_avatar(params)
      return
    end
    json_response = @user_settings_interface.remove_avatar(params)
    if options[:quiet]
      return 0
    elsif options[:json]
      puts as_json(json_response, options)
      return 0
    end

    print_green_success "Removed avatar"
    get([])
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#update(args) ⇒ Object



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/user_settings_command.rb', line 103

def update(args)
  raw_args = args
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[options]")
    build_common_options(opts, options, [:payload, :options, :json, :dry_run, :quiet, :remote])
    opts.footer = "Update your user settings."
  end
  optparse.parse!(args)
  connect(options)
  if args.count != 0
    print_error Morpheus::Terminal.angry_prompt
    puts_error  "wrong number of arguments, expected 0 and got (#{args.count}) #{args.inspect}\n#{optparse}"
    return 1
  end
  
  begin
    payload = {}
    if options[:payload]
      payload = options[:payload]
    else

    end

    if options[:options]
      payload['user'] ||= {}
      payload['user'].deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) })
    end

    if options[:dry_run]
      print_dry_run @user_settings_interface.dry.update(params, payload)
      return
    end
    json_response = @user_settings_interface.update(params, payload)
    if options[:quiet]
      return 0
    elsif options[:json]
      puts as_json(json_response, options)
      return 0
    end

    print_green_success "Updated user settings"
    get([])
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#update_avatar(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
# File 'lib/morpheus/cli/user_settings_command.rb', line 154

def update_avatar(args)
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[file]")
    build_common_options(opts, options, [:json, :dry_run, :quiet, :remote])
    opts.footer = "Update your avatar profile image.\n" +
                  "[file] is required. This is the local path of a file to upload [png|jpg|svg]."
  end
  optparse.parse!(args)
  connect(options)
  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
  filename = File.expand_path(args[0].to_s)
  image_file = nil
  if filename && File.file?(filename)
    # maybe validate it's an image file? [.png|jpg|svg]
    image_file = File.new(filename, 'rb')
  else
    # print_red_alert "File not found: #{filename}"
    puts_error "#{Morpheus::Terminal.angry_prompt}File not found: #{filename}"
    return 1
  end
  
  begin
    if options[:dry_run]
      print_dry_run @user_settings_interface.dry.update_avatar(image_file, params)
      return
    end
    json_response = @user_settings_interface.update_avatar(image_file, params)
    if options[:quiet]
      return 0
    elsif options[:json]
      puts as_json(json_response, options)
      return 0
    end

    print_green_success "Updated avatar"
    get([])
    return 0
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#view_avatar(args) ⇒ Object



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
277
278
279
280
281
282
283
# File 'lib/morpheus/cli/user_settings_command.rb', line 241

def view_avatar(args)
  raw_args = args
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage()
    build_common_options(opts, options, [:remote])
    opts.footer = "View your avatar profile image.\n" +
                  "This opens the avatar image url with a web browser."
  end
  optparse.parse!(args)
  connect(options)
  if args.count != 0
    print_error Morpheus::Terminal.angry_prompt
    puts_error  "wrong number of arguments, expected 0 and got (#{args.count}) #{args.inspect}\n#{optparse}"
    return 1
  end
  
  begin
    
    json_response = @user_settings_interface.get(params)
     = json_response['user'] || json_response['userSettings']
    
    if ['avatar']
      link = ['avatar']
      if RbConfig::CONFIG['host_os'] =~ /mswin|mingw|cygwin/
        system "start #{link}"
      elsif RbConfig::CONFIG['host_os'] =~ /darwin/
        system "open #{link}"
      elsif RbConfig::CONFIG['host_os'] =~ /linux|bsd/
        system "xdg-open #{link}"
      end
      return 0, nil
    else
      print_error red,"No avatar image found.",reset,"\n"
      return 1
    end
    
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end