2017-11-11 20:23:33 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountPolicy < ApplicationPolicy
|
|
|
|
def index?
|
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
def show?
|
|
|
|
staff?
|
|
|
|
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-22 20:02:09 +01:00
|
|
|
def warn?
|
|
|
|
staff? && !record.user&.staff?
|
|
|
|
end
|
|
|
|
|
2017-11-11 20:23:33 +01:00
|
|
|
def suspend?
|
2020-12-15 17:23:58 +01:00
|
|
|
staff? && !record.user&.staff? && !record.instance_actor?
|
2017-11-11 20:23:33 +01:00
|
|
|
end
|
|
|
|
|
2020-09-15 14:37:58 +02:00
|
|
|
def destroy?
|
2020-11-08 00:28:39 +01:00
|
|
|
record.suspended_temporarily? && admin?
|
2020-09-15 14:37:58 +02:00
|
|
|
end
|
|
|
|
|
2017-11-11 20:23:33 +01:00
|
|
|
def unsuspend?
|
2020-11-08 00:28:39 +01:00
|
|
|
staff? && record.suspension_origin_local?
|
2017-11-11 20:23:33 +01:00
|
|
|
end
|
|
|
|
|
2020-11-04 20:45:01 +01:00
|
|
|
def sensitive?
|
|
|
|
staff? && !record.user&.staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsensitive?
|
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
2017-11-11 20:23:33 +01:00
|
|
|
def silence?
|
|
|
|
staff? && !record.user&.staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsilence?
|
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
def redownload?
|
|
|
|
admin?
|
|
|
|
end
|
|
|
|
|
2018-04-02 13:45:07 +02:00
|
|
|
def remove_avatar?
|
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
2018-12-11 19:28:03 +01:00
|
|
|
def remove_header?
|
|
|
|
staff?
|
|
|
|
end
|
|
|
|
|
2017-11-11 20:23:33 +01:00
|
|
|
def subscribe?
|
|
|
|
admin?
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsubscribe?
|
|
|
|
admin?
|
|
|
|
end
|
|
|
|
|
|
|
|
def memorialize?
|
2020-12-15 17:23:58 +01:00
|
|
|
admin? && !record.user&.admin? && !record.instance_actor?
|
2017-11-11 20:23:33 +01:00
|
|
|
end
|
2021-12-17 23:02:14 +01:00
|
|
|
|
|
|
|
def unblock_email?
|
|
|
|
staff?
|
|
|
|
end
|
2022-02-25 00:34:14 +01:00
|
|
|
|
|
|
|
def review?
|
|
|
|
staff?
|
|
|
|
end
|
2017-11-11 20:23:33 +01:00
|
|
|
end
|