2017-08-08 19:52:15 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::Activity::Announce < ActivityPub::Activity
|
|
|
|
def perform
|
2019-02-17 02:38:25 +00:00
|
|
|
return reject_payload! if delete_arrived_first?(@json['id']) || !related_to_local_activity?
|
|
|
|
|
2020-07-20 09:25:26 +00:00
|
|
|
RedisLock.acquire(lock_options) do |lock|
|
|
|
|
if lock.acquired?
|
|
|
|
original_status = status_from_object
|
2019-02-15 17:19:45 +00:00
|
|
|
|
2020-07-20 09:25:26 +00:00
|
|
|
return reject_payload! if original_status.nil? || !announceable?(original_status)
|
2017-08-08 19:52:15 +00:00
|
|
|
|
2020-07-20 09:25:26 +00:00
|
|
|
@status = Status.find_by(account: @account, reblog: original_status)
|
2017-08-20 14:53:47 +00:00
|
|
|
|
2020-07-20 09:25:26 +00:00
|
|
|
return @status unless @status.nil?
|
2017-08-20 14:53:47 +00:00
|
|
|
|
2020-07-20 09:25:26 +00:00
|
|
|
@status = Status.create!(
|
|
|
|
account: @account,
|
|
|
|
reblog: original_status,
|
|
|
|
uri: @json['id'],
|
|
|
|
created_at: @json['published'],
|
|
|
|
override_timestamps: @options[:override_timestamps],
|
|
|
|
visibility: visibility_from_audience
|
|
|
|
)
|
2017-10-08 15:34:34 +00:00
|
|
|
|
2020-07-20 09:25:26 +00:00
|
|
|
distribute(@status)
|
|
|
|
else
|
|
|
|
raise Mastodon::RaceConditionError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@status
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|
2017-08-19 16:44:48 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2020-08-24 12:11:47 +00:00
|
|
|
def audience_to
|
|
|
|
as_array(@json['to']).map { |x| value_or_id(x) }
|
|
|
|
end
|
|
|
|
|
|
|
|
def audience_cc
|
|
|
|
as_array(@json['cc']).map { |x| value_or_id(x) }
|
|
|
|
end
|
|
|
|
|
2019-01-18 14:56:21 +00:00
|
|
|
def visibility_from_audience
|
2021-03-24 09:19:40 +00:00
|
|
|
if audience_to.any? { |to| ActivityPub::TagManager.instance.public_collection?(to) }
|
2019-01-18 14:56:21 +00:00
|
|
|
:public
|
2021-03-24 09:19:40 +00:00
|
|
|
elsif audience_cc.any? { |cc| ActivityPub::TagManager.instance.public_collection?(cc) }
|
2019-01-18 14:56:21 +00:00
|
|
|
:unlisted
|
2020-08-24 12:11:47 +00:00
|
|
|
elsif audience_to.include?(@account.followers_url)
|
2019-01-18 14:56:21 +00:00
|
|
|
:private
|
|
|
|
else
|
|
|
|
:direct
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-09 18:35:10 +00:00
|
|
|
def announceable?(status)
|
2019-07-08 10:03:45 +00:00
|
|
|
status.account_id == @account.id || status.distributable?
|
2018-01-09 18:35:10 +00:00
|
|
|
end
|
2019-02-15 17:19:45 +00:00
|
|
|
|
|
|
|
def related_to_local_activity?
|
|
|
|
followed_by_local_accounts? || requested_through_relay? || reblog_of_local_status?
|
|
|
|
end
|
|
|
|
|
2019-03-27 18:58:24 +00:00
|
|
|
def requested_through_relay?
|
|
|
|
super || Relay.find_by(inbox_url: @account.inbox_url)&.enabled?
|
|
|
|
end
|
|
|
|
|
2019-02-15 17:19:45 +00:00
|
|
|
def reblog_of_local_status?
|
|
|
|
status_from_uri(object_uri)&.account&.local?
|
|
|
|
end
|
2020-07-20 09:25:26 +00:00
|
|
|
|
|
|
|
def lock_options
|
|
|
|
{ redis: Redis.current, key: "announce:#{@object['id']}" }
|
|
|
|
end
|
2017-08-08 19:52:15 +00:00
|
|
|
end
|