Class: Morpheus::Cli::Users
- Inherits:
-
Object
- Object
- Morpheus::Cli::Users
- Includes:
- AccountsHelper, CliCommand, WhoamiHelper
- Defined in:
- lib/morpheus/cli/commands/users.rb
Instance Attribute Summary
Attributes included from CliCommand
Instance Method Summary collapse
- #_get(id, params, options = {}) ⇒ Object
- #add(args) ⇒ Object
- #change_password(args) ⇒ Object
- #connect(opts) ⇒ Object
- #count(args) ⇒ Object
- #get(args) ⇒ Object
- #handle(args) ⇒ Object
-
#initialize ⇒ Users
constructor
A new instance of Users.
- #list(args) ⇒ Object
- #permissions(args) ⇒ Object
- #remove(args) ⇒ Object
- #update(args) ⇒ Object
Methods included from WhoamiHelper
#current_account, #current_user, #current_user_permissions, included, #is_master_account, #load_whoami
Methods included from AccountsHelper
#account_column_definitions, #account_users_interface, #accounts_interface, #find_account_by_id, #find_account_by_name, #find_account_by_name_or_id, #find_account_from_options, #find_all_user_ids, #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, #find_user_group_by_id, #find_user_group_by_name, #find_user_group_by_name_or_id, #format_access_string, #format_role_type, #format_user_role_names, #format_user_status, #get_access_color, #get_access_string, included, #list_account_column_definitions, #list_user_column_definitions, #list_user_group_column_definitions, #role_column_definitions, #roles_interface, #subtenant_role_column_definitions, #user_column_definitions, #user_group_column_definitions, #user_groups_interface
Methods included from CliCommand
#add_query_parameter, #apply_options, #build_common_options, #build_get_options, #build_list_options, #build_option_type_options, #build_standard_add_many_options, #build_standard_add_options, #build_standard_api_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, #confirm, #confirm!, #default_refresh_interval, #default_sigdig, #default_subcommand, #establish_remote_appliance_connection, #execute_api, #execute_api_payload, #execute_api_request, #find_all, #find_all_json, #find_by_id, #find_by_name, #find_by_name_or_id, #find_record, #find_record_json, #full_command_usage, #get_interface, #get_list_key, #get_object_key, #get_subcommand_description, #handle_each_payload, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_array, #parse_bytes_param, #parse_get_options!, #parse_id_list, #parse_labels, #parse_list_options, #parse_list_options!, #parse_list_subtitles, #parse_options, #parse_parameter_as_resource_id!, #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
#initialize ⇒ Users
Returns a new instance of Users.
12 13 14 |
# File 'lib/morpheus/cli/commands/users.rb', line 12 def initialize() # @appliance_name, @appliance_url = Morpheus::Cli::Remote.active_appliance end |
Instance Method Details
#_get(id, params, options = {}) ⇒ Object
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 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 334 335 336 |
# File 'lib/morpheus/cli/commands/users.rb', line 214 def _get(id, params, ={}) args = [id] # heh account = () account_id = account ? account['id'] : nil params['global'] = true if [:global] @account_users_interface.setopts() if [:dry_run] if args[0].to_s =~ /\A\d{1,}\Z/ print_dry_run @account_users_interface.dry.get(account_id, args[0].to_i, params) else print_dry_run @account_users_interface.dry.list(account_id, params.merge({username: args[0]})) end return end if args[0].to_s =~ /\A\d{1,}\Z/ user_id = args[0].to_i else user = find_user_by_username(account_id, args[0], params) return 1 if user.nil? user_id = user['id'] end # always get by id, index does not return 'access' json_response = @account_users_interface.get(account_id, user_id, params) user = json_response['user'] render_response(json_response, , "user") do is_tenant_account = current_account['id'] != user['account']['id'] print_h1 "User Details", print cyan print_description_list(user_column_definitions, user) # backward compatibility if user['access'].nil? && [:include_features_access] = @account_users_interface.(account_id, user['id']) = ['permissions'] || ['featurePermissions'] if print_h2 "Feature Permissions", print cyan if .is_a?(Array) rows = .collect do |it| {name: it['name'], code: it['code'], access: format_access_string(it['access']) } end print as_pretty_table(rows, [:name, :code, :access], ) else rows = .collect do |code, access| {code: code, access: format_access_string(access) } end print as_pretty_table(rows, [:code, :access], ) end else puts yellow,"No permissions found.",reset end else = { 'features' => 'Feature', 'sites' => 'Group', 'zones' => 'Cloud', 'instance_types' => 'Instance Type', 'app_templates' => 'Blueprint', 'report_types' => 'Report Type', 'personas' => 'Persona', 'catalog_item_types' => 'Catalog Item Type', 'vdi_pools' => 'VDI Pool', 'task_sets' => 'Workflow', 'tasks' => 'Task' } if is_tenant_account .delete("sites") else .delete("zones") end .each do |field, label| if ["include_#{field}_access".to_sym] access = user['access'][field.to_s.camelcase] || [] access = access.reject {|it| it['access'] == 'none'} if [:hide_none_access] if field == "features" print_h2 "#{label} Access", else print_h2 "#{label} Access", end print cyan # access levels vary, default is none,read,user,full available_access_levels = ["none","read","user","full"] if field == 'sites' || field == 'zones' || field == 'instance_types' || field == 'app_templates' available_access_levels = ["none","read","full"] end if access.count > 0 access.each {|it| it['access'] = format_access_string(it['access'], available_access_levels)} if ['features'].include?(field) if access.find {|it| !it['subCategory'].to_s.empty? } rows = access.collect do |it| { code: it['code'], name: it['name'], category: it['subCategory'].to_s.titleize, access: format_access_string(it['access']), } end if [:sort] rows.sort! {|a,b| a[[:sort]] <=> b[[:sort]] } else rows.sort! {|a,b| [a[:category],a[:name],a[:code]] <=> [b[:category],b[:name],b[:code]] } end if [:direction] == 'desc' rows.reverse! end print as_pretty_table(rows, [:category, :name, :code, :access], ) else print as_pretty_table(access, [:name, :code, :access], ) end elsif ['instance_types','report_types'].include?(field) print as_pretty_table(access, [:name, :code, :access], ) else print as_pretty_table(access, [:name, :access], ) end else println yellow,"No #{label} Access Found.",reset end end end end print reset,"\n" end return 0 end |
#add(args) ⇒ Object
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 |
# File 'lib/morpheus/cli/commands/users.rb', line 488 def add(args) = {} params = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[username] [email] [first] [last] [options]") (opts, , add_user_option_types) (opts, , add_user_advanced_option_types) (opts, , [:account, :options, :payload, :json, :dry_run]) opts. = <<-EOT Create a new user. [user] is required. Username of the new user [email] is required. Email address [first] is optional. First Name [last] is optional. Last Name EOT end optparse.parse!(args) verify_args!(args:args, optparse:optparse, min:0, max:4) [:options]['username'] = args[0] if args[0] [:options]['email'] = args[1] if args[1] [:options]['firstName'] = args[2] if args[2] [:options]['lastName'] = args[3] if args[3] if [:options]['password'] [:options]['passwordConfirmation'] = [:options]['password'] end connect() begin account = () account_id = account ? account['id'] : nil payload = {} if [:payload] payload = [:payload] payload.deep_merge!({'user' => ()}) else payload.deep_merge!({'user' => ()}) # 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| 'roles' == it['fieldName'] } v_prompt = Morpheus::Cli::OptionTypes.prompt(prompt_option_types, [:options], @api_client, [:params]) params.deep_merge!(v_prompt) # do not prompt for advanced options advanced_config = Morpheus::Cli::OptionTypes.no_prompt(add_user_advanced_option_types, [:options], @api_client, [:params]) advanced_config.deep_compact! params.deep_merge!(advanced_config) # prompt for roles selected_roles = [] selected_roles += payload['user'].delete('roleId').split(',').collect {|r| r.strip.empty? ? nil : r.strip}.uniq if payload['user']['roleId'] selected_roles += payload['user'].delete('role').split(',').collect {|r| r.strip.empty? ? nil : r.strip}.uniq if payload['user']['role'] selected_roles += payload['user'].delete('roles').split(',').collect {|r| r.strip.empty? ? nil : r.strip}.uniq if payload['user']['roles'] roles = prompt_user_roles(account_id, nil, selected_roles, ) if !roles.empty? params['roles'] = roles.collect {|r| {id: r['id']} } end payload['user'].deep_merge!(params) end if [:dry_run] && [:json] puts as_json(payload, ) return 0 end @account_users_interface.setopts() if [:dry_run] print_dry_run @account_users_interface.dry.create(account_id, payload) return end json_response = @account_users_interface.create(account_id, payload) if [:json] print JSON.pretty_generate(json_response) print "\n" else user = json_response['user'] username = "" # json_response['user']['username'] username = user['username'] if user if account print_green_success "Added user #{username} to account #{account['name']}" else print_green_success "Added user #{username}" end return _get(user['id'], {}, ) end rescue RestClient::Exception => e print_rest_exception(e, ) return 1 end end |
#change_password(args) ⇒ Object
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 |
# File 'lib/morpheus/cli/commands/users.rb', line 662 def change_password(args) params = {} = {} payload = {} new_password = nil optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[user] [password] [options]") opts.on('-g','--global', "Global (All Tenants). Find users across all tenants. Default is your own tenant only.") do [:global] = true end # opts.on('--password VALUE', String, "New password") do |val| # new_password = val # end (opts, , [:account]) end optparse.parse!(args) verify_args!(args:args, optparse:optparse, min:1,max:2) # [user] [password] connect() exit_code, err = 0, nil # user can be scoped to account (tenant) account = () account_id = account ? account['id'] : nil params['global'] = true if [:global] # fetch the user to update user = find_user_by_username_or_id(account_id, args[0], params) return 1 if user.nil? new_password = args[1] if args[1] # print a warning or important info if ![:quiet] print cyan, "Changing password for #{user['username']}", reset, "\n" end # construct change_password payload # use --payload if [:payload] payload = [:payload] payload.deep_merge!(()) else # inject -O key=value options payload.deep_merge!(()) # prompt for password input current_input_attempt = 1 still_prompting = new_password ? false : true while still_prompting do # New Password password_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'password', 'fieldLabel' => 'New Password', 'type' => 'password', 'required' => true}], [:options], @api_client) new_password = password_prompt['password'] # could validate password is "strong" # Confirm New Password confirm_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'passwordConfirmation', 'fieldLabel' => 'Confirm Password', 'type' => 'password', 'required' => true}], [:options], @api_client) confirm_password = confirm_prompt['passwordConfirmation'] if confirm_password != new_password print_red_alert "Confirm password did not match." new_password = nil unless ::Morpheus::Cli::OptionTypes::confirm("Would you like to try again?", .merge({default: true})) return 9, "aborted login" end end still_prompting = !!new_password end payload = { 'user' => { 'password' => new_password } } end @account_users_interface.setopts() if [:dry_run] print_dry_run @account_users_interface.dry.update(account_id, user['id'], payload) return end json_response = @account_users_interface.update(account_id, user['id'], payload) render_response(json_response, , "user") do print_green_success "Updated password for user #{user['username']}" end return exit_code, err end |
#connect(opts) ⇒ Object
16 17 18 19 20 21 |
# File 'lib/morpheus/cli/commands/users.rb', line 16 def connect(opts) @api_client = establish_remote_appliance_connection(opts) @account_users_interface = @api_client.account_users @accounts_interface = @api_client.accounts @roles_interface = @api_client.roles end |
#count(args) ⇒ Object
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 |
# File 'lib/morpheus/cli/commands/users.rb', line 88 def count(args) params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[options]") opts.on('-g','--global', "Global (All Tenants). Find users across all tenants. Default is your own tenant only.") do [:global] = true end (opts, , [:account, :query, :remote, :dry_run]) opts. = "Get the number of users." end optparse.parse!(args) connect() begin account = () account_id = account ? account['id'] : nil params['global'] = true if [:global] params.merge!(()) @account_users_interface.setopts() if [:dry_run] print_dry_run @account_users_interface.dry.list(account_id, params) return end json_response = @account_users_interface.list(account_id, params) # print number only if json_response['meta'] && json_response['meta']['total'] print cyan, json_response['meta']['total'], reset, "\n" else print yellow, "unknown", reset, "\n" end rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#get(args) ⇒ Object
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 |
# File 'lib/morpheus/cli/commands/users.rb', line 124 def get(args) = {} params = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[user]") opts.on('-g','--global', "Global (All Tenants). Find users across all tenants. Default is your own tenant only.") do [:global] = true end opts.on('-p','--permissions', "Display Permissions [deprecated]") do |val| [:include_features_access] = true params['includeAccess'] = true end opts.add_hidden_option('-p,') opts.on(nil,'--feature-access', "Display Feature Access") do |val| [:include_features_access] = true params['includeAccess'] = true end opts.on(nil,'--group-access', "Display Group Access") do [:include_sites_access] = true params['includeAccess'] = true end opts.on(nil,'--cloud-access', "Display Cloud Access") do [:include_zones_access] = true params['includeAccess'] = true end opts.on(nil,'--instance-type-access', "Display Instance Type Access") do [:include_instance_types_access] = true params['includeAccess'] = true end opts.on(nil,'--blueprint-access', "Display Blueprint Access") do [:include_app_templates_access] = true params['includeAccess'] = true end opts.on(nil,'--catalog-item-type-access', "Display Catalog Item Type Access") do [:include_catalog_item_types_access] = true params['includeAccess'] = true end opts.on(nil,'--personas', "Display Persona Access") do [:include_personas_access] = true params['includeAccess'] = true end opts.on(nil,'--vdi-pool-access', "Display VDI Pool Access") do [:include_vdi_pools_access] = true params['includeAccess'] = true end opts.on(nil,'--report-type-access', "Display Report Type Access") do [:include_report_types_access] = true params['includeAccess'] = true end opts.on(nil,'--workflow-access', "Display Workflow Access") do [:include_task_sets_access] = true params['includeAccess'] = true end opts.on(nil,'--task-access', "Display Task Access") do [:include_tasks_access] = true params['includeAccess'] = true end opts.on(nil,'--all', "Display All Access Lists") do [:include_features_access] = true [:include_sites_access] = true [:include_zones_access] = true [:include_instance_types_access] = true [:include_app_templates_access] = true [:include_catalog_item_types_access] = true [:include_personas_access] = true [:include_vdi_pools_access] = true [:include_report_types_access] = true [:include_task_sets_access] = true [:include_tasks_access] = true params['includeAccess'] = true end opts.on(nil, '--hide-none-access', "Hide records with 'none' access") do [:hide_none_access] = true end (opts, , [:account]) opts. = <<-EOT Get details about a user. [user] is required. This is the username or id of a user. Supports 1-N arguments. EOT end optparse.parse!(args) verify_args!(args:args, optparse:optparse, min:1) connect() id_list = parse_id_list(args) params.merge!(()) return run_command_for_each_arg(id_list) do |arg| _get(arg, params, ) end end |
#handle(args) ⇒ Object
23 24 25 |
# File 'lib/morpheus/cli/commands/users.rb', line 23 def handle(args) handle_subcommand(args) end |
#list(args) ⇒ Object
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 |
# File 'lib/morpheus/cli/commands/users.rb', line 27 def list(args) params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage() opts.on('-g','--global', "Global (All Tenants). Find users across all tenants. Default is your own tenant only.") do [:global] = true end opts.on('--role AUTHORITY', String, "Role Name (authority)") do |val| params['role'] ||= [] val.split(",").collect {|s| s.strip }.select {|s| !s.to_s.empty? }.each do |v| params['role'] << v end end opts.on('--role-id ID', String, "Role ID") do |val| params['roleId'] ||= [] val.split(",").collect {|s| s.strip }.select {|s| !s.to_s.empty? }.each do |v| params['roleId'] << v end end (opts, , [:account]) opts. = "List users." end optparse.parse!(args) # verify_args!(args:args, optparse:optparse, count:0) [:phrase] = args.join(" ") if args.count > 0 connect() account = () account_id = account ? account['id'] : nil params['global'] = true if [:global] params.merge!(()) @account_users_interface.setopts() if [:dry_run] print_dry_run @account_users_interface.dry.list(account_id, params) return 0, nil end json_response = @account_users_interface.list(account_id, params) render_response(json_response, , "users") do users = json_response['users'] title = "Morpheus Users" subtitles = [] if account subtitles << "Tenant: #{account['name']}".strip end if params['global'] && json_response['global'] subtitles << "(All Tenants)" end subtitles += parse_list_subtitles() print_h1 title, subtitles, if users.empty? print cyan,"No users found.",reset,"\n" else print cyan print as_pretty_table(users, list_user_column_definitions, ) print_results_pagination(json_response) end print reset,"\n" end return 0, nil end |
#permissions(args) ⇒ Object
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 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 446 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 |
# File 'lib/morpheus/cli/commands/users.rb', line 338 def (args) params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[user]") opts.on('-g','--global', "Global (All Tenants). Find users across all tenants. Default is your own tenant only.") do [:global] = true end opts.on('--hide-none-access', "Hide records with 'none' access") do [:hide_none_access] = true end (opts, , [:account, :json, :yaml, :csv, :fields, :dry_run, :remote]) opts. = "Display Access for a user." + "\n" + "[user] is required. This is the username or id of a user." end optparse.parse!(args) verify_args!(args:args, optparse:optparse, count:1) connect() begin account = () account_id = account ? account['id'] : nil params['global'] = true if [:global] user = find_user_by_username_or_id(account_id, args[0], params) return 1 if user.nil? @account_users_interface.setopts() if [:dry_run] print_dry_run @account_users_interface.dry.(account_id, user['id']) return end is_tenant_account = current_account['id'] != user['account']['id'] json_response = @account_users_interface.(account_id, user['id']) # backward compatibility if !json_response['permissions'].nil? if [:json] puts as_json(json_response, , 'permissions') return 0 elsif [:yaml] puts as_yaml(json_response, , 'permissions') return 0 elsif [:csv] puts records_as_csv(json_response['permissions'], ) return 0 else = nil # permissions (Array) has replaced featurePermissions (map) = json_response['permissions'] || json_response['featurePermissions'] print_h1 "User Permissions: #{user['username']}", if print cyan if .is_a?(Array) rows = .collect do |it| {name: it['name'], code: it['code'], access: format_access_string(it['access']) } end print as_pretty_table(rows, [:name, :code, :access], ) else rows = .collect do |code, access| {code: code, access: format_access_string(access) } end print as_pretty_table(rows, [:code, :access], ) end else print yellow,"No permissions found.",reset,"\n" end end else if [:json] puts as_json(json_response, , 'access') return 0 elsif [:yaml] puts as_yaml(json_response, , 'access') return 0 elsif [:csv] puts records_as_csv(json_response['access'], ) return 0 end print_h1 "User Permissions: #{user['username']}", = { 'features' => 'Feature', 'sites' => 'Group', 'zones' => 'Cloud', 'instance_types' => 'Instance Type', 'app_templates' => 'Blueprint', 'report_types' => 'Report Type', 'personas' => 'Persona', 'catalog_item_types' => 'Catalog Item Type', 'vdi_pools' => 'VDI Pool', 'task_sets' => 'Workflow', 'tasks' => 'Task' } if is_tenant_account .reject! {|k| k == 'sites'} else .reject! {|k| k == 'zones'} end .each do |field, label| if !(field == 'sites' && is_tenant_account) access = json_response['access'][field.split('_').enum_for(:each_with_index).collect {|word, idx| idx == 0 ? word : word.capitalize}.join] access = access.reject {|it| it['access'] == 'none'} if [:hide_none_access] print_h2 "#{label} Access", print cyan available_access_levels = ["full","user","read","none"] if field == 'sites' || field == 'zones' || field == 'instance_types' || field == 'app_templates' available_access_levels = ["full","custom","none"] end if access.count > 0 access.each {|it| it['access'] = format_access_string(it['access'], available_access_levels)} if ['features'].include?(field) if access.find {|it| !it['subCategory'].to_s.empty? } rows = access.collect do |it| { code: it['code'], name: it['name'], category: it['subCategory'].to_s.titleize, access: format_access_string(it['access']), } end if [:sort] rows.sort! {|a,b| a[[:sort]] <=> b[[:sort]] } else rows.sort! {|a,b| [a[:category],a[:name],a[:code]] <=> [b[:category],b[:name],b[:code]] } end if [:direction] == 'desc' rows.reverse! end print as_pretty_table(rows, [:category, :name, :code, :access], ) else print as_pretty_table(access, [:name, :code, :access], ) end elsif ['instance_types','report_types'].include?(field) print as_pretty_table(access, [:name, :code, :access], ) else print as_pretty_table(access, [:name, :access], ) end else println cyan,"No #{label} Access Found.",reset end end end end print cyan print reset,"\n" rescue RestClient::Exception => e print_rest_exception(e, ) return 1 end end |
#remove(args) ⇒ Object
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 |
# File 'lib/morpheus/cli/commands/users.rb', line 746 def remove(args) params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[user]") opts.on('-g','--global', "Global (All Tenants). Find users across all tenants. Default is your own tenant only.") do [:global] = true end (opts, , [:account]) end optparse.parse!(args) if args.count < 1 puts optparse return 1 end connect() begin account = () account_id = account ? account['id'] : nil params['global'] = true if [:global] user = find_user_by_username_or_id(account_id, args[0], params) return 1 if user.nil? unless [:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the user #{user['username']}?") exit 9, "arborted" end @account_users_interface.setopts() if [:dry_run] print_dry_run @account_users_interface.dry.destroy(account_id, user['id']) return 0 end json_response = @account_users_interface.destroy(account_id, user['id']) if [: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, ) return 1 end end |
#update(args) ⇒ Object
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 |
# File 'lib/morpheus/cli/commands/users.rb', line 574 def update(args) = {} params = {} payload = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[user] [options]") opts.on('-g','--global', "Global (All Tenants). Find users across all tenants. Default is your own tenant only.") do [:global] = true end (opts, , update_user_option_types) (opts, , update_user_advanced_option_types) (opts, , [:account, :options, :payload, :json, :dry_run]) end optparse.parse!(args) verify_args!(args:args, optparse:optparse, count:1) connect() begin account = () account_id = account ? account['id'] : nil params['global'] = true if [:global] user = find_user_by_username_or_id(account_id, args[0], params) return 1 if user.nil? # use --payload payload = {} if [:payload] payload = [:payload] payload.deep_merge!({'user' => ()}) else payload.deep_merge!({'user' => ()}) # remove role option_type, it is just for help display, the role prompt is separate down below prompt_option_types = update_user_option_types().reject {|it| 'roles' == it['fieldName'] } v_prompt = Morpheus::Cli::OptionTypes.no_prompt(prompt_option_types, [:options], @api_client, [:params]) v_prompt.deep_compact! params.deep_merge!(v_prompt) # do not prompt for advanced options advanced_config = Morpheus::Cli::OptionTypes.no_prompt(update_user_advanced_option_types, [:options], @api_client, [:params]) advanced_config.deep_compact! params.deep_merge!(advanced_config) selected_roles = [] selected_roles += payload['user'].delete('roleId').to_s.split(',').collect {|r| r.strip.empty? ? nil : r.strip}.uniq if payload['user']['roleId'] selected_roles += payload['user'].delete('role').to_s.split(',').collect {|r| r.strip.empty? ? nil : r.strip}.uniq if payload['user']['role'] selected_roles += payload['user'].delete('roles').to_s.split(',').collect {|r| r.strip.empty? ? nil : r.strip}.uniq if payload['user']['roles'] if !selected_roles.empty? roles = prompt_user_roles(account_id, user['id'], selected_roles, .merge(no_prompt: true)) # should it allow [] (no roles) ? if !roles.empty? params['roles'] = roles.collect {|r| {id: r['id']} } end end payload.deep_merge!({'user' => params}) if payload['user'].empty? # || options[:no_prompt] raise_command_error "Specify at least one option to update.\n#{optparse}" end end @account_users_interface.setopts() if [:dry_run] print_dry_run @account_users_interface.dry.update(account_id, user['id'], payload) return end json_response = @account_users_interface.update(account_id, user['id'], payload) user = json_response['user'] if [:json] print JSON.pretty_generate(json_response) print "\n" else username = user['username'] # json_response['user']['username'] if payload['user'] && payload['user']['username'] username = payload['user']['username'] end print_green_success "Updated user #{username}" # details_options = [username] # if account # details_options.push "--account-id", account['id'].to_s # end # get(details_options + (options[:remote] ? ["-r",options[:remote]] : [])) return _get(user["id"], {}, ) end rescue RestClient::Exception => e print_rest_exception(e, ) return 1 end end |