Class: HammerCLIForeman::AssociatedCommand
- Inherits:
-
Command
- Object
- HammerCLI::Apipie::Command
- Command
- HammerCLIForeman::AssociatedCommand
show all
- Defined in:
- lib/hammer_cli_foreman/commands.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Command
build_options, connection_name, #customized_options, #dependency_resolver, dependency_resolver, #get_identifier, #get_resource_id, #get_resource_ids, resolver, #resolver, resource_config, resource_name_mapping, #searchables, searchables, #send_request, #transform_format
Class Method Details
.associated_resource(name = nil) ⇒ Object
472
473
474
475
476
|
# File 'lib/hammer_cli_foreman/commands.rb', line 472
def self.associated_resource(name=nil)
@associated_api_resource = HammerCLIForeman.foreman_resource!(name) unless name.nil?
return @associated_api_resource if @associated_api_resource
return superclass.associated_resource if superclass.respond_to? :associated_resource
end
|
.create_option_builder ⇒ Object
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
|
# File 'lib/hammer_cli_foreman/commands.rb', line 448
def self.create_option_builder
configurator = BuilderConfigurator.new(searchables, dependency_resolver)
builder = ForemanOptionBuilder.new(searchables)
builder.builders = [
SearchablesOptionBuilder.new(resource, searchables),
DependentSearchablesOptionBuilder.new(associated_resource, searchables)
]
resources = []
resources += dependency_resolver.resource_dependencies(resource, :only_required => true, :recursive => true)
resources += dependency_resolver.resource_dependencies(associated_resource, :only_required => true, :recursive => true)
resources.each do |r|
builder.builders << DependentSearchablesOptionBuilder.new(r, searchables)
end
builder.builders << IdOptionBuilder.new(resource)
builder
end
|
Instance Method Details
#associated_resource ⇒ Object
468
469
470
|
# File 'lib/hammer_cli_foreman/commands.rb', line 468
def associated_resource
self.class.associated_resource
end
|
#association_name(plural = false) ⇒ Object
506
507
508
|
# File 'lib/hammer_cli_foreman/commands.rb', line 506
def association_name(plural = false)
plural ? associated_resource.name.to_s : associated_resource.singular_name.to_s
end
|
#get_associated_identifier ⇒ Object
478
479
480
|
# File 'lib/hammer_cli_foreman/commands.rb', line 478
def get_associated_identifier
get_resource_id(associated_resource, :scoped => true)
end
|
#get_current_ids ⇒ Object
486
487
488
489
490
491
492
493
|
# File 'lib/hammer_cli_foreman/commands.rb', line 486
def get_current_ids
item = HammerCLIForeman.record_to_common_format(resource.call(:show, {:id => get_identifier}))
if item.has_key?(association_name(true))
item[association_name(true)].map { |assoc| assoc['id'] }
else
item[association_name+'_ids'] || []
end
end
|
#get_new_ids ⇒ Object
482
483
484
|
# File 'lib/hammer_cli_foreman/commands.rb', line 482
def get_new_ids
[]
end
|
#request_params ⇒ Object
495
496
497
498
499
500
501
502
503
504
|
# File 'lib/hammer_cli_foreman/commands.rb', line 495
def request_params
params = super
if params.key?(resource.singular_name)
params[resource.singular_name] = {"#{association_name}_ids" => get_new_ids }
else
params["#{association_name}_ids"] = get_new_ids
end
params['id'] = get_identifier
params
end
|