Class: Morpheus::Cli::UserSourcesCommand
- Inherits:
-
Object
- Object
- Morpheus::Cli::UserSourcesCommand
- Includes:
- AccountsHelper, CliCommand
- Defined in:
- lib/morpheus/cli/commands/user_sources_command.rb
Instance Attribute Summary
Attributes included from CliCommand
Instance Method Summary collapse
- #_get(user_source_id, params, options) ⇒ Object
- #activate(args) ⇒ Object
- #add(args) ⇒ Object
- #connect(opts) ⇒ Object
- #deactivate(args) ⇒ Object
- #get(args) ⇒ Object
- #get_type(args) ⇒ Object
- #handle(args) ⇒ Object
-
#initialize ⇒ UserSourcesCommand
constructor
A new instance of UserSourcesCommand.
- #list(args) ⇒ Object
- #list_types(args) ⇒ Object
- #remove(args) ⇒ Object
- #update(args) ⇒ Object
- #update_subdomain(args) ⇒ Object
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 ⇒ UserSourcesCommand
Returns a new instance of UserSourcesCommand.
16 17 18 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 16 def initialize() # @appliance_name, @appliance_url = Morpheus::Cli::Remote.active_appliance end |
Instance Method Details
#_get(user_source_id, params, options) ⇒ Object
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 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 116 def _get(user_source_id, params, ) account_id = nil account = nil # account_id = args[0] # account = find_account_by_name_or_id(account_id) # exit 1 if account.nil? # account_id = account['id'] # user_source_id = args[1] @user_sources_interface.setopts() if [:dry_run] if user_source_id.to_s =~ /\A\d{1,}\Z/ print_dry_run @user_sources_interface.dry.get(account_id, user_source_id.to_i) else print_dry_run @user_sources_interface.dry.list(account_id, {name:user_source_id}) end return end user_source = find_user_source_by_name_or_id(account_id, user_source_id) if user_source.nil? return 1 end # fetch by id to get config too json_response = nil if user_source_id.to_s =~ /\A\d{1,}\Z/ json_response = {'userSource' => user_source} else json_response = @user_sources_interface.get(account_id, user_source['id']) user_source = json_response['userSource'] end #user_source = json_response['userSource'] render_response(json_response, , "userSource") do print_h1 "Identity Source Details" print cyan description_cols = { "ID" => lambda {|it| it['id'] }, "Name" => lambda {|it| it['name'] }, "Description" => lambda {|it| it['description'] }, "Type" => lambda {|it| it['type'] }, "Tenant" => lambda {|it| it['account'] ? it['account']['name'] : '' }, #"Subdomain" => lambda {|it| it['subdomain'] }, "Login URL" => lambda {|it| it['loginURL'] }, "Default Role" => lambda {|it| it['defaultAccountRole'] ? it['defaultAccountRole']['authority'] : '' }, "External Login" => lambda {|it| format_boolean it['externalLogin'] }, "Enable Role Mapping Permission" => lambda {|it| format_boolean it['allowCustomMappings'] }, "Manual Role Assignment" => lambda {|it| it['manualRoleAssignment'].nil? ? '' : format_boolean(it['manualRoleAssignment']) }, "Active" => lambda {|it| format_boolean it['active'] }, } print_description_list(description_cols, user_source) # show config settings... user_source_config = user_source['config'] print_h2 "Configuration" if user_source_config columns = user_source_config.keys #.sort print_description_list(columns, user_source_config) # print reset,"\n" else print cyan,"No config found.","\n",reset end role_mappings = user_source['roleMappings'] print_h2 "Role Mappings" if role_mappings && role_mappings.size > 0 # print_h2 "Role Mappings" role_mapping_columns = [ {"MORPHEUS ROLE" => lambda {|it| it['mappedRole'] ? it['mappedRole']['authority'] : '' } }, {"SOURCE ROLE NAME" => lambda {|it| it['sourceRoleName'] } }, {"SOURCE ROLE FQN" => lambda {|it| it['sourceRoleFqn'] } }, ] print as_pretty_table(role_mappings, role_mapping_columns) else print cyan,"No role mappings found for this identity source.","\n",reset end provider_settings = user_source['providerSettings'] if provider_settings && !provider_settings.empty? print_h2 "Provider Settings" print_description_list({ "Entity ID" => lambda {|it| it['entityId'] }, "ACS URL" => lambda {|it| it['acsUrl'] } }, provider_settings) print_h2 "SP Metadata" print cyan print provider_settings['spMetadata'] print "\n",reset else # print cyan,"No provider settings found.","\n",reset end print "\n",reset end return 0, nil end |
#activate(args) ⇒ Object
570 571 572 573 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 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 570 def activate(args) = {} params = {} account_id = nil role_mappings = nil role_mapping_names = nil optparse = Morpheus::Cli::OptionParser.new do|opts| opts. = subcommand_usage("[name]") (opts, , [:options, :json, :dry_run, :remote]) opts. = "Activate an identity source." + "\n" + "[name] is required. This is the name or id of an identity source." end optparse.parse!(args) if args.count < 1 puts optparse exit 1 end connect() begin user_source = find_user_source_by_name_or_id(nil, args[0]) exit 1 if user_source.nil? payload = nil if [:payload] payload = [:payload] else payload = {} # support old -O options payload.deep_merge!([:options].reject {|k,v| k.is_a?(Symbol) }) if [:options] end @user_sources_interface.setopts() if [:dry_run] print_dry_run @user_sources_interface.dry.activate(nil, user_source['id'], payload) return end json_response = @user_sources_interface.activate(nil, user_source['id'], payload) if [:json] puts JSON.pretty_generate(json_response) return end print_green_success "Activated Identity Source #{user_source['name']}" get([user_source['id']] + ([:remote] ? ["-r",[:remote]] : [])) rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#add(args) ⇒ Object
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 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 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 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 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 213 def add(args) = {} params = {} account_id = nil type_code = nil role_mappings = nil role_mapping_names = nil default_role_id = nil optparse = Morpheus::Cli::OptionParser.new do|opts| opts. = subcommand_usage("[account] [name]") opts.on( '--tenant TENANT', String, "Tenant Name or ID the identity source will belong to, default is your own." ) do |val| account_id = val end opts.on( '-a', '--account ACCOUNT', "Tenant Name or ID the identity source will belong to, default is your own." ) do |val| account_id = val end opts.add_hidden_option('-a, --account') if opts.is_a?(Morpheus::Cli::OptionParser) opts.on('--type CODE', String, "Identity Source Type") do |val| type_code = val end opts.on('--name VALUE', String, "Name for this identity source") do |val| params['name'] = val end opts.on('--description VALUE', String, "Description") do |val| params['description'] = val end opts.on("--allow-custom-mappings [on|off]", ['on','off'], "Enable Role Mapping Permissions") do |val| params['allowCustomMappings'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '1' || val.to_s == '' end opts.on("--allowCustomMappings [on|off]", ['on','off'], "Enable Role Mapping Permissions") do |val| params['allowCustomMappings'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '1' || val.to_s == '' end opts.add_hidden_option('--allowCustomMappings') opts.on("--manual-role-assignment [on|off]", ['on','off'], "Manual Role Assignment") do |val| params['manualRoleAssignment'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '1' || val.to_s == '' end opts.on("--manualRoleAssignment [on|off]", ['on','off'], "Manual Role Assignment") do |val| params['manualRoleAssignment'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '1' || val.to_s == '' end opts.add_hidden_option('--manualRoleAssignment') opts.on("--manual-role-assignment [on|off]", ['on','off'], "Manual Role Assignment") do |val| params['manualRoleAssignment'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '1' || val.to_s == '' end opts.on("--manualRoleAssignment [on|off]", ['on','off'], "Manual Role Assignment") do |val| params['manualRoleAssignment'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '1' || val.to_s == '' end opts.add_hidden_option('--manualRoleAssignment') opts.on('--role-mappings MAPPINGS', String, "Role Mappings FQN in the format id1:FQN1,id2:FQN2") do |val| role_mappings = {} val.split(',').collect {|it| it.strip.split(':') }.each do |pair| k, v = pair[0], pair[1] if !k.to_s.empty? role_mappings[k.to_s] = v end end end opts.on('--role-mapping-names MAPPINGS', String, "Role Mapping Names in the format id1:Name1,id2:Name2") do |val| role_mapping_names = {} val.split(',').collect {|it| it.strip.split(':') }.each do |pair| k, v = pair[0], pair[1] if !k.to_s.empty? role_mapping_names[k.to_s] = v end end end opts.on('--default-role ID', String, "Default Role ID or Authority") do |val| default_role_id = val end #build_option_type_options(opts, options, add_user_source_option_types()) (opts, ) opts. = "Create a new identity source." + "\n" + "[account] is required. This is the name or id of an account." end optparse.parse!(args) connect() if args.count > 2 print_error Morpheus::Terminal.angry_prompt puts_error "wrong number of arguments, expected 0-2 and got (#{args.count}) #{args.inspect}\n#{optparse}" return 1 end if args[0] account_id = args[0] end if args[1] params['name'] = args[1] end # # find the account first, or just prompt for that too please. # if !account_id # print_error Morpheus::Terminal.angry_prompt # puts_error "missing required argument [account]\n#{optparse}" # return 1 # end # tenant is optional, it is expected in the url right now instead of in the payload...this sets both account = nil if account_id [:options]['tenant'] = account_id end account_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'tenant', 'fieldLabel' => 'Tenant', 'type' => 'select', 'optionSource' => 'tenants', 'required' => false, 'description' => 'Tenant'}], [:options], @api_client) if account_id [:options].delete('tenant') end account_id = account_prompt['tenant'] if !account_id.to_s.empty? # reload tenant by id, sure why not.. account = find_account_by_name_or_id(account_id) return 1 if account.nil? account_id = account['id'] else account_id = nil end # construct payload payload = {} if [:payload] payload = [:payload] payload.deep_merge!({'userSource' => ()}) # JD: should apply options on top of payload, but just do these two for now # Tenant if account payload['userSource']['account'] = {'id' => account['id'] } end # Name if params['name'] payload['userSource']['name'] = params['name'] end else payload.deep_merge!({'userSource' => ()}) # support old -O options payload['userSource'].deep_merge!([:options].reject {|k,v| k.is_a?(Symbol) }) if [:options] # Tenant if account payload['userSource']['account'] = {'id' => account['id'] } end # Identity Source Type user_source_types = @user_sources_interface.list_types({userSelectable: true})['userSourceTypes'] if user_source_types.empty? print_red_alert "No available Identity Source Types found" return 1 end user_source_type = nil if !type_code user_source_type_dropdown = user_source_types.collect {|it| { 'name' => it['type'], 'value' => it['type']} } v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'type', 'type' => 'select', 'selectOptions' => user_source_type_dropdown, 'fieldLabel' => 'Type', 'required' => true}], [:options]) type_code = v_prompt['type'] if v_prompt['type'] end user_source_type = user_source_types.find { |it| it['type'] == type_code } if user_source_type.nil? print_red_alert "Identity Source Type not found for '#{type_code}'" return 1 end payload['userSource']['type'] = type_code # Name if params['name'] payload['userSource']['name'] = params['name'] else v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'name', 'type' => 'text', 'fieldLabel' => 'Name', 'required' => true}], [:options]) payload['userSource']['name'] = v_prompt['name'] if v_prompt['name'] end # custom options by type my_option_types = load_user_source_type_option_types(user_source_type['type']) v_prompt = Morpheus::Cli::OptionTypes.prompt(my_option_types, [:options]) payload['userSource'].deep_merge!(v_prompt) # Default Account Role # always prompt for role to lookup id from name if default_role_id [:options]['defaultAccountRole'] = {'id' => default_role_id } end v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldContext' => 'defaultAccountRole', 'fieldName' => 'id', 'type' => 'select', 'selectOptions' => (account_id), 'fieldLabel' => 'Default Role', 'required' => false }], [:options]) if v_prompt['defaultAccountRole'] && v_prompt['defaultAccountRole']['id'] default_role_id = v_prompt['defaultAccountRole']['id'] end payload['userSource']['defaultAccountRole'] = {'id' => default_role_id } # Enable Role Mapping Permissions if !params['allowCustomMappings'].nil? payload['userSource']['allowCustomMappings'] = ["on","true"].include?(params['allowCustomMappings'].to_s) else v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'allowCustomMappings', 'type' => 'checkbox', 'fieldLabel' => 'Enable Role Mapping Permissions', 'defaultValue' => false}], [:options]) payload['userSource']['allowCustomMappings'] = ["on","true"].include?(v_prompt['allowCustomMappings'].to_s) end # Manual Role Assignment if !params['manualRoleAssignment'].nil? payload['userSource']['manualRoleAssignment'] = ["on","true"].include?(params['allowCustomMappings'].to_s) else v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'manualRoleAssignment', 'type' => 'checkbox', 'fieldLabel' => 'Manual Role Assignment', 'defaultValue' => false}], [:options]) payload['userSource']['manualRoleAssignment'] = ["on","true"].include?(v_prompt['manualRoleAssignment'].to_s) end if role_mappings payload['roleMappings'] = role_mappings end if role_mapping_names payload['roleMappingNames'] = role_mapping_names end end @user_sources_interface.setopts() if [:dry_run] print_dry_run @user_sources_interface.dry.create(account_id, payload) return end # do it json_response = @user_sources_interface.create(account_id, payload) # print and return result render_response(json_response, , 'userSource') do user_source = json_response['userSource'] print_green_success "Added Identity Source #{user_source['name']}" _get(user_source['id'], {}, ) end return 0, nil end |
#connect(opts) ⇒ Object
20 21 22 23 24 25 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 20 def connect(opts) @api_client = establish_remote_appliance_connection(opts) @user_sources_interface = @api_client.user_sources @accounts_interface = @api_client.accounts @account_users_interface = @api_client.account_users end |
#deactivate(args) ⇒ Object
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 661 662 663 664 665 666 667 668 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 620 def deactivate(args) = {} params = {} account_id = nil role_mappings = nil role_mapping_names = nil optparse = Morpheus::Cli::OptionParser.new do|opts| opts. = subcommand_usage("[name]") (opts, , [:options, :json, :dry_run, :remote]) opts. = "Deactivate an identity source." + "\n" + "[name] is required. This is the name or id of an identity source." end optparse.parse!(args) if args.count < 1 puts optparse exit 1 end connect() begin user_source = find_user_source_by_name_or_id(nil, args[0]) exit 1 if user_source.nil? payload = nil if [:payload] payload = [:payload] else payload = {} # support old -O options payload.deep_merge!([:options].reject {|k,v| k.is_a?(Symbol) }) if [:options] end @user_sources_interface.setopts() if [:dry_run] print_dry_run @user_sources_interface.dry.deactivate(nil, user_source['id'], payload) return end json_response = @user_sources_interface.deactivate(nil, user_source['id'], payload) if [:json] puts JSON.pretty_generate(json_response) return end print_green_success "Activated Identity Source #{user_source['name']}" get([user_source['id']] + ([:remote] ? ["-r",[:remote]] : [])) rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#get(args) ⇒ Object
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 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 90 def get(args) params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[name]") # opts.on( '-c', '--config', "Display raw config only. Default is YAML. Combine with -j for JSON instead." ) do # options[:show_config] = true # end # opts.on('--no-config', "Do not display Config YAML." ) do # options[:no_config] = true # end (opts, ) opts. = <<-EOT Get details about an identity source. [name] is required. This is the name or id of an identity source. EOT end optparse.parse!(args) verify_args!(args:args, optparse:optparse, min:1) connect() id_list = parse_id_list(args) return run_command_for_each_arg(id_list) do |arg| _get(arg, params, ) end end |
#get_type(args) ⇒ Object
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 820 def get_type(args) = {} params = {} account = nil account_id = nil optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[type]") (opts, , [:json, :yaml, :csv, :fields, :dry_run, :remote]) opts. = "Get details about an identity source type." + "\n" + "[type] is required. This is the type identifier." end optparse.parse!(args) connect() # instance is required right now. # account_id = args[0] if !account_id expected_arg_count = 1 if args.count != expected_arg_count print_error Morpheus::Terminal.angry_prompt puts_error "wrong number of arguments, expected #{expected_arg_count} and got (#{args.count}) #{args.inspect}\n#{optparse}" return 1 end begin user_source_type_id = args[0] # construct payload @user_sources_interface.setopts() if [:dry_run] print_dry_run @user_sources_interface.dry.list_types(user_source_type_id, params) return end json_response = @user_sources_interface.get_type(user_source_type_id, params) user_source_type = json_response["userSourceType"] if [:json] puts as_json(json_response, , "userSourceType") return 0 elsif [:yaml] puts as_yaml(json_response, , "userSourceType") return 0 elsif [:csv] puts records_as_csv([user_source_type], ) return 0 end title = "Identity Source Type" subtitles = [] print_h1 title, subtitles print cyan description_cols = { #"ID" => lambda {|it| it['id'] }, # "Name" => lambda {|it| it['name'] }, # "Code" => lambda {|it| it['code'] }, "Type" => lambda {|it| it['type'] }, "External Login" => lambda {|it| format_boolean it['externalLogin'] }, "Selectable" => lambda {|it| format_boolean it['userSelectable'] }, } print_description_list(description_cols, user_source_type) # show config settings... my_option_types = user_source_type['optionTypes'] if !my_option_types my_option_types = load_user_source_type_option_types(user_source_type['type']) end print_h2 "Configuration Option Types" if my_option_types && my_option_types.size > 0 columns = [ {"FIELD LABEL" => lambda {|it| it['fieldLabel'] } }, {"FIELD NAME" => lambda {|it| [it['fieldContext'], it['fieldName']].select {|it| !it.to_s.empty? }.join('.') } }, {"TYPE" => lambda {|it| it['type'] } }, {"DEFAULT" => lambda {|it| it['defaultValue'] } }, {"REQUIRED" => lambda {|it| format_boolean it['required'] } }, ] print as_pretty_table(my_option_types, columns) else print cyan,"No option types found.","\n",reset end print reset,"\n" rescue RestClient::Exception => e print_rest_exception(e, ) return 1 end end |
#handle(args) ⇒ Object
27 28 29 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 27 def handle(args) handle_subcommand(args) end |
#list(args) ⇒ Object
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 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 32 def list(args) = {} params = {} account = nil account_id = nil optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage() opts.on( '--tenant TENANT', String, "Filter by Tenant" ) do |val| account_id = val end opts.on( '-a', '--account ACCOUNT', "Filter by Tenant" ) do |val| account_id = val end opts.add_hidden_option('-a, --account') if opts.is_a?(Morpheus::Cli::OptionParser) (opts, ) opts. = "List identity sources." end optparse.parse!(args) connect() # verify_args!(args:args, optparse:optparse, count:0) if args.count > 0 [:phrase] = args.join(" ") end if account_id account = find_account_by_name_or_id(account_id) if account.nil? return 1, "Tenant not found for '#{account_id}'" end account_id = account['id'] end params.merge!(()) @user_sources_interface.setopts() if [:dry_run] print_dry_run @user_sources_interface.dry.list(account_id, params) return 0, nil end json_response = @user_sources_interface.list(account_id, params) render_response(json_response, , "userSources") do user_sources = json_response["userSources"] title = "Morpheus Identity Sources" subtitles = [] if account subtitles << "Tenant: #{account['name']}".strip end subtitles += parse_list_subtitles() print_h1 title, subtitles if user_sources.empty? print cyan,"No identity sources found.",reset,"\n" else print_user_sources_table(user_sources, ) print_results_pagination(json_response) end print reset,"\n" end return 0, nil end |
#list_types(args) ⇒ Object
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 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 763 def list_types(args) = {} params = {} account = nil account_id = nil optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage() (opts, , [:list, :json, :yaml, :csv, :fields, :dry_run, :remote]) opts. = "List identity source types." end optparse.parse!(args) connect() # instance is required right now. # account_id = args[0] if !account_id 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 # construct payload params.merge!(()) @user_sources_interface.setopts() if [:dry_run] print_dry_run @user_sources_interface.dry.list_types(params) return end json_response = @user_sources_interface.list_types(params) if [:json] puts as_json(json_response, , "userSourceTypes") return 0 elsif [:csv] puts records_as_csv(json_response['userSourceTypes'], ) return 0 elsif [:yaml] puts as_yaml(json_response, , "userSourceTypes") return 0 end user_source_types = json_response['userSourceTypes'] title = "Morpheus Identity Source Types" subtitles = [] subtitles += parse_list_subtitles() print_h1 title, subtitles if user_source_types.empty? print cyan,"No types found.",reset,"\n" else print_user_source_types_table(user_source_types, ) print_results_pagination(json_response, {:label => "type", :n_label => "types"}) end print reset,"\n" rescue RestClient::Exception => e print_rest_exception(e, ) return 1 end end |
#remove(args) ⇒ Object
722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 722 def remove(args) = {} optparse = Morpheus::Cli::OptionParser.new do|opts| opts. = subcommand_usage("[name]") (opts, , [:auto_confirm, :json, :dry_run, :remote]) opts. = "Delete a user_source." end optparse.parse!(args) if args.count < 1 puts optparse exit 1 end connect() begin user_source = find_user_source_by_name_or_id(nil, args[0]) exit 1 if user_source.nil? unless Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the identity source #{user_source['name']}?", ) exit end @user_sources_interface.setopts() if [:dry_run] print_dry_run @user_sources_interface.dry.destroy(nil, user_source['id']) return end json_response = @user_sources_interface.destroy(nil, user_source['id']) if [:json] print JSON.pretty_generate(json_response), "\n" return end print_green_success "Removed Identity Source #{user_source['name']}" #list([]) rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#update(args) ⇒ Object
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 487 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 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 446 def update(args) = {} params = {} account_id = nil role_mappings = nil role_mapping_names = nil default_role_id = nil optparse = Morpheus::Cli::OptionParser.new do|opts| opts. = subcommand_usage("[name] [options]") opts.on('--name VALUE', String, "Name for this identity source") do |val| params['name'] = val end opts.on('--description VALUE', String, "Description") do |val| params['description'] = val end opts.on("--allow-custom-mappings [on|off]", ['on','off'], "Enable Role Mapping Permissions") do |val| params['allowCustomMappings'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '1' || val.to_s == '' end opts.on("--allowCustomMappings [on|off]", ['on','off'], "Enable Role Mapping Permissions") do |val| params['allowCustomMappings'] = val.to_s == 'on' || val.to_s == 'true' || val.to_s == '1' || val.to_s == '' end opts.add_hidden_option('--allowCustomMappings') opts.on('--role-mappings MAPPINGS', String, "Role Mappings in the format id1:FQN,id2:FQN2") do |val| role_mappings = {} val.split(',').collect {|it| it.strip.split(':') }.each do |pair| k, v = pair[0], pair[1] if !k.to_s.empty? role_mappings[k.to_s] = v end end end opts.on('--role-mapping-names MAPPINGS', String, "Role Mapping Names in the format id1:Name1,id2:Name2") do |val| role_mapping_names = {} val.split(',').collect {|it| it.strip.split(':') }.each do |pair| k, v = pair[0], pair[1] if !k.to_s.empty? role_mapping_names[k.to_s] = v end end end opts.on('--default-role ROLE', String, "Default Role ID or Authority") do |val| default_role_id = val end (opts, ) opts. = "Update an identity source." + "\n" + "[name] is required. This is the name or id of an identity source." end optparse.parse!(args) if args.count < 1 puts optparse exit 1 end connect() begin user_source = find_user_source_by_name_or_id(nil, args[0]) exit 1 if user_source.nil? payload = {} if [:payload] payload = [:payload] payload.deep_merge!({'userSource' => ()}) else payload.deep_merge!({'userSource' => ()}) # Name if params['name'] payload['userSource']['name'] = params['name'] end # Description if params['description'] payload['userSource']['description'] = params['description'] end # Enable Role Mapping Permissions if !params['allowCustomMappings'].nil? payload['userSource']['allowCustomMappings'] = params['allowCustomMappings'] end # Manual Role Assignment if !params['manualRoleAssignment'].nil? payload['userSource']['manualRoleAssignment'] = params['manualRoleAssignment'] end if role_mappings payload['roleMappings'] = role_mappings end if role_mapping_names payload['roleMappingNames'] = role_mapping_names end # Default Account Role if default_role_id if default_role_id == 'null' payload['userSource']['defaultAccountRole'] = {'id' => nil } else # use no_prompt to convert name to id [:options]['defaultAccountRole'] = {'id' => default_role_id } v_prompt = Morpheus::Cli::OptionTypes.no_prompt([{'fieldContext' => 'defaultAccountRole', 'fieldName' => 'id', 'type' => 'select', 'selectOptions' => (user_source['account']['id']), 'fieldLabel' => 'Default Role', 'required' => false }], [:options]) if v_prompt['defaultAccountRole'] && v_prompt['defaultAccountRole']['id'] default_role_id = v_prompt['defaultAccountRole']['id'] end payload['userSource']['defaultAccountRole'] = {'id' => default_role_id } end end end @user_sources_interface.setopts() if [:dry_run] print_dry_run @user_sources_interface.dry.update(nil, user_source['id'], payload) return end json_response = @user_sources_interface.update(nil, user_source['id'], payload) render_response(json_response, , 'userSource') do user_source = json_response['userSource'] || user_source print_green_success "Updated Identity Source #{user_source['name']}" _get(user_source['id'], {}, ) end return 0, nil rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |
#update_subdomain(args) ⇒ Object
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 |
# File 'lib/morpheus/cli/commands/user_sources_command.rb', line 670 def update_subdomain(args) = {} params = {} account_id = nil optparse = Morpheus::Cli::OptionParser.new do|opts| opts. = subcommand_usage("[name]") opts.on('--subdomain VALUE', String, "New subdomain for this identity source") do |val| params['subdomain'] = (val == 'null') ? nil : val end (opts, , [:options, :json, :dry_run, :remote]) opts. = "Update subdomain for an identity source." + "\n" + "[name] is required. This is the name or id of an identity source." end optparse.parse!(args) if args.count < 1 puts optparse exit 1 end connect() begin user_source = find_user_source_by_name_or_id(nil, args[0]) exit 1 if user_source.nil? payload = nil if [:payload] payload = [:payload] else payload = {} payload['subdomain'] = params['subdomain'] if params.key?('subdomain') # support old -O options payload.deep_merge!([:options].reject {|k,v| k.is_a?(Symbol) }) if [:options] end @user_sources_interface.setopts() if [:dry_run] print_dry_run @user_sources_interface.dry.update_subdomain(nil, user_source['id'], payload) return end json_response = @user_sources_interface.update_subdomain(nil, user_source['id'], payload) if [:json] puts JSON.pretty_generate(json_response) return end # JD: uhh this updates the account too, it cannot be set per identity source ...yet print_green_success "Updated Identity Source #{user_source['name']} subdomain to '#{payload['subdomain']}'" get([user_source['id']] + ([:remote] ? ["-r",[:remote]] : [])) rescue RestClient::Exception => e print_rest_exception(e, ) exit 1 end end |