You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
# 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'], |
|
visibility: original_status.visibility |
|
) |
|
|
|
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.account_id == @account.id || status.public_visibility? || status.unlisted_visibility? |
|
end |
|
end
|
|
|