Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 16:58:28 +11:00
|
|
|
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: account_warnings
|
|
|
|
#
|
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# account_id :bigint(8)
|
|
|
|
# target_account_id :bigint(8)
|
|
|
|
# action :integer default("none"), not null
|
|
|
|
# text :text default(""), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2022-01-17 19:41:33 +11:00
|
|
|
# report_id :bigint(8)
|
|
|
|
# status_ids :string is an Array
|
2022-02-15 07:27:53 +11:00
|
|
|
# overruled_at :datetime
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
#
|
|
|
|
|
|
|
|
class AccountWarning < ApplicationRecord
|
2022-01-17 19:41:33 +11:00
|
|
|
enum action: {
|
2023-02-20 16:58:28 +11:00
|
|
|
none: 0,
|
|
|
|
disable: 1_000,
|
2022-03-02 08:20:29 +11:00
|
|
|
mark_statuses_as_sensitive: 1_250,
|
2023-02-20 16:58:28 +11:00
|
|
|
delete_statuses: 1_500,
|
|
|
|
sensitive: 2_000,
|
|
|
|
silence: 3_000,
|
|
|
|
suspend: 4_000,
|
2022-01-17 19:41:33 +11:00
|
|
|
}, _suffix: :action
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
|
2023-01-21 20:22:22 +11:00
|
|
|
before_validation :before_validate
|
|
|
|
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
belongs_to :account, inverse_of: :account_warnings
|
2022-01-17 19:41:33 +11:00
|
|
|
belongs_to :target_account, class_name: 'Account', inverse_of: :strikes
|
|
|
|
belongs_to :report, optional: true
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
|
2022-02-15 07:27:53 +11:00
|
|
|
has_one :appeal, dependent: :destroy, inverse_of: :strike
|
2022-01-17 19:41:33 +11:00
|
|
|
|
|
|
|
scope :latest, -> { order(id: :desc) }
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
scope :custom, -> { where.not(text: '') }
|
2022-03-02 05:37:47 +11:00
|
|
|
scope :recent, -> { where('account_warnings.created_at >= ?', 3.months.ago) }
|
2022-01-17 19:41:33 +11:00
|
|
|
|
|
|
|
def statuses
|
|
|
|
Status.with_discarded.where(id: status_ids || [])
|
|
|
|
end
|
2022-02-15 07:27:53 +11:00
|
|
|
|
|
|
|
def overruled?
|
|
|
|
overruled_at.present?
|
|
|
|
end
|
2022-08-26 04:39:40 +10:00
|
|
|
|
|
|
|
def to_log_human_identifier
|
|
|
|
target_account.acct
|
|
|
|
end
|
2023-01-21 20:22:22 +11:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def before_validate
|
|
|
|
self.text = '' if text.blank?
|
|
|
|
end
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-23 06:02:09 +11:00
|
|
|
end
|