Project

General

Profile

Download (1.52 KB) Statistics
| Branch: | Tag: | Revision:
class ConfigReportsController < ApplicationController
include Foreman::Controller::AutoCompleteSearch
include Foreman::Controller::CsvResponder

before_action :setup_search_options, :only => :index

def index
respond_to do |format|
format.html do
@host = resource_finder(Host.authorized(:view_hosts), params[:host_id]) if params[:host_id]
@config_reports = resource_base_search_and_page(:host)
render :index
end
format.csv do
@config_reports = resource_base_with_search.preload(:host)
csv_response(@config_reports)
end
end
end

def show
# are we searching for the last report?
if params[:id] == "last"
conditions = { :host_id => resource_finder(Host.authorized(:view_hosts), params[:host_id]).try(:id) } if params[:host_id].present?
params[:id] = resource_base.where(conditions).maximum(:id)
end

return not_found if params[:id].blank?

@config_report = resource_base.includes(:logs => [:message, :source]).find(params[:id])
@offset = @config_report.reported_at - @config_report.created_at
end

def destroy
@config_report = resource_base.find(params[:id])
if @config_report.destroy
process_success(:success_msg => _("Successfully deleted report."), :success_redirect => config_reports_path)
else
process_error
end
end

def csv_columns
[:host, :reported_at, :applied, :restarted, :failed, :failed_restarts, :skipped, :pending]
end

private

def resource_base
super.my_reports
end
end
(14-14/58)