diff --git a/app/controllers/issues_controller.rb b/app/controllers/issues_controller.rb index 7cd21d512..24ac932d6 100644 --- a/app/controllers/issues_controller.rb +++ b/app/controllers/issues_controller.rb @@ -7,21 +7,34 @@ class IssuesController < ApplicationController before_action :find_issue, only: [:show, :resolve, :reopen, :ignore] def index - if params[:search_by_user].present? - @user = User.find_by_display_name(params[:search_by_user]) - if @user.present? - @issues = Issue.where(reported_user_id: @user.id).order(:status) - else - @issues = Issue.all.order(:status) - redirect_to issues_path, notice: t('issues.index.search.user_not_found') - end - - if @user.present? and not @issues.present? - @issues = Issue.all.order(:status) - redirect_to issues_path, notice: t('issues.index.search.issues_not_found') - end + # Get user role + if @user.administrator? + @user_role = "administrator" else - @issues = Issue.all.order(:status) + @user_role = "moderator" + end + + # If search + if params[:search_by_user] + @find_user = User.find_by_display_name(params[:search_by_user]) + if @find_user + @issues = Issue.where(reported_user_id: @find_user.id, issue_type: @user_role).order(:status) + else + @issues = Issue.where(issue_type: @user_role).order(:status) + notice = t('issues.index.search.user_not_found') + end + + if @find_user !=nil and @issues.first == nil + @issues = Issue.where(issue_type: @user_role).order(:status) + notice = t('issues.index.search.issues_not_found') + end + + if notice + redirect_to issues_path, notice: notice + end + + else + @issues = Issue.where(issue_type: @user_role).order(:status) end end @@ -30,6 +43,9 @@ class IssuesController < ApplicationController @unread_reports = @issue.unread_reports @comments = @issue.comments @related_issues = @issue.user.issues + if @issue.updated_by + @updated_by_admin = User.find(@issue.updated_by) + end end def new @@ -41,14 +57,23 @@ class IssuesController < ApplicationController end def create + admin_issues = [ 'DiaryEntry', 'DiaryComment', 'User'] + moderator_issues = [] @issue = Issue.find_by_reportable_id_and_reportable_type(params[:reportable_id],params[:reportable_type]) # Check if Issue alrwady exists if !@issue @issue = Issue.find_or_initialize_by(issue_params) + @issue.updated_by = nil @admins = UserRole.where(role: "administrator") @admins.each do |admin| Notifier.new_issue_notification(User.find(admin.user_id)).deliver_now end + + # Reassign to moderators if it is a moderator issue + @issue.issue_type = "administrator" + if moderator_issues.include? @issue.reportable.class.name + reassign_issue + end end # Check if details provided are sufficient @@ -112,7 +137,13 @@ class IssuesController < ApplicationController @issue = Issue.find(params[:id]) @issue_comment = @issue.comments.build(issue_comment_params) @issue_comment.commenter_user_id = @user.id + if params[:reassign] + reassign_issue + @issue_comment.reassign = true + end @issue_comment.save! + @issue.updated_by = @user.id + @issue.save! redirect_to @issue end @@ -128,6 +159,7 @@ class IssuesController < ApplicationController def ignore if @issue.ignore + @issue.updated_by = @user.id @issue.save! redirect_to @issue, notice: t('issues.ignored') else @@ -137,6 +169,7 @@ class IssuesController < ApplicationController def reopen if @issue.reopen + @issue.updated_by = @user.id @issue.save! redirect_to @issue, notice: t('issues.reopened') else @@ -144,6 +177,15 @@ class IssuesController < ApplicationController end end + # Reassign Issues between Administrators and Moderators + def reassign_issue + if @issue.issue_type == "moderator" + @issue.issue_type = "administrator" + else + @issue.issue_type = "moderator" + end + @issue.save! + end private diff --git a/app/models/issue.rb b/app/models/issue.rb index 604b73d98..6de535e81 100644 --- a/app/models/issue.rb +++ b/app/models/issue.rb @@ -10,6 +10,7 @@ class Issue < ActiveRecord::Base # Check if more statuses are needed enum status: %w( open ignored resolved ) + enum type: %w( administrator moderator ) scope :with_status, -> (issue_status) { where(:status => statuses[issue_status])} @@ -44,5 +45,4 @@ class Issue < ActiveRecord::Base end end - end diff --git a/app/views/diary_entry/_diary_entry.html.erb b/app/views/diary_entry/_diary_entry.html.erb index 76a6666f3..5a34bad5e 100644 --- a/app/views/diary_entry/_diary_entry.html.erb +++ b/app/views/diary_entry/_diary_entry.html.erb @@ -31,11 +31,12 @@ <%= link_to t('diary_entry.diary_entry.edit_link'), :action => 'edit', :display_name => diary_entry.user.display_name, :id => diary_entry.id %> <% end %> + <% if @user and diary_entry.user.id != @user.id %>
<%= notice %>
<% content_for :heading do %> -Issue type: <%= @issue.reportable_type %>
- <%= @issue.reports.count %> reports | First reported: <%= l @issue.created_at.to_date, :format => :long %> <%= "| Last resolved at #{l(@issue.resolved_at.to_datetime, :format =>:long)}" if @issue.resolved_at? %> + <%= @issue.reports.count %> reports | First reported: <%= l @issue.created_at.to_date, :format => :long %> <%= "| Last resolved at #{l(@issue.resolved_at.to_datetime, :format =>:long)}" if @issue.resolved_at? %> <%= "| Last updated at #{l(@issue.updated_at.to_datetime, :format => :long)} by #{@updated_by_admin.display_name}" if @updated_by_admin %>
<%= link_to t('issues.resolve'), resolve_issue_url(@issue), :method => :post if @issue.may_resolve? %>
diff --git a/config/locales/en-GB.yml b/config/locales/en-GB.yml index 5962eb747..e62069a5e 100644 --- a/config/locales/en-GB.yml +++ b/config/locales/en-GB.yml @@ -953,6 +953,10 @@ en-GB: provide_details: Please provide the required details new: details: Please provide some more details into the problem. (This field cannot be left blank!) + show: + comments: + reassign: The Issue was reassigned + reassign_param: Reassign Issue? resolved: Issue status has been set to 'Resolved' ignored: Issue status has been set to 'Ignored' reopened: Issue status has been set to 'Open' diff --git a/config/locales/en.yml b/config/locales/en.yml index 46de256bf..c65f51bc6 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -923,6 +923,10 @@ en: provide_details: Please provide the required details new: details: Please provide some more details into the problem. (This field cannot be left blank!) + show: + comments: + reassign: The Issue was reassigned + reassign_param: Reassign Issue? resolved: Issue status has been set to 'Resolved' ignored: Issue status has been set to 'Ignored' reopened: Issue status has been set to 'Open' diff --git a/db/migrate/20150516073616_create_issues_and_reports.rb b/db/migrate/20150516073616_create_issues_and_reports.rb index 153dbd690..709754dbf 100644 --- a/db/migrate/20150516073616_create_issues_and_reports.rb +++ b/db/migrate/20150516073616_create_issues_and_reports.rb @@ -7,10 +7,12 @@ class CreateIssuesAndReports < ActiveRecord::Migration t.integer :reportable_id, :null => false t.integer :reported_user_id, :null => false t.integer :status + t.string :issue_type t.datetime :resolved_at t.integer :resolved_by t.datetime :created_at t.datetime :updated_at + t.integer :updated_by t.timestamps null: false end diff --git a/db/migrate/20150526130032_create_issue_comments.rb b/db/migrate/20150526130032_create_issue_comments.rb index 688fa2b99..9fb35a922 100644 --- a/db/migrate/20150526130032_create_issue_comments.rb +++ b/db/migrate/20150526130032_create_issue_comments.rb @@ -5,7 +5,7 @@ class CreateIssueComments < ActiveRecord::Migration t.integer :commenter_user_id t.text :body t.datetime :created_at - + t.boolean :reassign t.timestamps null: false end diff --git a/db/structure.sql b/db/structure.sql index e19788329..4c1328a18 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -151,10 +151,6 @@ CREATE FUNCTION xid_to_int4(xid) RETURNS integer AS '$libdir/libpgosm', 'xid_to_int4'; -SET default_tablespace = ''; - -SET default_with_oids = false; - SET default_tablespace = ''; SET default_with_oids = false; @@ -677,6 +673,7 @@ CREATE TABLE issue_comments ( commenter_user_id integer, body text, created_at timestamp without time zone NOT NULL, + reassign boolean, updated_at timestamp without time zone NOT NULL ); @@ -710,10 +707,12 @@ CREATE TABLE issues ( reportable_id integer NOT NULL, reported_user_id integer NOT NULL, status integer, + issue_type character varying, resolved_at timestamp without time zone, resolved_by integer, created_at timestamp without time zone NOT NULL, - updated_at timestamp without time zone NOT NULL + updated_at timestamp without time zone NOT NULL, + updated_by integer );
+
<%= submit_tag 'Submit' %> <% end %>