Class: HammerCLIForeman::ReportTemplate::ReportDataCommand

Inherits:
DownloadCommand show all
Defined in:
lib/hammer_cli_foreman/report_template.rb

Instance Method Summary collapse

Methods inherited from DownloadCommand

command_name, #request_options

Methods inherited from Command

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

Instance Method Details

#default_filenameObject



155
156
157
# File 'lib/hammer_cli_foreman/report_template.rb', line 155

def default_filename
  "Report-#{Time.new.strftime("%Y-%m-%d")}.txt"
end

#executeObject



161
162
163
164
165
166
167
168
169
170
# File 'lib/hammer_cli_foreman/report_template.rb', line 161

def execute
  response = send_request
  if response.code == 204
    print_message(_('The report is not ready yet.'))
    HammerCLI::EX_TEMPFAIL
  else
    handle_success(response)
    HammerCLI::EX_OK
  end
end

#handle_success(response) ⇒ Object



172
173
174
175
176
177
178
179
# File 'lib/hammer_cli_foreman/report_template.rb', line 172

def handle_success(response)
  if option_path
    filepath = store_response(response)
    print_message(_('The response has been saved to %{path}.'), {:path => filepath})
  else
    puts response.body
  end
end