2017-05-29 17:22:22 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-11-11 19:23:33 +00:00
|
|
|
class StatusPolicy < ApplicationPolicy
|
|
|
|
def index?
|
|
|
|
staff?
|
2017-05-29 17:22:22 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def show?
|
2017-05-30 14:16:14 +01:00
|
|
|
if direct?
|
2017-11-11 19:23:33 +00:00
|
|
|
owned? || record.mentions.where(account: current_account).exists?
|
2017-05-30 14:16:14 +01:00
|
|
|
elsif private?
|
2017-11-11 19:23:33 +00:00
|
|
|
owned? || current_account&.following?(author) || record.mentions.where(account: current_account).exists?
|
2017-05-29 17:22:22 +01:00
|
|
|
else
|
2017-11-11 19:23:33 +00:00
|
|
|
current_account.nil? || !author.blocking?(current_account)
|
2017-05-29 17:22:22 +01:00
|
|
|
end
|
|
|
|
end
|
2017-05-30 14:16:14 +01:00
|
|
|
|
|
|
|
def reblog?
|
|
|
|
!direct? && !private? && show?
|
|
|
|
end
|
|
|
|
|
2017-05-30 21:56:31 +01:00
|
|
|
def destroy?
|
2017-11-11 19:23:33 +00:00
|
|
|
staff? || owned?
|
2017-05-30 21:56:31 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
alias unreblog? destroy?
|
|
|
|
|
2017-11-11 19:23:33 +00:00
|
|
|
def update?
|
|
|
|
staff?
|
2017-05-30 21:56:31 +01:00
|
|
|
end
|
|
|
|
|
2017-11-11 19:23:33 +00:00
|
|
|
private
|
|
|
|
|
2017-05-30 14:16:14 +01:00
|
|
|
def direct?
|
2017-11-11 19:23:33 +00:00
|
|
|
record.direct_visibility?
|
2017-05-30 14:16:14 +01:00
|
|
|
end
|
|
|
|
|
2017-05-30 21:56:31 +01:00
|
|
|
def owned?
|
2017-11-11 19:23:33 +00:00
|
|
|
author.id == current_account&.id
|
2017-05-30 21:56:31 +01:00
|
|
|
end
|
|
|
|
|
2017-05-30 14:16:14 +01:00
|
|
|
def private?
|
2017-11-11 19:23:33 +00:00
|
|
|
record.private_visibility?
|
|
|
|
end
|
|
|
|
|
|
|
|
def author
|
|
|
|
record.account
|
2017-05-30 14:16:14 +01:00
|
|
|
end
|
2017-05-29 17:22:22 +01:00
|
|
|
end
|