Add handling of Linked Data Signatures in payloads (#4687)
* Add handling of Linked Data Signatures in payloads * Add a way to sign JSON, fix canonicalization of signature options * Fix signatureValue encoding, send out signed JSON when distributing * Add missing security context
This commit is contained in:
parent
1cebfed23e
commit
00840f4f2e
25 changed files with 369 additions and 30 deletions
|
@ -9,6 +9,8 @@ class ActivityPub::ProcessCollectionService < BaseService
|
|||
|
||||
return if @account.suspended? || !supported_context?
|
||||
|
||||
verify_account! if different_actor?
|
||||
|
||||
case @json['type']
|
||||
when 'Collection', 'CollectionPage'
|
||||
process_items @json['items']
|
||||
|
@ -23,6 +25,10 @@ class ActivityPub::ProcessCollectionService < BaseService
|
|||
|
||||
private
|
||||
|
||||
def different_actor?
|
||||
@json['actor'].present? && value_or_id(@json['actor']) != @account.uri && @json['signature'].present?
|
||||
end
|
||||
|
||||
def process_items(items)
|
||||
items.reverse_each.map { |item| process_item(item) }.compact
|
||||
end
|
||||
|
@ -35,4 +41,9 @@ class ActivityPub::ProcessCollectionService < BaseService
|
|||
activity = ActivityPub::Activity.factory(item, @account)
|
||||
activity&.perform
|
||||
end
|
||||
|
||||
def verify_account!
|
||||
account = ActivityPub::LinkedDataSignature.new(@json).verify_account!
|
||||
@account = account unless account.nil?
|
||||
end
|
||||
end
|
||||
|
|
|
@ -24,11 +24,11 @@ class AuthorizeFollowService < BaseService
|
|||
end
|
||||
|
||||
def build_json(follow_request)
|
||||
ActiveModelSerializers::SerializableResource.new(
|
||||
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
||||
follow_request,
|
||||
serializer: ActivityPub::AcceptFollowSerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json).sign!(follow_request.target_account))
|
||||
end
|
||||
|
||||
def build_xml(follow_request)
|
||||
|
|
|
@ -138,10 +138,14 @@ class BatchedRemoveStatusService < BaseService
|
|||
def build_json(status)
|
||||
return @activity_json[status.id] if @activity_json.key?(status.id)
|
||||
|
||||
@activity_json[status.id] = ActiveModelSerializers::SerializableResource.new(
|
||||
@activity_json[status.id] = sign_json(status, ActiveModelSerializers::SerializableResource.new(
|
||||
status,
|
||||
serializer: ActivityPub::DeleteSerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json)
|
||||
end
|
||||
|
||||
def sign_json(status, json)
|
||||
Oj.dump(ActivityPub::LinkedDataSignature.new(json).sign!(status.account))
|
||||
end
|
||||
end
|
||||
|
|
|
@ -27,11 +27,11 @@ class BlockService < BaseService
|
|||
end
|
||||
|
||||
def build_json(block)
|
||||
ActiveModelSerializers::SerializableResource.new(
|
||||
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
||||
block,
|
||||
serializer: ActivityPub::BlockSerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json).sign!(block.account))
|
||||
end
|
||||
|
||||
def build_xml(block)
|
||||
|
|
|
@ -34,11 +34,11 @@ class FavouriteService < BaseService
|
|||
end
|
||||
|
||||
def build_json(favourite)
|
||||
ActiveModelSerializers::SerializableResource.new(
|
||||
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
||||
favourite,
|
||||
serializer: ActivityPub::LikeSerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json).sign!(favourite.account))
|
||||
end
|
||||
|
||||
def build_xml(favourite)
|
||||
|
|
|
@ -67,10 +67,10 @@ class FollowService < BaseService
|
|||
end
|
||||
|
||||
def build_json(follow_request)
|
||||
ActiveModelSerializers::SerializableResource.new(
|
||||
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
||||
follow_request,
|
||||
serializer: ActivityPub::FollowSerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json).sign!(follow_request.account))
|
||||
end
|
||||
end
|
||||
|
|
|
@ -47,11 +47,11 @@ class ProcessMentionsService < BaseService
|
|||
end
|
||||
|
||||
def build_json(status)
|
||||
ActiveModelSerializers::SerializableResource.new(
|
||||
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
||||
status,
|
||||
serializer: ActivityPub::ActivitySerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json).sign!(status.account))
|
||||
end
|
||||
|
||||
def follow_remote_account_service
|
||||
|
|
|
@ -42,10 +42,10 @@ class ReblogService < BaseService
|
|||
end
|
||||
|
||||
def build_json(reblog)
|
||||
ActiveModelSerializers::SerializableResource.new(
|
||||
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
||||
reblog,
|
||||
serializer: ActivityPub::ActivitySerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json).sign!(reblog.account))
|
||||
end
|
||||
end
|
||||
|
|
|
@ -19,11 +19,11 @@ class RejectFollowService < BaseService
|
|||
end
|
||||
|
||||
def build_json(follow_request)
|
||||
ActiveModelSerializers::SerializableResource.new(
|
||||
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
||||
follow_request,
|
||||
serializer: ActivityPub::RejectFollowSerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json).sign!(follow_request.target_account))
|
||||
end
|
||||
|
||||
def build_xml(follow_request)
|
||||
|
|
|
@ -56,7 +56,7 @@ class RemoveStatusService < BaseService
|
|||
|
||||
# ActivityPub
|
||||
ActivityPub::DeliveryWorker.push_bulk(target_accounts.select(&:activitypub?).uniq(&:inbox_url)) do |inbox_url|
|
||||
[activity_json, @account.id, inbox_url]
|
||||
[signed_activity_json, @account.id, inbox_url]
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -66,7 +66,7 @@ class RemoveStatusService < BaseService
|
|||
|
||||
# ActivityPub
|
||||
ActivityPub::DeliveryWorker.push_bulk(@account.followers.inboxes) do |inbox_url|
|
||||
[activity_json, @account.id, inbox_url]
|
||||
[signed_activity_json, @account.id, inbox_url]
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -74,12 +74,16 @@ class RemoveStatusService < BaseService
|
|||
@salmon_xml ||= stream_entry_to_xml(@stream_entry)
|
||||
end
|
||||
|
||||
def signed_activity_json
|
||||
@signed_activity_json ||= Oj.dump(ActivityPub::LinkedDataSignature.new(activity_json).sign!(@account))
|
||||
end
|
||||
|
||||
def activity_json
|
||||
@activity_json ||= ActiveModelSerializers::SerializableResource.new(
|
||||
@status,
|
||||
serializer: ActivityPub::DeleteSerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json
|
||||
end
|
||||
|
||||
def remove_reblogs
|
||||
|
|
|
@ -20,11 +20,11 @@ class UnblockService < BaseService
|
|||
end
|
||||
|
||||
def build_json(unblock)
|
||||
ActiveModelSerializers::SerializableResource.new(
|
||||
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
||||
unblock,
|
||||
serializer: ActivityPub::UndoBlockSerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json).sign!(unblock.account))
|
||||
end
|
||||
|
||||
def build_xml(block)
|
||||
|
|
|
@ -21,11 +21,11 @@ class UnfavouriteService < BaseService
|
|||
end
|
||||
|
||||
def build_json(favourite)
|
||||
ActiveModelSerializers::SerializableResource.new(
|
||||
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
||||
favourite,
|
||||
serializer: ActivityPub::UndoLikeSerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json).sign!(favourite.account))
|
||||
end
|
||||
|
||||
def build_xml(favourite)
|
||||
|
|
|
@ -23,11 +23,11 @@ class UnfollowService < BaseService
|
|||
end
|
||||
|
||||
def build_json(follow)
|
||||
ActiveModelSerializers::SerializableResource.new(
|
||||
Oj.dump(ActivityPub::LinkedDataSignature.new(ActiveModelSerializers::SerializableResource.new(
|
||||
follow,
|
||||
serializer: ActivityPub::UndoFollowSerializer,
|
||||
adapter: ActivityPub::Adapter
|
||||
).to_json
|
||||
).as_json).sign!(follow.account))
|
||||
end
|
||||
|
||||
def build_xml(follow)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue