Class: HammerCLIForeman::AssociatedCommand

Inherits:
Command
  • Object
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, #exception_handler_class, #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



451
452
453
454
455
# File 'lib/hammer_cli_foreman/commands.rb', line 451

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_builderObject



427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
# File 'lib/hammer_cli_foreman/commands.rb', line 427

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

.default_message(format) ⇒ Object



457
458
459
460
# File 'lib/hammer_cli_foreman/commands.rb', line 457

def self.default_message(format)
  name = associated_resource ? associated_resource.singular_name.to_s : nil
  format % { :resource_name => name.gsub(/_|-/, ' ') } unless name.nil?
end

Instance Method Details

#associated_resourceObject



447
448
449
# File 'lib/hammer_cli_foreman/commands.rb', line 447

def associated_resource
  self.class.associated_resource
end

#association_name(plural = false) ⇒ Object



490
491
492
# File 'lib/hammer_cli_foreman/commands.rb', line 490

def association_name(plural = false)
  plural ? associated_resource.name.to_s : associated_resource.singular_name.to_s
end

#get_associated_identifierObject



462
463
464
# File 'lib/hammer_cli_foreman/commands.rb', line 462

def get_associated_identifier
  get_resource_id(associated_resource, :scoped => true)
end

#get_current_idsObject



470
471
472
473
474
475
476
477
# File 'lib/hammer_cli_foreman/commands.rb', line 470

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_idsObject



466
467
468
# File 'lib/hammer_cli_foreman/commands.rb', line 466

def get_new_ids
  []
end

#request_paramsObject



479
480
481
482
483
484
485
486
487
488
# File 'lib/hammer_cli_foreman/commands.rb', line 479

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