2019-06-05 07:11:18 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Payloadable
|
2023-09-01 23:41:10 +10:00
|
|
|
include AuthorizedFetchHelper
|
|
|
|
|
2022-02-12 00:52:45 +11:00
|
|
|
# @param [ActiveModelSerializers::Model] record
|
|
|
|
# @param [ActiveModelSerializers::Serializer] serializer
|
|
|
|
# @param [Hash] options
|
|
|
|
# @option options [Account] :signer
|
|
|
|
# @option options [String] :sign_with
|
|
|
|
# @option options [Boolean] :always_sign
|
|
|
|
# @return [Hash]
|
2019-06-05 07:11:18 +10:00
|
|
|
def serialize_payload(record, serializer, options = {})
|
2022-02-12 00:52:45 +11:00
|
|
|
signer = options.delete(:signer)
|
|
|
|
sign_with = options.delete(:sign_with)
|
|
|
|
always_sign = options.delete(:always_sign)
|
|
|
|
payload = ActiveModelSerializers::SerializableResource.new(record, options.merge(serializer: serializer, adapter: ActivityPub::Adapter)).as_json
|
|
|
|
object = record.respond_to?(:virtual_object) ? record.virtual_object : record
|
2019-06-05 07:11:18 +10:00
|
|
|
|
2022-02-12 00:52:45 +11:00
|
|
|
if (object.respond_to?(:sign?) && object.sign?) && signer && (always_sign || signing_enabled?)
|
2019-06-05 07:11:18 +10:00
|
|
|
ActivityPub::LinkedDataSignature.new(payload).sign!(signer, sign_with: sign_with)
|
|
|
|
else
|
|
|
|
payload
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def signing_enabled?
|
2023-09-01 23:41:10 +10:00
|
|
|
!authorized_fetch_mode?
|
2019-06-05 07:11:18 +10:00
|
|
|
end
|
|
|
|
end
|