Class: Morpheus::Cli::Users

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

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from AccountsHelper

#accounts_interface, #find_account_by_id, #find_account_by_name, #find_account_by_name_or_id, #find_account_from_options, #find_role_by_id, #find_role_by_name, #find_role_by_name_or_id, #find_user_by_id, #find_user_by_username, #find_user_by_username_or_id, #format_role_type, #format_user_role_names, #get_access_string, included, #print_accounts_table, #print_roles_table, #print_users_table, #roles_interface, #users_interface

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

#initializeUsers

Returns a new instance of Users.



18
19
20
# File 'lib/morpheus/cli/users.rb', line 18

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

Instance Method Details

#add(args) ⇒ Object



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
277
278
279
280
281
282
283
284
285
286
287
288
# File 'lib/morpheus/cli/users.rb', line 218

def add(args)
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[options]")
    build_option_type_options(opts, options, add_user_option_types)
    build_common_options(opts, options, [:account, :options, :payload, :json, :dry_run])
  end
  optparse.parse!(args)

  connect(options)
  begin

     = (options)
     =  ? ['id'] : nil

    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]
      # remove role option_type, it is just for help display, the role prompt is separate down below
      prompt_option_types = add_user_option_types().reject {|it| 'role' == it['fieldName'] }
      v_prompt = Morpheus::Cli::OptionTypes.prompt(prompt_option_types, options[:options], @api_client, options[:params])
      params.deep_merge!(v_prompt)
      if params['instanceLimits']
        params['instanceLimits']['maxStorage'] = params['instanceLimits']['maxStorage'].to_i if params['instanceLimits']['maxStorage'].to_s.strip != ''
        params['instanceLimits']['maxMemory'] = params['instanceLimits']['maxMemory'].to_i if params['instanceLimits']['maxMemory'].to_s.strip != ''
        params['instanceLimits']['maxCpu'] = params['instanceLimits']['maxCpu'].to_i if params['instanceLimits']['maxCpu'].to_s.strip != ''
      end
      # prompt for roles
      selected_roles = []
      selected_roles += params.delete('role').split(',').collect {|r| r.strip.empty? ? nil : r.strip}.uniq if params['role']
      selected_roles += params.delete('roles').split(',').collect {|r| r.strip.empty? ? nil : r.strip}.uniq if params['roles']
      roles = prompt_user_roles(, nil, selected_roles, options)
      if !roles.empty?
        params['roles'] = roles.collect {|r| {id: r['id']} }
      end      
      payload = {'user' => params}
    end

    if options[:dry_run]
      print_dry_run @users_interface.dry.create(, payload)
      return
    end
    json_response = @users_interface.create(, payload)
    if options[:json]
      print JSON.pretty_generate(json_response)
      print "\n"
    else
    username = "" # json_response['user']['username']
    username = payload['user']['username'] if payload['user'] && payload['user']['username']
    if 
      print_green_success "Added user #{username} to account #{['name']}"
    else
      print_green_success "Added user #{username}"
    end
    details_options = [username]
    if 
      details_options.push "--account-id", ['id'].to_s
    end
    get(details_options)
  end
    

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

#change_password(args) ⇒ Object



377
378
379
380
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
# File 'lib/morpheus/cli/users.rb', line 377

def change_password(args)
  options = {}
  new_password = nil
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[username] [options]")
    opts.on('--password VALUE', String, "New password") do |val|
      new_password = val
    end
    build_common_options(opts, options, [:account, :options, :json, :dry_run, :remote])
  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}\n#{optparse}"
    puts optparse
    return 1
  end

  connect(options)
  begin

     = (options)
     =  ? ['id'] : nil

    user = find_user_by_username_or_id(, args[0])
    return 1 if user.nil?

    if new_password.nil?
      
      password_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'password', 'fieldLabel' => 'New Password', 'type' => 'password', 'required' => true}], options[:options], @api_client)
      new_password = password_prompt['password']

      confirm_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'passwordConfirmation', 'fieldLabel' => 'Confirm Password', 'type' => 'password', 'required' => true}], options[:options], @api_client)
      confirm_password = confirm_prompt['passwordConfirmation']
      if confirm_password != new_password
        print_red_alert "Confirm password did not match."
        return 1
      end
    end

    if new_password.nil? || new_password.empty?
      print_red_alert "A new password is required"
      return 1
    end

    payload = {
      'user' => {
        'password' => new_password, 
        'passwordConfirmation' => new_password
      } 
    }
    json_response = @users_interface.update(, user['id'], payload)
    if options[:dry_run]
      print_dry_run @users_interface.dry.update(, user['id'], payload)
      return
    end

    if options[:json]
      puts JSON.pretty_generate(json_response)
    else
      print_green_success "Updated password for user #{user['username']}"
    end

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

#connect(opts) ⇒ Object



22
23
24
25
26
27
28
# File 'lib/morpheus/cli/users.rb', line 22

def connect(opts)
  @api_client = establish_remote_appliance_connection(opts)
  @whoami_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).whoami
  @users_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).users
  @accounts_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).accounts
  @roles_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).roles
end

#get(args) ⇒ Object



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
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
207
208
209
210
211
212
213
214
215
216
# File 'lib/morpheus/cli/users.rb', line 94

def get(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[username]")
    opts.on('-f','--feature-access', "Display Feature Access") do |val|
      options[:include_feature_access] = true
    end
    # opts.on(nil,'--group-access', "Display Group Access") do
    #   options[:include_group_access] = true
    # end
    # opts.on(nil,'--cloud-access', "Display Cloud Access") do
    #   options[:include_cloud_access] = true
    # end
    # opts.on(nil,'--instance-type-access', "Display Instance Type Access") do
    #   options[:include_instance_type_access] = true
    # end
    opts.on(nil,'--all-access', "Display All Access Lists") do
      options[:include_feature_access] = true
      options[:include_group_access] = true
      options[:include_cloud_access] = true
      options[:include_instance_type_access] = true
    end
    build_common_options(opts, options, [:account, :json, :yaml, :csv, :fields, :dry_run, :remote])
    opts.footer = "Get details about a user." + "\n" +
                  "[username] is required. This is the username or id of a user."
  end
  optparse.parse!(args)

  if args.count < 1
    puts optparse
    return 1
  end

  connect(options)
  begin
     = (options)
     =  ? ['id'] : nil
    if options[:dry_run]
      if args[0].to_s =~ /\A\d{1,}\Z/
        print_dry_run @users_interface.dry.get(, args[0].to_i)
      else
        print_dry_run @users_interface.dry.get(, {username: args[0]})
      end
      if options[:include_feature_access]
        print_dry_run @users_interface.dry.feature_permissions(, ":id")
      end
      return
    end
    # todo: users_response = @users_interface.list(account_id, {name: name})
    #       there may be response data outside of user that needs to be displayed
    user = find_user_by_username_or_id(, args[0])
    return 1 if user.nil?
    
    json_response =  {'user' => user}
    # json_response['user']['featurePermissions'] = user_feature_permissions if options[:include_feature_access]

    if options[:include_fields]
      json_response = {'user' => filter_data(user, options[:include_fields]) }
    end
    if options[:json]
      puts as_json(json_response, options)
      puts as_json(@users_interface.feature_permissions(, user['id']), options) if options[:include_feature_access]
      return 0
    elsif options[:yaml]
      puts as_yaml(json_response, options)
      puts as_yaml(@users_interface.feature_permissions(, user['id']), options) if options[:include_feature_access]
      return 0
    elsif options[:csv]
      puts records_as_csv([user], options)
      return 0
    else
      user_feature_permissions_json = nil
      user_feature_permissions = nil
      if options[:include_feature_access]
        user_feature_permissions_json = @users_interface.feature_permissions(, user['id'])
        user_feature_permissions = user_feature_permissions_json['featurePermissions']
      end
      print_h1 "User Details"
      print cyan
      description_cols = {
        "ID" => 'id',
        "Account" => lambda {|it| it['account'] ? it['account']['name'] : '' },
        # "First" => 'firstName',
        # "Last" => 'lastName',
        # "Name" => 'displayName',
        "Name" => lambda {|it| it['firstName'] ? it['displayName'] : '' },
        "Username" => 'username',
        "Email" => 'email',
        "Role" => lambda {|it| format_user_role_names(it) },
        "Created" => lambda {|it| format_local_dt(it['dateCreated']) },
        "Updated" => lambda {|it| format_local_dt(it['lastUpdated']) }
      }
      print_description_list(description_cols, user)

      print_h2 "User Instance Limits"
      print cyan
      print_description_list({
        "Max Storage"  => lambda {|it| (it && it['maxStorage'].to_i != 0) ? Filesize.from("#{it['maxStorage']} B").pretty : "no limit" },
        "Max Memory"  => lambda {|it| (it && it['maxMemory'].to_i != 0) ? Filesize.from("#{it['maxMemory']} B").pretty : "no limit" },
        "CPU Count"  => lambda {|it| (it && it['maxCpu'].to_i != 0) ? it['maxCpu'] : "no limit" }
      }, user['instanceLimits'])

      if options[:include_feature_access] && user_feature_permissions
        if user_feature_permissions
          print_h2 "Feature Permissions"
          print cyan
          rows = user_feature_permissions.collect do |code, access|
            {code: code, access: get_access_string(access) }
          end
          tp rows, [:code, :access]
        else
          puts yellow,"No permissions found.",reset
        end
      end

      print cyan
      print reset,"\n"
    end
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#handle(args) ⇒ Object



30
31
32
# File 'lib/morpheus/cli/users.rb', line 30

def handle(args)
  handle_subcommand(args)
end

#list(args) ⇒ Object



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

def list(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage()
    build_common_options(opts, options, [:account, :list, :json, :yaml, :csv, :fields, :json, :dry_run, :remote])
    opts.footer = "List users."
  end
  optparse.parse!(args)
  connect(options)
  begin

     = (options)
     =  ? ['id'] : nil

    params = {}
    [:phrase, :offset, :max, :sort, :direction].each do |k|
      params[k] = options[k] unless options[k].nil?
    end
    if options[:dry_run]
      print_dry_run @users_interface.dry.list(, params)
      return
    end
    json_response = @users_interface.list(, params)
    users = json_response['users']
    if options[:include_fields]
      json_response = {"users" => filter_data(users, options[:include_fields]) }
    end
    if options[:json]
      puts as_json(json_response, options)
      return 0
    elsif options[:yaml]
      puts as_yaml(json_response, options)
      return 0
    elsif options[:csv]
      puts records_as_csv(users, options)
      return 0
    else
      title = "Morpheus Users"
      subtitles = []
      if 
        subtitles << "Account: #{['name']}".strip
      end
      if params[:phrase]
        subtitles << "Search: #{params[:phrase]}".strip
      end
      print_h1 title, subtitles
      if users.empty?
        puts yellow,"No users found.",reset
      else
        print_users_table(users)
        print_results_pagination(json_response)
      end
      print reset,"\n"
    end
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#remove(args) ⇒ Object



447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
# File 'lib/morpheus/cli/users.rb', line 447

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

  if args.count < 1
    puts optparse
    return 1
  end

  connect(options)
  begin

     = (options)
     =  ? ['id'] : nil

    user = find_user_by_username_or_id(, args[0])
    return 1 if user.nil?
    unless options[:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the user #{user['username']}?")
      exit
    end
    if options[:dry_run]
      print_dry_run @users_interface.dry.destroy(, user['id'])
      return
    end
    json_response = @users_interface.destroy(, user['id'])

    if options[:json]
      print JSON.pretty_generate(json_response)
      print "\n"
    else
      print_green_success "User #{user['username']} removed"
      # list([])
    end
  rescue RestClient::Exception => e
    print_rest_exception(e, options)
    return 1
  end
end

#update(args) ⇒ Object



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

def update(args)
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[username] [options]")
    build_option_type_options(opts, options, update_user_option_types)
    build_common_options(opts, options, [:account, :options, :payload, :json, :dry_run])
  end
  optparse.parse!(args)

  if args.count < 1
    puts optparse
    return 1
  end

  connect(options)
  begin

     = (options)
     =  ? ['id'] : nil

    user = find_user_by_username_or_id(, args[0])
    return 1 if user.nil?

    payload = nil
    if options[:payload]
      payload = options[:payload]
    else
      #params = Morpheus::Cli::OptionTypes.prompt(update_user_option_types, options[:options], @api_client, options[:params])
      # merge -O options into normally parsed options
      params.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
      # if params.empty?
      #   print_red_alert "Specify atleast one option to update"
      #   puts optparse
      #   return 1
      # end
      # prompt_option_types = update_user_option_types().reject {|it| 'role' == it['fieldName'] }
      # params = Morpheus::Cli::OptionTypes.prompt(prompt_option_types, params, @api_client)
      selected_roles = []
      selected_roles += params.delete('role').split(',').collect {|r| r.strip.empty? ? nil : r.strip}.uniq if params['role']
      selected_roles += params.delete('roles').split(',').collect {|r| r.strip.empty? ? nil : r.strip}.uniq if params['roles']
      roles = prompt_user_roles(, user['id'], selected_roles, options.merge(no_prompt: true))
      if !roles.empty?
        params['roles'] = roles.collect {|r| {id: r['id']} }
      end
      if params.empty?
        puts optparse.banner
        puts Morpheus::Cli::OptionTypes.display_option_types_help(update_user_option_types)
        return 1
      end

      #puts "parsed params is : #{params.inspect}"
      if params['instanceLimits']
        params['instanceLimits']['maxStorage'] = params['instanceLimits']['maxStorage'].to_i if params['instanceLimits']['maxStorage'].to_s.strip != ''
        params['instanceLimits']['maxMemory'] = params['instanceLimits']['maxMemory'].to_i if params['instanceLimits']['maxMemory'].to_s.strip != ''
        params['instanceLimits']['maxCpu'] = params['instanceLimits']['maxCpu'].to_i if params['instanceLimits']['maxCpu'].to_s.strip != ''
      end

      payload = {'user' => params}
    end

    if options[:dry_run]
      print_dry_run @users_interface.dry.update(, user['id'], payload)
      return
    end
    json_response = @users_interface.update(, user['id'], payload)

    if options[:json]
      print JSON.pretty_generate(json_response)
      print "\n"
    else
      username = user['username'] # json_response['user']['username']
      username = payload['user']['username'] if payload['user'] && payload['user']['username']
      print_green_success "Updated user #{username}"
      details_options = [username]
      if 
        details_options.push "--account-id", ['id'].to_s
      end
      get(details_options)
    end

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