Laragear/WebAuthn

View on GitHub
src/Attestation/Validator/Pipes/AttestationIsForCreation.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Laragear\WebAuthn\Attestation\Validator\Pipes;

use Closure;
use Laragear\WebAuthn\Attestation\Validator\AttestationValidation;
use Laragear\WebAuthn\Exceptions\AttestationException;

/**
 * 7. Verify that the value of C.type is webauthn.create.
 *
 * @see https://www.w3.org/TR/webauthn-2/#sctn-registering-a-new-credential
 *
 * @internal
 */
class AttestationIsForCreation
{
    /**
     * Handle the incoming Attestation Validation.
     *
     * @param  \Laragear\WebAuthn\Attestation\Validator\AttestationValidation  $validation
     * @param  \Closure  $next
     * @return mixed
     * @throws \Laragear\WebAuthn\Exceptions\AttestationException
     */
    public function handle(AttestationValidation $validation, Closure $next): mixed
    {
        if ($validation->clientDataJson->type !== 'webauthn.create') {
            throw AttestationException::make('Response is not for creating WebAuthn Credentials.');
        }

        return $next($validation);
    }
}