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, #saved_response_message

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



170
171
172
# File 'lib/hammer_cli_foreman/report_template.rb', line 170

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

#executeObject



176
177
178
179
180
181
182
183
184
185
# File 'lib/hammer_cli_foreman/report_template.rb', line 176

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



187
188
189
190
191
192
193
194
# File 'lib/hammer_cli_foreman/report_template.rb', line 187

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