Project

General

Profile

Download (1.07 KB) Statistics
| Branch: | Tag: | Revision:
class ReportsController < ApplicationController
include Foreman::Controller::AutoCompleteSearch

before_filter :setup_search_options, :only => :index

def index
report_authorized = resource_base.my_reports
@reports = report_authorized.search_for(params[:search], :order => params[:order]).paginate(:page => params[:page], :per_page => params[:per_page]).includes(:host)
end

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

return not_found if params[:id].blank?

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

def destroy
@report = resource_base.find(params[:id])
if @report.destroy
notice _("Successfully destroyed report.")
else
error @report.errors.full_messages.join("<br/>")
end
redirect_to reports_url
end

end
(36-36/47)