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