2017-05-30 02:22:22 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-11-12 06:23:33 +11:00
|
|
|
class StatusPolicy < ApplicationPolicy
|
2018-05-03 18:41:58 +10:00
|
|
|
def initialize(current_account, record, preloaded_relations = {})
|
|
|
|
super(current_account, record)
|
|
|
|
|
|
|
|
@preloaded_relations = preloaded_relations
|
|
|
|
end
|
|
|
|
|
2017-11-12 06:23:33 +11:00
|
|
|
def index?
|
|
|
|
staff?
|
2017-05-30 02:22:22 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def show?
|
2020-09-11 23:16:29 +10:00
|
|
|
return false if author.suspended?
|
|
|
|
|
2018-10-18 02:13:04 +11:00
|
|
|
if requires_mention?
|
2018-05-03 18:41:58 +10:00
|
|
|
owned? || mention_exists?
|
2017-05-30 23:16:14 +10:00
|
|
|
elsif private?
|
2018-05-03 18:41:58 +10:00
|
|
|
owned? || following_author? || mention_exists?
|
2017-05-30 02:22:22 +10:00
|
|
|
else
|
2019-07-17 09:53:37 +10:00
|
|
|
current_account.nil? || (!author_blocking? && !author_blocking_domain?)
|
2017-05-30 02:22:22 +10:00
|
|
|
end
|
|
|
|
end
|
2017-05-30 23:16:14 +10:00
|
|
|
|
|
|
|
def reblog?
|
2018-10-18 02:13:04 +11:00
|
|
|
!requires_mention? && (!private? || owned?) && show? && !blocking_author?
|
2018-05-02 23:50:20 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
def favourite?
|
2018-05-03 18:41:58 +10:00
|
|
|
show? && !blocking_author?
|
2017-05-30 23:16:14 +10:00
|
|
|
end
|
|
|
|
|
2017-05-31 06:56:31 +10:00
|
|
|
def destroy?
|
2017-11-12 06:23:33 +11:00
|
|
|
staff? || owned?
|
2017-05-31 06:56:31 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
alias unreblog? destroy?
|
|
|
|
|
2017-11-12 06:23:33 +11:00
|
|
|
def update?
|
2022-02-10 10:15:30 +11:00
|
|
|
staff? || owned?
|
2017-05-31 06:56:31 +10:00
|
|
|
end
|
|
|
|
|
2017-11-12 06:23:33 +11:00
|
|
|
private
|
|
|
|
|
2018-10-18 02:13:04 +11:00
|
|
|
def requires_mention?
|
|
|
|
record.direct_visibility? || record.limited_visibility?
|
2017-05-30 23:16:14 +10:00
|
|
|
end
|
|
|
|
|
2017-05-31 06:56:31 +10:00
|
|
|
def owned?
|
2017-11-12 06:23:33 +11:00
|
|
|
author.id == current_account&.id
|
2017-05-31 06:56:31 +10:00
|
|
|
end
|
|
|
|
|
2017-05-30 23:16:14 +10:00
|
|
|
def private?
|
2017-11-12 06:23:33 +11:00
|
|
|
record.private_visibility?
|
|
|
|
end
|
|
|
|
|
2018-05-03 18:41:58 +10:00
|
|
|
def mention_exists?
|
|
|
|
return false if current_account.nil?
|
|
|
|
|
|
|
|
if record.mentions.loaded?
|
|
|
|
record.mentions.any? { |mention| mention.account_id == current_account.id }
|
|
|
|
else
|
|
|
|
record.mentions.where(account: current_account).exists?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-17 09:53:37 +10:00
|
|
|
def author_blocking_domain?
|
|
|
|
return false if current_account.nil? || current_account.domain.nil?
|
|
|
|
|
2019-07-18 08:48:26 +10:00
|
|
|
author.domain_blocking?(current_account.domain)
|
2019-07-17 09:53:37 +10:00
|
|
|
end
|
|
|
|
|
2018-05-03 18:41:58 +10:00
|
|
|
def blocking_author?
|
|
|
|
return false if current_account.nil?
|
|
|
|
|
|
|
|
@preloaded_relations[:blocking] ? @preloaded_relations[:blocking][author.id] : current_account.blocking?(author)
|
|
|
|
end
|
|
|
|
|
|
|
|
def author_blocking?
|
|
|
|
return false if current_account.nil?
|
|
|
|
|
|
|
|
@preloaded_relations[:blocked_by] ? @preloaded_relations[:blocked_by][author.id] : author.blocking?(current_account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def following_author?
|
|
|
|
return false if current_account.nil?
|
|
|
|
|
|
|
|
@preloaded_relations[:following] ? @preloaded_relations[:following][author.id] : current_account.following?(author)
|
|
|
|
end
|
|
|
|
|
2017-11-12 06:23:33 +11:00
|
|
|
def author
|
|
|
|
record.account
|
2017-05-30 23:16:14 +10:00
|
|
|
end
|
2017-05-30 02:22:22 +10:00
|
|
|
end
|