You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
593 B
19 lines
593 B
# frozen_string_literal: true |
|
|
|
module Payloadable |
|
def serialize_payload(record, serializer, options = {}) |
|
signer = options.delete(:signer) |
|
sign_with = options.delete(:sign_with) |
|
payload = ActiveModelSerializers::SerializableResource.new(record, options.merge(serializer: serializer, adapter: ActivityPub::Adapter)).as_json |
|
|
|
if (record.respond_to?(:sign?) && record.sign?) && signer && signing_enabled? |
|
ActivityPub::LinkedDataSignature.new(payload).sign!(signer, sign_with: sign_with) |
|
else |
|
payload |
|
end |
|
end |
|
|
|
def signing_enabled? |
|
true |
|
end |
|
end
|
|
|