Class: HammerCLIForeman::Host::InfoCommand

Inherits:
InfoCommand show all
Defined in:
lib/hammer_cli_foreman/host.rb

Instance Method Summary collapse

Methods inherited from InfoCommand

command_name, #print_data, #send_request

Methods inherited from Command

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

Instance Method Details

#extend_data(host) ⇒ Object



173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/hammer_cli_foreman/host.rb', line 173

def extend_data(host)
  host['compute_resource_name'] ||= _('Bare Metal')
  host['image_file'] = nil if host['image_file'].empty?
  host['interfaces'] = host['interfaces'].map do |nic|
    nic['_type'] = HammerCLIForeman::Interface.format_type(nic)
    nic
  end if host['interfaces']

  # FIXME: temporary fetching parameters until the api gets fixed.
  # Noramlly they should come in the host's json.
  # http://projects.theforeman.org/issues/5820
  host['parameters'] = get_parameters(host["id"])

  host
end

#get_parameters(host_id) ⇒ Object



189
190
191
192
# File 'lib/hammer_cli_foreman/host.rb', line 189

def get_parameters(host_id)
  params = HammerCLIForeman.foreman_resource!(:parameters).call(:index, :host_id => host_id)
  HammerCLIForeman.collection_to_common_format(params)
end