2017-11-11 19:23:33 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountPolicy < ApplicationPolicy
|
|
|
|
def index?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users)
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def show?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users)
|
2017-11-11 19:23:33 +00:00
|
|
|
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 19:02:09 +00:00
|
|
|
def warn?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users, :manage_reports) && role.overrides?(record.user_role)
|
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 19:02:09 +00:00
|
|
|
end
|
|
|
|
|
2017-11-11 19:23:33 +00:00
|
|
|
def suspend?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users, :manage_reports) && role.overrides?(record.user_role) && !record.instance_actor?
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
|
|
|
|
2020-09-15 12:37:58 +00:00
|
|
|
def destroy?
|
2022-07-05 00:41:40 +00:00
|
|
|
record.suspended_temporarily? && role.can?(:delete_user_data)
|
2020-09-15 12:37:58 +00:00
|
|
|
end
|
|
|
|
|
2017-11-11 19:23:33 +00:00
|
|
|
def unsuspend?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users) && record.suspension_origin_local?
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
|
|
|
|
2020-11-04 19:45:01 +00:00
|
|
|
def sensitive?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users, :manage_reports) && role.overrides?(record.user_role)
|
2020-11-04 19:45:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def unsensitive?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users)
|
2020-11-04 19:45:01 +00:00
|
|
|
end
|
|
|
|
|
2017-11-11 19:23:33 +00:00
|
|
|
def silence?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users, :manage_reports) && role.overrides?(record.user_role)
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def unsilence?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users)
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def redownload?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_federation)
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
|
|
|
|
2018-04-02 11:45:07 +00:00
|
|
|
def remove_avatar?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users, :manage_reports) && role.overrides?(record.user_role)
|
2018-04-02 11:45:07 +00:00
|
|
|
end
|
|
|
|
|
2018-12-11 18:28:03 +00:00
|
|
|
def remove_header?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users, :manage_reports) && role.overrides?(record.user_role)
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def memorialize?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:delete_user_data) && role.overrides?(record.user_role) && !record.instance_actor?
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
2021-12-17 22:02:14 +00:00
|
|
|
|
|
|
|
def unblock_email?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_users)
|
2021-12-17 22:02:14 +00:00
|
|
|
end
|
2022-02-24 23:34:14 +00:00
|
|
|
|
|
|
|
def review?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_taxonomies)
|
2022-02-24 23:34:14 +00:00
|
|
|
end
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|