mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 09:21:13 +01:00
35b84985a8
* Skip ActivityPub Announces of non-public objects * Skip OStatus reblogs of non-public statuses
40 lines
1.1 KiB
Ruby
40 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::Activity::Announce < ActivityPub::Activity
|
|
def perform
|
|
original_status = status_from_uri(object_uri)
|
|
original_status ||= fetch_remote_original_status
|
|
|
|
return if original_status.nil? || delete_arrived_first?(@json['id']) || !announceable?(original_status)
|
|
|
|
status = Status.find_by(account: @account, reblog: original_status)
|
|
|
|
return status unless status.nil?
|
|
|
|
status = Status.create!(
|
|
account: @account,
|
|
reblog: original_status,
|
|
uri: @json['id'],
|
|
created_at: @options[:override_timestamps] ? nil : @json['published']
|
|
)
|
|
|
|
distribute(status)
|
|
status
|
|
end
|
|
|
|
private
|
|
|
|
def fetch_remote_original_status
|
|
if object_uri.start_with?('http')
|
|
return if ActivityPub::TagManager.instance.local_uri?(object_uri)
|
|
|
|
ActivityPub::FetchRemoteStatusService.new.call(object_uri, id: true)
|
|
elsif @object['url'].present?
|
|
::FetchRemoteStatusService.new.call(@object['url'])
|
|
end
|
|
end
|
|
|
|
def announceable?(status)
|
|
status.public_visibility? || status.unlisted_visibility?
|
|
end
|
|
end
|