Admin reports with accounts (#2092)
* Add a ReportFilter class * Add reports and targeted_reports relationships to Account * Use ReportFilter from admin/reports controller * Link to admin/reports filtered views from admin account show view * Add indexes to reports.account_id and reports.target_account_idmain
parent
f23281e31e
commit
66d8f99a30
|
@ -49,14 +49,18 @@ module Admin
|
||||||
end
|
end
|
||||||
|
|
||||||
def filtered_reports
|
def filtered_reports
|
||||||
filtering_scope.order('id desc').includes(
|
ReportFilter.new(filter_params).results.order('id desc').includes(
|
||||||
:account,
|
:account,
|
||||||
:target_account
|
:target_account
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def filtering_scope
|
def filter_params
|
||||||
params[:resolved].present? ? Report.resolved : Report.unresolved
|
params.permit(
|
||||||
|
:account_id,
|
||||||
|
:resolved,
|
||||||
|
:target_account_id
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
def set_report
|
def set_report
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
module Admin::FilterHelper
|
module Admin::FilterHelper
|
||||||
ACCOUNT_FILTERS = %i[local remote by_domain silenced suspended recent].freeze
|
ACCOUNT_FILTERS = %i[local remote by_domain silenced suspended recent].freeze
|
||||||
REPORT_FILTERS = %i[resolved].freeze
|
REPORT_FILTERS = %i[resolved account_id target_account_id].freeze
|
||||||
|
|
||||||
FILTERS = ACCOUNT_FILTERS + REPORT_FILTERS
|
FILTERS = ACCOUNT_FILTERS + REPORT_FILTERS
|
||||||
|
|
||||||
|
|
|
@ -55,6 +55,10 @@ class Account < ApplicationRecord
|
||||||
# PuSH subscriptions
|
# PuSH subscriptions
|
||||||
has_many :subscriptions, dependent: :destroy
|
has_many :subscriptions, dependent: :destroy
|
||||||
|
|
||||||
|
# Report relationships
|
||||||
|
has_many :reports
|
||||||
|
has_many :targeted_reports, class_name: 'Report', foreign_key: :target_account_id
|
||||||
|
|
||||||
scope :remote, -> { where.not(domain: nil) }
|
scope :remote, -> { where.not(domain: nil) }
|
||||||
scope :local, -> { where(domain: nil) }
|
scope :local, -> { where(domain: nil) }
|
||||||
scope :without_followers, -> { where('(select count(f.id) from follows as f where f.target_account_id = accounts.id) = 0') }
|
scope :without_followers, -> { where('(select count(f.id) from follows as f where f.target_account_id = accounts.id) = 0') }
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class ReportFilter
|
||||||
|
attr_reader :params
|
||||||
|
|
||||||
|
def initialize(params)
|
||||||
|
@params = params
|
||||||
|
end
|
||||||
|
|
||||||
|
def results
|
||||||
|
scope = Report.unresolved
|
||||||
|
params.each do |key, value|
|
||||||
|
scope = scope.merge scope_for(key, value)
|
||||||
|
end
|
||||||
|
scope
|
||||||
|
end
|
||||||
|
|
||||||
|
def scope_for(key, value)
|
||||||
|
case key.to_sym
|
||||||
|
when :resolved
|
||||||
|
Report.resolved
|
||||||
|
when :account_id
|
||||||
|
Report.where(account_id: value)
|
||||||
|
when :target_account_id
|
||||||
|
Report.where(target_account_id: value)
|
||||||
|
else
|
||||||
|
raise "Unknown filter: #{key}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
|
@ -60,6 +60,12 @@
|
||||||
= @account.media_attachments.count
|
= @account.media_attachments.count
|
||||||
= surround '(', ')' do
|
= surround '(', ')' do
|
||||||
= number_to_human_size @account.media_attachments.sum('file_file_size')
|
= number_to_human_size @account.media_attachments.sum('file_file_size')
|
||||||
|
%tr
|
||||||
|
%th= t('.created_reports')
|
||||||
|
%td= link_to pluralize(@account.reports.count, t('.report')), admin_reports_path(account_id: @account.id)
|
||||||
|
%tr
|
||||||
|
%th= t('.targeted_reports')
|
||||||
|
%td= link_to pluralize(@account.targeted_reports.count, t('.report')), admin_reports_path(target_account_id: @account.id)
|
||||||
|
|
||||||
- if @account.local?
|
- if @account.local?
|
||||||
%div{ style: 'float: right' }
|
%div{ style: 'float: right' }
|
||||||
|
|
|
@ -73,6 +73,10 @@ en:
|
||||||
push_subscription_expires: PuSH subscription expires
|
push_subscription_expires: PuSH subscription expires
|
||||||
reset_password: Reset password
|
reset_password: Reset password
|
||||||
salmon_url: Salmon URL
|
salmon_url: Salmon URL
|
||||||
|
show:
|
||||||
|
created_reports: Reports created by this account
|
||||||
|
report: report
|
||||||
|
targeted_reports: Reports made about this account
|
||||||
silence: Silence
|
silence: Silence
|
||||||
statuses: Statuses
|
statuses: Statuses
|
||||||
title: Accounts
|
title: Accounts
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
class AddIndexesToReportsForAccounts < ActiveRecord::Migration[5.0]
|
||||||
|
def change
|
||||||
|
add_index :reports, :account_id
|
||||||
|
add_index :reports, :target_account_id
|
||||||
|
end
|
||||||
|
end
|
|
@ -10,7 +10,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(version: 20170414132105) do
|
ActiveRecord::Schema.define(version: 20170418160728) do
|
||||||
|
|
||||||
# These are extensions that must be enabled in order to support this database
|
# These are extensions that must be enabled in order to support this database
|
||||||
enable_extension "plpgsql"
|
enable_extension "plpgsql"
|
||||||
|
@ -215,6 +215,8 @@ ActiveRecord::Schema.define(version: 20170414132105) do
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
t.integer "action_taken_by_account_id"
|
t.integer "action_taken_by_account_id"
|
||||||
|
t.index ["account_id"], name: "index_reports_on_account_id", using: :btree
|
||||||
|
t.index ["target_account_id"], name: "index_reports_on_target_account_id", using: :btree
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "settings", force: :cascade do |t|
|
create_table "settings", force: :cascade do |t|
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
describe ReportFilter do
|
||||||
|
describe 'with empty params' do
|
||||||
|
it 'defaults to unresolved reports list' do
|
||||||
|
filter = ReportFilter.new({})
|
||||||
|
|
||||||
|
expect(filter.results).to eq Report.unresolved
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe 'with invalid params' do
|
||||||
|
it 'raises with key error' do
|
||||||
|
filter = ReportFilter.new(wrong: true)
|
||||||
|
|
||||||
|
expect { filter.results }.to raise_error(/wrong/)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe 'with valid params' do
|
||||||
|
it 'combines filters on Report' do
|
||||||
|
filter = ReportFilter.new(account_id: '123', resolved: true)
|
||||||
|
|
||||||
|
allow(Report).to receive(:where).and_return(Report.none)
|
||||||
|
allow(Report).to receive(:resolved).and_return(Report.none)
|
||||||
|
filter.results
|
||||||
|
expect(Report).to have_received(:where).with(account_id: '123')
|
||||||
|
expect(Report).to have_received(:resolved)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue