Class: HammerCLIForeman::AddAssociatedCommand

Inherits:
AssociatedCommand show all
Defined in:
lib/hammer_cli_foreman/commands.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from AssociatedCommand

associated_resource, #associated_resource, #association_name, create_option_builder, #get_associated_identifier, #get_current_ids, #request_params

Methods inherited from Command

build_options, connection_name, create_option_builder, #customized_options, #dependency_resolver, dependency_resolver, #get_identifier, #get_resource_id, #request_params, #resolver, resolver, resource_config, resource_name_mapping, searchables, #searchables, #send_request

Class Method Details

.command_name(name = nil) ⇒ Object



441
442
443
444
# File 'lib/hammer_cli_foreman/commands.rb', line 441

def self.command_name(name=nil)
  name = super(name) || (associated_resource ? "add-"+associated_resource.singular_name : nil)
  name.respond_to?(:gsub) ? name.gsub('_', '-') : name
end

.desc(desc = nil) ⇒ Object



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

def self.desc(desc=nil)
  description = super(desc) || ''
  description.strip.empty? ? _("Associate a resource") : description
end

Instance Method Details

#get_new_idsObject



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

def get_new_ids
  ids = get_current_ids.map(&:to_s)
  required_id = get_associated_identifier.to_s

  ids << required_id unless ids.include? required_id
  ids
end