cbd0ee1d07
* Update devise-two-factor to unreleased fork for Rails 6 support Update tests to match new `rotp` version. * Update nsa gem to unreleased fork for Rails 6 support * Update rails to 6.1.3 and rails-i18n to 6.0 * Update to unreleased fork of pluck_each for Ruby 6 support * Run "rails app:update" * Add missing ActiveStorage config file * Use config.ssl_options instead of removed ApplicationController#force_ssl Disabled force_ssl-related tests as they do not seem to be easily testable anymore. * Fix nonce directives by removing Rails 5 specific monkey-patching * Fix fixture_file_upload deprecation warning * Fix yield-based test failing with Rails 6 * Use Rails 6's index_with when possible * Use ActiveRecord::Cache::Store#delete_multi from Rails 6 This will yield better performances when deleting an account * Disable Rails 6.1's automatic preload link headers Since Rails 6.1, ActionView adds preload links for javascript files in the Links header per default. In our case, that will bloat headers too much and potentially cause issues with reverse proxies. Furhermore, we don't need those links, as we already output them as HTML link tags. * Switch to Rails 6.0 default config * Switch to Rails 6.1 default config * Do not include autoload paths in the load path
119 lines
3.6 KiB
Ruby
119 lines
3.6 KiB
Ruby
# frozen_string_literal: true
|
|
# == Schema Information
|
|
#
|
|
# Table name: reports
|
|
#
|
|
# id :bigint(8) not null, primary key
|
|
# status_ids :bigint(8) default([]), not null, is an Array
|
|
# comment :text default(""), not null
|
|
# action_taken :boolean default(FALSE), not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :bigint(8) not null
|
|
# action_taken_by_account_id :bigint(8)
|
|
# target_account_id :bigint(8) not null
|
|
# assigned_account_id :bigint(8)
|
|
# uri :string
|
|
# forwarded :boolean
|
|
#
|
|
|
|
class Report < ApplicationRecord
|
|
include Paginable
|
|
include RateLimitable
|
|
|
|
rate_limit by: :account, family: :reports
|
|
|
|
belongs_to :account
|
|
belongs_to :target_account, class_name: 'Account'
|
|
belongs_to :action_taken_by_account, class_name: 'Account', optional: true
|
|
belongs_to :assigned_account, class_name: 'Account', optional: true
|
|
|
|
has_many :notes, class_name: 'ReportNote', foreign_key: :report_id, inverse_of: :report, dependent: :destroy
|
|
|
|
scope :unresolved, -> { where(action_taken: false) }
|
|
scope :resolved, -> { where(action_taken: true) }
|
|
scope :with_accounts, -> { includes([:account, :target_account, :action_taken_by_account, :assigned_account].index_with({ user: [:invite_request, :invite] })) }
|
|
|
|
validates :comment, length: { maximum: 1000 }
|
|
|
|
def local?
|
|
false # Force uri_for to use uri attribute
|
|
end
|
|
|
|
before_validation :set_uri, only: :create
|
|
|
|
def object_type
|
|
:flag
|
|
end
|
|
|
|
def statuses
|
|
Status.with_discarded.where(id: status_ids).includes(:account, :media_attachments, :mentions)
|
|
end
|
|
|
|
def media_attachments
|
|
MediaAttachment.where(status_id: status_ids)
|
|
end
|
|
|
|
def assign_to_self!(current_account)
|
|
update!(assigned_account_id: current_account.id)
|
|
end
|
|
|
|
def unassign!
|
|
update!(assigned_account_id: nil)
|
|
end
|
|
|
|
def resolve!(acting_account)
|
|
if account_id == -99 && target_account.trust_level == Account::TRUST_LEVELS[:untrusted]
|
|
# This is an automated report and it is being dismissed, so it's
|
|
# a false positive, in which case update the account's trust level
|
|
# to prevent further spam checks
|
|
|
|
target_account.update(trust_level: Account::TRUST_LEVELS[:trusted])
|
|
end
|
|
|
|
RemovalWorker.push_bulk(Status.with_discarded.discarded.where(id: status_ids).pluck(:id)) { |status_id| [status_id, { immediate: true }] }
|
|
update!(action_taken: true, action_taken_by_account_id: acting_account.id)
|
|
end
|
|
|
|
def unresolve!
|
|
update!(action_taken: false, action_taken_by_account_id: nil)
|
|
end
|
|
|
|
def unresolved?
|
|
!action_taken?
|
|
end
|
|
|
|
def unresolved_siblings?
|
|
Report.where.not(id: id).where(target_account_id: target_account_id).unresolved.exists?
|
|
end
|
|
|
|
def history
|
|
time_range = created_at..updated_at
|
|
|
|
sql = [
|
|
Admin::ActionLog.where(
|
|
target_type: 'Report',
|
|
target_id: id,
|
|
created_at: time_range
|
|
).unscope(:order),
|
|
|
|
Admin::ActionLog.where(
|
|
target_type: 'Account',
|
|
target_id: target_account_id,
|
|
created_at: time_range
|
|
).unscope(:order),
|
|
|
|
Admin::ActionLog.where(
|
|
target_type: 'Status',
|
|
target_id: status_ids,
|
|
created_at: time_range
|
|
).unscope(:order),
|
|
].map { |query| "(#{query.to_sql})" }.join(' UNION ALL ')
|
|
|
|
Admin::ActionLog.from("(#{sql}) AS admin_action_logs")
|
|
end
|
|
|
|
def set_uri
|
|
self.uri = ActivityPub::TagManager.instance.generate_uri_for(self) if uri.nil? && account.local?
|
|
end
|
|
end
|