68 lines
2.1 KiB
Ruby
68 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Webauthn
|
|
class SecurityKeyBaseValidationService
|
|
def initialize(current_user, params, challenge_params)
|
|
@current_user = current_user
|
|
@params = params
|
|
@challenge_params = challenge_params
|
|
end
|
|
|
|
def validate_webauthn_type(type_to_check)
|
|
return if client_data['type'] == type_to_check
|
|
raise(InvalidTypeError, I18n.t('webauthn.validation.invalid_type_error'))
|
|
end
|
|
|
|
def validate_challenge
|
|
return if challenge_match?
|
|
raise(ChallengeMismatchError, I18n.t('webauthn.validation.challenge_mismatch_error'))
|
|
end
|
|
|
|
def validate_origin
|
|
return if origin_match?
|
|
raise(InvalidOriginError, I18n.t('webauthn.validation.invalid_origin_error'))
|
|
end
|
|
|
|
def validate_rp_id_hash
|
|
return if rp_id_hash_match?
|
|
raise(InvalidRelyingPartyIdError, I18n.t('webauthn.validation.invalid_relying_party_id_error'))
|
|
end
|
|
|
|
def validate_user_verification
|
|
flags = auth_data[32].unpack("b*")[0].split('')
|
|
return if flags[0] == '1'
|
|
raise(UserVerificationError, I18n.t('webauthn.validation.user_verification_error'))
|
|
end
|
|
|
|
private
|
|
|
|
# https://w3c.github.io/webauthn/#sctn-registering-a-new-credential
|
|
# Let JSONtext be the result of running UTF-8 decode on the value of response.clientDataJSON.
|
|
def client_data_json
|
|
@client_data_json ||= Base64.decode64(@params[:clientData])
|
|
end
|
|
|
|
# Let C, the client data claimed as collected during the credential creation, be the result of running
|
|
# an implementation-specific JSON parser on JSONtext.
|
|
def client_data
|
|
@client_data ||= JSON.parse(client_data_json)
|
|
end
|
|
|
|
def challenge_match?
|
|
Base64.decode64(client_data['challenge']) == @challenge_params[:challenge]
|
|
end
|
|
|
|
def origin_match?
|
|
client_data['origin'] == @challenge_params[:origin]
|
|
end
|
|
|
|
def rp_id_hash_match?
|
|
auth_data[0..31] == OpenSSL::Digest::SHA256.digest(@challenge_params[:rp_id])
|
|
end
|
|
|
|
def client_data_hash
|
|
@client_data_hash ||= OpenSSL::Digest::SHA256.digest(client_data_json)
|
|
end
|
|
end
|
|
end
|