logger->debug('Starting WebAuthn registration'); $credentialOptions = $this->manager->startRegistration($this->userSession->getUser(), $this->request->getServerHost()); // Set this in the session since we need it on finish $this->session->set(self::WEBAUTHN_REGISTRATION, $credentialOptions); return new JSONResponse($credentialOptions); } /** * @NoSubAdminRequired */ #[NoAdminRequired] #[PasswordConfirmationRequired] #[UseSession] public function finishRegistration(string $name, string $data): JSONResponse { $this->logger->debug('Finishing WebAuthn registration'); if (!$this->session->exists(self::WEBAUTHN_REGISTRATION)) { $this->logger->debug('Trying to finish WebAuthn registration without session data'); return new JSONResponse([], Http::STATUS_BAD_REQUEST); } // Obtain the publicKeyCredentialOptions from when we started the registration $publicKeyCredentialCreationOptions = PublicKeyCredentialCreationOptions::createFromArray($this->session->get(self::WEBAUTHN_REGISTRATION)); $this->session->remove(self::WEBAUTHN_REGISTRATION); return new JSONResponse($this->manager->finishRegister($publicKeyCredentialCreationOptions, $name, $data)); } /** * @NoSubAdminRequired */ #[NoAdminRequired] #[PasswordConfirmationRequired] public function deleteRegistration(int $id): JSONResponse { $this->logger->debug('Finishing WebAuthn registration'); $this->manager->deleteRegistration($this->userSession->getUser(), $id); return new JSONResponse([]); } }