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, #option_sources, #resolver, resolver, resource_config, resource_name_mapping, searchables, #searchables, #send_request, #transform_format

Class Method Details

.associated_resource(name = nil) ⇒ Object



419
420
421
422
423
# File 'lib/hammer_cli_foreman/commands.rb', line 419

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



395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
# File 'lib/hammer_cli_foreman/commands.rb', line 395

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



425
426
427
428
# File 'lib/hammer_cli_foreman/commands.rb', line 425

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



415
416
417
# File 'lib/hammer_cli_foreman/commands.rb', line 415

def associated_resource
  self.class.associated_resource
end

#association_name(plural = false) ⇒ Object



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

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

#get_associated_identifierObject



430
431
432
# File 'lib/hammer_cli_foreman/commands.rb', line 430

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

#get_current_idsObject



438
439
440
441
442
443
444
445
# File 'lib/hammer_cli_foreman/commands.rb', line 438

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



434
435
436
# File 'lib/hammer_cli_foreman/commands.rb', line 434

def get_new_ids
  []
end

#request_paramsObject



447
448
449
450
451
452
453
454
455
456
# File 'lib/hammer_cli_foreman/commands.rb', line 447

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