|
|
@ -71,7 +71,7 @@ class ActivityPub::ProcessAccountService < BaseService |
|
|
|
@account.note = @json['summary'] || '' |
|
|
|
@account.note = @json['summary'] || '' |
|
|
|
@account.locked = @json['manuallyApprovesFollowers'] || false |
|
|
|
@account.locked = @json['manuallyApprovesFollowers'] || false |
|
|
|
@account.fields = property_values || {} |
|
|
|
@account.fields = property_values || {} |
|
|
|
@account.actor_type = @json['type'] |
|
|
|
@account.actor_type = actor_type |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
def set_fetchable_attributes! |
|
|
|
def set_fetchable_attributes! |
|
|
@ -96,6 +96,14 @@ class ActivityPub::ProcessAccountService < BaseService |
|
|
|
ActivityPub::SynchronizeFeaturedCollectionWorker.perform_async(@account.id) |
|
|
|
ActivityPub::SynchronizeFeaturedCollectionWorker.perform_async(@account.id) |
|
|
|
end |
|
|
|
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) |
|
|
|
def image_url(key) |
|
|
|
value = first_of_value(@json[key]) |
|
|
|
value = first_of_value(@json[key]) |
|
|
|
|
|
|
|
|
|
|
|