Skip to content

Commit

Permalink
Fix crash when marking statuses as sensitive while some statuses are …
Browse files Browse the repository at this point in the history
…deleted (mastodon#22134)

* Do not offer to mark statuses as sensitive if there is no undeleted status with media attachments

* Fix crash when marking statuses as sensitive while some statuses are deleted

Fixes mastodon#21910

* Fix multiple strikes being created for a single report when selecting “Mark as sensitive”

* Add tests
  • Loading branch information
ClearlyClaire committed Feb 9, 2023
1 parent da5d81c commit cfc3fd5
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 9 deletions.
16 changes: 8 additions & 8 deletions app/models/admin/status_batch_action.rb
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def handle_mark_as_sensitive!
# Can't use a transaction here because UpdateStatusService queues
# Sidekiq jobs
statuses.includes(:media_attachments, :preview_cards).find_each do |status|
next unless status.with_media? || status.with_preview_card?
next if status.discarded? || !(status.with_media? || status.with_preview_card?)

authorize(status, :update?)

Expand All @@ -89,15 +89,15 @@ def handle_mark_as_sensitive!
report.resolve!(current_account)
log_action(:resolve, report)
end

@warning = target_account.strikes.create!(
action: :mark_statuses_as_sensitive,
account: current_account,
report: report,
status_ids: status_ids
)
end

@warning = target_account.strikes.create!(
action: :mark_statuses_as_sensitive,
account: current_account,
report: report,
status_ids: status_ids
)

UserMailer.warning(target_account.user, @warning).deliver_later! if warnable?
end

Expand Down
2 changes: 1 addition & 1 deletion app/views/admin/reports/_actions.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= link_to t('admin.reports.mark_as_resolved'), resolve_admin_report_path(@report), method: :post, class: 'button'
.report-actions__item__description
= t('admin.reports.actions.resolve_description_html')
- if @statuses.any? { |status| status.with_media? || status.with_preview_card? }
- if @statuses.any? { |status| (status.with_media? || status.with_preview_card?) && !status.discarded? }
.report-actions__item
.report-actions__item__button
= button_tag t('admin.reports.mark_as_sensitive'), name: :mark_as_sensitive, class: 'button'
Expand Down
42 changes: 42 additions & 0 deletions spec/controllers/admin/reports/actions_controller_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
require 'rails_helper'

describe Admin::Reports::ActionsController do
render_views

let(:user) { Fabricate(:user, role: 'moderator') }
let(:account) { Fabricate(:account) }
let!(:status) { Fabricate(:status, account: account) }
let(:media_attached_status) { Fabricate(:status, account: account) }
let!(:media_attachment) { Fabricate(:media_attachment, account: account, status: media_attached_status) }
let(:media_attached_deleted_status) { Fabricate(:status, account: account, deleted_at: 1.day.ago) }
let!(:media_attachment2) { Fabricate(:media_attachment, account: account, status: media_attached_deleted_status) }
let(:last_media_attached_status) { Fabricate(:status, account: account) }
let!(:last_media_attachment) { Fabricate(:media_attachment, account: account, status: last_media_attached_status) }
let!(:last_status) { Fabricate(:status, account: account) }

before do
sign_in user, scope: :user
end

describe 'POST #create' do
let(:report) { Fabricate(:report, status_ids: status_ids, account: user.account, target_account: account) }
let(:status_ids) { [media_attached_status.id, media_attached_deleted_status.id] }

before do
post :create, params: { report_id: report.id, action => '' }
end

context 'when action is mark_as_sensitive' do

let(:action) { 'mark_as_sensitive' }

it 'resolves the report' do
expect(report.reload.action_taken_at).to_not be_nil
end

it 'marks the non-deleted as sensitive' do
expect(media_attached_status.reload.sensitive).to eq true
end
end
end
end

0 comments on commit cfc3fd5

Please sign in to comment.