mirror of
https://github.com/mastodon/mastodon.git
synced 2026-06-10 17:51:19 -05:00
Some checks failed
Check i18n / check-i18n (push) Waiting to run
Chromatic / Check for relevant changes (push) Waiting to run
Chromatic / Run Chromatic (push) Blocked by required conditions
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / lint (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / test (3.4) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.4) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.19.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.4, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Bundler Audit / security (push) Has been cancelled
Haml Linting / lint (push) Has been cancelled
Ruby Linting / lint (push) Has been cancelled
Historical data migration test / test (14-alpine) (push) Has been cancelled
Historical data migration test / test (15-alpine) (push) Has been cancelled
Historical data migration test / test (16-alpine) (push) Has been cancelled
Historical data migration test / test (17-alpine) (push) Has been cancelled
58 lines
1.8 KiB
Ruby
58 lines
1.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::Activity::Update < ActivityPub::Activity
|
|
# Updates to unknown objects older than that are ignored
|
|
OBJECT_AGE_THRESHOLD = 1.day
|
|
|
|
def perform
|
|
@account.schedule_refresh_if_stale!
|
|
|
|
dereference_object!
|
|
|
|
if equals_or_includes_any?(@object['type'], %w(Application Group Organization Person Service))
|
|
update_account
|
|
elsif supported_object_type? || converted_object_type?
|
|
update_status
|
|
elsif equals_or_includes_any?(@object['type'], ['FeaturedCollection'])
|
|
update_collection
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def update_account
|
|
return reject_payload! if @account.uri != object_uri
|
|
|
|
ActivityPub::ProcessAccountService.new.call(@account.username, @account.domain, @object, signed_with_known_key: true, request_id: @options[:request_id])
|
|
end
|
|
|
|
def update_status
|
|
return reject_payload! if non_matching_uri_hosts?(@account.uri, object_uri)
|
|
|
|
@status = Status.find_by(uri: object_uri, account_id: @account.id)
|
|
|
|
# Ignore updates for old unknown objects, since those are updates we are not interested in
|
|
# Also ignore unknown objects from suspended users for the same reasons
|
|
return if @status.nil? && (@account.suspended? || object_too_old?)
|
|
|
|
# We may be getting `Create` and `Update` out of order
|
|
@status ||= ActivityPub::Activity::Create.new(@json, @account, **@options).perform
|
|
|
|
return if @status.nil?
|
|
|
|
ActivityPub::ProcessStatusUpdateService.new.call(@status, @json, @object, request_id: @options[:request_id])
|
|
end
|
|
|
|
def update_collection
|
|
return reject_payload! if non_matching_uri_hosts?(@account.uri, object_uri)
|
|
|
|
ActivityPub::ProcessFeaturedCollectionService.new.call(@account, @object)
|
|
end
|
|
|
|
def object_too_old?
|
|
@object['published'].present? && @object['published'].to_datetime < OBJECT_AGE_THRESHOLD.ago
|
|
rescue Date::Error
|
|
false
|
|
end
|
|
end
|