2017-08-26 21:47:38 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::LinkedDataSignature
|
|
|
|
include JsonLdHelper
|
|
|
|
|
|
|
|
CONTEXT = 'https://w3id.org/identity/v1'
|
|
|
|
|
|
|
|
def initialize(json)
|
2017-08-27 21:35:01 +10:00
|
|
|
@json = json.with_indifferent_access
|
2017-08-26 21:47:38 +10:00
|
|
|
end
|
|
|
|
|
2022-09-22 06:45:57 +10:00
|
|
|
def verify_actor!
|
2017-08-26 21:47:38 +10:00
|
|
|
return unless @json['signature'].is_a?(Hash)
|
|
|
|
|
|
|
|
type = @json['signature']['type']
|
|
|
|
creator_uri = @json['signature']['creator']
|
|
|
|
signature = @json['signature']['signatureValue']
|
|
|
|
|
|
|
|
return unless type == 'RsaSignature2017'
|
|
|
|
|
2022-09-22 06:45:57 +10:00
|
|
|
creator = ActivityPub::TagManager.instance.uri_to_actor(creator_uri)
|
2017-10-04 10:13:48 +11:00
|
|
|
creator ||= ActivityPub::FetchRemoteKeyService.new.call(creator_uri, id: false)
|
2017-08-26 21:47:38 +10:00
|
|
|
|
|
|
|
return if creator.nil?
|
|
|
|
|
|
|
|
options_hash = hash(@json['signature'].without('type', 'id', 'signatureValue').merge('@context' => CONTEXT))
|
|
|
|
document_hash = hash(@json.without('signature'))
|
|
|
|
to_be_verified = options_hash + document_hash
|
|
|
|
|
2023-02-18 22:37:47 +11:00
|
|
|
creator if creator.keypair.public_key.verify(OpenSSL::Digest.new('SHA256'), Base64.decode64(signature), to_be_verified)
|
2017-08-26 21:47:38 +10:00
|
|
|
end
|
|
|
|
|
2018-08-27 04:21:03 +10:00
|
|
|
def sign!(creator, sign_with: nil)
|
2017-08-26 21:47:38 +10:00
|
|
|
options = {
|
2023-02-20 16:58:28 +11:00
|
|
|
'type' => 'RsaSignature2017',
|
2022-09-22 06:45:57 +10:00
|
|
|
'creator' => ActivityPub::TagManager.instance.key_uri_for(creator),
|
2017-08-26 21:47:38 +10:00
|
|
|
'created' => Time.now.utc.iso8601,
|
|
|
|
}
|
|
|
|
|
|
|
|
options_hash = hash(options.without('type', 'id', 'signatureValue').merge('@context' => CONTEXT))
|
|
|
|
document_hash = hash(@json.without('signature'))
|
|
|
|
to_be_signed = options_hash + document_hash
|
2018-08-27 04:21:03 +10:00
|
|
|
keypair = sign_with.present? ? OpenSSL::PKey::RSA.new(sign_with) : creator.keypair
|
2017-08-26 21:47:38 +10:00
|
|
|
|
2020-09-01 11:04:00 +10:00
|
|
|
signature = Base64.strict_encode64(keypair.sign(OpenSSL::Digest.new('SHA256'), to_be_signed))
|
2017-08-26 21:47:38 +10:00
|
|
|
|
2017-09-01 05:32:09 +10:00
|
|
|
@json.merge('signature' => options.merge('signatureValue' => signature))
|
2017-08-26 21:47:38 +10:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def hash(obj)
|
|
|
|
Digest::SHA256.hexdigest(canonicalize(obj))
|
|
|
|
end
|
|
|
|
end
|