mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-02 19:11:11 +01:00
63f0979799
Additionally, ActivityPub::FetchRemoteStatusService no longer parses activities. OStatus::Activity::Creation no longer delegates to ActivityPub because the provided ActivityPub representations are not signed while OStatus representations are.
35 lines
949 B
Ruby
35 lines
949 B
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'])
|
|
|
|
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: @json['published'] || Time.now.utc
|
|
)
|
|
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
|
|
end
|