2019-07-02 08:10:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class GroupPolicy < ApplicationPolicy
|
2019-07-29 20:45:29 +01:00
|
|
|
def index?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2019-08-01 17:46:17 +01:00
|
|
|
def create?
|
2020-12-17 06:34:00 +00:00
|
|
|
true
|
2019-08-01 17:46:17 +01:00
|
|
|
end
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
def update?
|
2019-07-29 20:45:29 +01:00
|
|
|
if admin?
|
|
|
|
true
|
|
|
|
else
|
|
|
|
check_archive!
|
|
|
|
is_group_admin?
|
|
|
|
end
|
2019-07-02 08:10:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy?
|
2019-07-29 20:45:29 +01:00
|
|
|
if admin?
|
|
|
|
true
|
|
|
|
else
|
|
|
|
check_archive!
|
|
|
|
is_group_admin?
|
|
|
|
end
|
2019-07-02 08:10:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def approve_status?
|
|
|
|
check_archive!
|
2021-01-05 17:16:32 +00:00
|
|
|
is_group_admin_or_moderator?
|
2019-07-02 08:10:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_status?
|
|
|
|
check_archive!
|
2021-01-05 17:16:32 +00:00
|
|
|
is_group_admin_or_moderator?
|
2019-07-02 08:10:25 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def join?
|
|
|
|
check_archive!
|
2019-07-16 15:10:38 +01:00
|
|
|
raise GabSocial::ValidationError, "Account is already a member of this group." if is_member?
|
2019-07-16 15:10:14 +01:00
|
|
|
raise GabSocial::ValidationError, "Account is removed from this group." if is_removed?
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
def leave?
|
|
|
|
check_archive!
|
|
|
|
raise GabSocial::ValidationError, "Group member account not found." if not is_member?
|
|
|
|
|
|
|
|
is_account_the_only_admin = (is_group_admin? and record.group_accounts.where(role: :admin).count == 1)
|
|
|
|
raise GabSocial::ValidationError, "This is the last admin of this group." if is_account_the_only_admin
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_account?
|
2021-01-05 17:16:32 +00:00
|
|
|
is_group_admin_or_moderator?
|
2019-07-02 08:10:25 +01:00
|
|
|
end
|
|
|
|
|
2019-07-16 13:53:56 +01:00
|
|
|
def show_removed_accounts?
|
2021-01-05 17:16:32 +00:00
|
|
|
is_group_admin_or_moderator?
|
2019-07-16 13:53:56 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def create_removed_account?
|
2021-01-05 17:16:32 +00:00
|
|
|
is_group_admin_or_moderator?
|
2019-07-16 13:53:56 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_removed_account?
|
2021-01-05 17:16:32 +00:00
|
|
|
is_group_admin_or_moderator?
|
2019-07-16 13:53:56 +01:00
|
|
|
end
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
private
|
|
|
|
|
2019-07-16 15:10:14 +01:00
|
|
|
def is_removed?
|
|
|
|
record.group_removed_accounts.where(account_id: current_account.id).exists?
|
|
|
|
end
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
def is_member?
|
|
|
|
record.group_accounts.where(account_id: current_account.id).exists?
|
|
|
|
end
|
|
|
|
|
|
|
|
def is_group_admin?
|
|
|
|
record.group_accounts.where(account_id: current_account.id, role: :admin).exists?
|
|
|
|
end
|
|
|
|
|
2021-01-05 17:16:32 +00:00
|
|
|
def is_group_admin_or_moderator?
|
|
|
|
record.group_accounts.where(account_id: current_account.id, role: [:moderator, :admin]).exists?
|
|
|
|
end
|
|
|
|
|
2019-07-02 08:10:25 +01:00
|
|
|
def check_archive!
|
|
|
|
raise GabSocial::ValidationError, "This group has been archived." if record.is_archived
|
|
|
|
end
|
|
|
|
end
|