mirror of
https://github.com/nextcloud/server.git
synced 2026-02-25 02:44:57 -05:00
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\Settings\Settings\Personal\Security;
|
|
|
|
use OC\Authentication\WebAuthn\Db\PublicKeyCredentialMapper;
|
|
use OC\Authentication\WebAuthn\Manager;
|
|
use OCA\Settings\AppInfo\Application;
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\IInitialStateService;
|
|
use OCP\Settings\ISettings;
|
|
|
|
class WebAuthn implements ISettings {
|
|
|
|
public function __construct(
|
|
private PublicKeyCredentialMapper $mapper,
|
|
private string $userId,
|
|
private IInitialStateService $initialStateService,
|
|
private Manager $manager,
|
|
) {
|
|
}
|
|
|
|
public function getForm() {
|
|
$this->initialStateService->provideInitialState(
|
|
Application::APP_ID,
|
|
'webauthn-devices',
|
|
$this->mapper->findAllForUid($this->userId)
|
|
);
|
|
|
|
return new TemplateResponse('settings', 'settings/personal/security/webauthn');
|
|
}
|
|
|
|
public function getSection(): ?string {
|
|
if (!$this->manager->isWebAuthnAvailable()) {
|
|
return null;
|
|
}
|
|
|
|
return 'security';
|
|
}
|
|
|
|
public function getPriority(): int {
|
|
return 20;
|
|
}
|
|
}
|