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