Class: HammerCLIForeman::ReportTemplate::ReportDataCommand
Instance Method Summary
collapse
command_name, #request_options
Methods inherited from Command
build_options, connection_name, create_option_builder, #customized_options, #dependency_resolver, dependency_resolver, #exception_handler_class, #get_identifier, #get_resource_id, #get_resource_ids, #option_sources, #request_params, #resolver, resolver, resource_config, resource_name_mapping, #searchables, searchables, #send_request, #transform_format
Instance Method Details
#default_filename ⇒ Object
133
134
135
|
# File 'lib/hammer_cli_foreman/report_template.rb', line 133
def default_filename
"Report-#{Time.new.strftime("%Y-%m-%d")}.txt"
end
|
#execute ⇒ Object
139
140
141
142
143
144
145
146
147
148
|
# File 'lib/hammer_cli_foreman/report_template.rb', line 139
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
150
151
152
153
154
155
156
157
|
# File 'lib/hammer_cli_foreman/report_template.rb', line 150
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
|