X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/683722ed5c1b3224a04c23b4d175a0638964f713..6bcffbf49970b6d8c27f2a9561eec365aa590ea9:/app/controllers/issues_controller.rb diff --git a/app/controllers/issues_controller.rb b/app/controllers/issues_controller.rb index a00423a51..10b626cd1 100644 --- a/app/controllers/issues_controller.rb +++ b/app/controllers/issues_controller.rb @@ -3,57 +3,57 @@ class IssuesController < ApplicationController before_action :authorize_web before_action :require_user - before_action :check_permission, only: [:index, :show, :resolve,:open,:ignore,:comment] - before_action :find_issue, only: [:show, :resolve, :reopen, :ignore] + before_action :check_permission + before_action :find_issue, :only => [:show, :resolve, :reopen, :ignore] def index - @issues = Issue.all - end + @title = t ".title" - def show - @read_reports = @issue.read_reports - @unread_reports = @issue.unread_reports - @comments = @issue.comments - end - - def new - unless create_new_issue_params.blank? - @issue = Issue.find_or_initialize_by(create_new_issue_params) - puts params[:user_id].to_s + "--------------" + if current_user.moderator? + @issue_types = %w[Note] + @users = User.joins(:roles).where(:user_roles => { :role => "moderator" }) + else + @issue_types = %w[DiaryEntry DiaryComment User] + @users = User.joins(:roles).where(:user_roles => { :role => "administrator" }) end - end - def create - @issue = Issue.find_by_reportable_id_and_reportable_type(params[:reportable_id],params[:reportable_type]) - if !@issue - @issue = Issue.find_or_initialize_by(issue_params) - @admins = UserRole.where(role: "administrator") - @admins.each do |admin| - Notifier.new_issue_notification(User.find(admin.user_id)).deliver_now + @issues = Issue.where(:assigned_role => current_user.roles.map(&:role)) + + # If search + if params[:search_by_user] && params[:search_by_user].present? + @find_user = User.find_by(:display_name => params[:search_by_user]) + if @find_user + @issues = @issues.where(:reported_user_id => @find_user.id) + else + notice = t("issues.index.user_not_found") end end - @report = @issue.reports.build(report_params) - @report.user_id = @user.id - if @issue.save! - redirect_to root_path, notice: 'Issue was successfully created.' - else - render :new + + @issues = @issues.where(:status => params[:status][0]) if params[:status] && params[:status][0].present? + + @issues = @issues.where(:reportable_type => params[:issue_type][0]) if params[:issue_type] && params[:issue_type][0].present? + + if params[:last_updated_by] && params[:last_updated_by][0].present? + last_updated_by = params[:last_updated_by][0].to_s == "nil" ? nil : params[:last_updated_by][0].to_i + @issues = @issues.where(:updated_by => last_updated_by) end + + redirect_to issues_path, :notice => notice if notice end - def comment - @issue = Issue.find(params[:id]) - @issue_comment = @issue.comments.build(issue_comment_params) - @issue_comment.user_id = @user.id - @issue_comment.save! - redirect_to @issue + def show + @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 Transistions def resolve if @issue.resolve @issue.save! - redirect_to @issue, notice: "Issue status has been set to: 'Resolved'" + redirect_to @issue, :notice => t("issues.resolved") else render :show end @@ -61,8 +61,9 @@ class IssuesController < ApplicationController def ignore if @issue.ignore + @issue.updated_by = current_user.id @issue.save! - redirect_to @issue, notice: "Issue status has been set to: 'Ignored'" + redirect_to @issue, :notice => t("issues.ignored") else render :show end @@ -70,8 +71,9 @@ class IssuesController < ApplicationController def reopen if @issue.reopen + @issue.updated_by = current_user.id @issue.save! - redirect_to @issue, notice: "Issue status has been set to: 'Open'" + redirect_to @issue, :notice => t("issues.reopened") else render :show end @@ -79,30 +81,14 @@ class IssuesController < ApplicationController private - def find_issue - @issue = Issue.find(params[:id]) - end - - def check_permission - unless @user.administrator? - flash[:error] = t("application.require_admin.not_an_admin") - redirect_to root_path - end - end - - def create_new_issue_params - params.permit(:reportable_id, :reportable_type, :user_id) - end - - def issue_params - params.permit(:reportable_id, :reportable_type,:user_id) - end - - def report_params - params[:report].permit(:details) - end + def find_issue + @issue = Issue.find(params[:id]) + end - def issue_comment_params - params.require(:issue_comment).permit(:body, :user_id) + def check_permission + unless current_user.administrator? || current_user.moderator? + flash[:error] = t("application.require_moderator_or_admin.not_a_moderator_or_admin") + redirect_to root_path end + end end