Project

General

Profile

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

before_filter :setup_search_options, :only => :index

def index
@reports = resource_base.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.authorized(:view_hosts).find(params[:host_id]).try(:id) } if params[:host_id].present?
params[:id] = resource_base.where(conditions).maximum(:id)
end
@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
process_success :success_msg => _("Successfully destroyed report."), :success_redirect => reports_path
else
process_error
end
end

private

def resource_base
super.my_reports
end
end
(40-40/51)