Browse Source

Take the first recognized actor_type. (#7410)

pull/4/head
Surinna Curtis 5 years ago
committed by Eugen Rochko
parent
commit
01dfd6dbc8
2 changed files with 10 additions and 1 deletions
  1. +9
    -1
      app/services/activitypub/process_account_service.rb
  2. +1
    -0
      spec/services/resolve_account_service_spec.rb

+ 9
- 1
app/services/activitypub/process_account_service.rb View File

@ -71,7 +71,7 @@ class ActivityPub::ProcessAccountService < BaseService
@account.note = @json['summary'] || ''
@account.locked = @json['manuallyApprovesFollowers'] || false
@account.fields = property_values || {}
@account.actor_type = @json['type']
@account.actor_type = actor_type
end
def set_fetchable_attributes!
@ -96,6 +96,14 @@ class ActivityPub::ProcessAccountService < BaseService
ActivityPub::SynchronizeFeaturedCollectionWorker.perform_async(@account.id)
end
def actor_type
if @json['type'].is_a?(Array)
@json['type'].find { |type| ActivityPub::FetchRemoteAccountService::SUPPORTED_TYPES.include?(type) }
else
@json['type']
end
end
def image_url(key)
value = first_of_value(@json[key])

+ 1
- 0
spec/services/resolve_account_service_spec.rb View File

@ -116,6 +116,7 @@ RSpec.describe ResolveAccountService, type: :service do
expect(account.activitypub?).to eq true
expect(account.domain).to eq 'ap.example.com'
expect(account.inbox_url).to eq 'https://ap.example.com/users/foo/inbox'
expect(account.actor_type).to eq 'Person'
end
end

Loading…
Cancel
Save