class IssuesController < ApplicationController layout "site" before_action :authorize_web before_action :set_locale before_action :check_database_readable authorize_resource before_action :find_issue, :only => [:show, :resolve, :reopen, :ignore] before_action :check_database_writable, :only => [:resolve, :ignore, :reopen] def index @title = t ".title" @issue_types = [] @issue_types.push("Note", "User") if current_user.moderator? @issue_types.push("DiaryEntry", "DiaryComment", "User") if current_user.administrator? @users = User.joins(:roles).where(:user_roles => { :role => current_user.roles.map(&:role) }).distinct @issues = Issue.visible_to(current_user).order(:updated_at => :desc) # If search if params[:search_by_user].present? @find_user = User.find_by(:display_name => params[:search_by_user]) if @find_user @issues = @issues.where(:reported_user => @find_user) else @issues = @issues.none flash.now[:warning] = t(".user_not_found") end end @issues = @issues.where(:status => params[:status]) if params[:status].present? @issues = @issues.where(:reportable_type => params[:issue_type]) if params[:issue_type].present? if params[:last_updated_by].present? last_updated_by = params[:last_updated_by].to_s == "nil" ? nil : params[:last_updated_by].to_i @issues = @issues.where(:updated_by => last_updated_by) end end def show @title = t ".title", :status => @issue.status.humanize, :issue_id => @issue.id @read_reports = @issue.read_reports @unread_reports = @issue.unread_reports @comments = @issue.comments @related_issues = @issue.reported_user.issues.where(:assigned_role => current_user.roles.map(&:role)) if @issue.reported_user @new_comment = IssueComment.new(:issue => @issue) end # Status Transitions def resolve if @issue.resolve @issue.updated_by = current_user.id @issue.save! redirect_to @issue, :notice => t(".resolved") else render :show end end def ignore if @issue.ignore @issue.updated_by = current_user.id @issue.save! redirect_to @issue, :notice => t(".ignored") else render :show end end def reopen if @issue.reopen @issue.updated_by = current_user.id @issue.save! redirect_to @issue, :notice => t(".reopened") else render :show end end private def find_issue @issue = Issue.visible_to(current_user).find(params[:id]) rescue ActiveRecord::RecordNotFound redirect_to :controller => "errors", :action => "not_found" end end