47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Password_Policy\Settings;
|
|
|
|
use OCA\Password_Policy\PasswordPolicyConfig;
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\AppFramework\Services\IInitialState;
|
|
use OCP\Settings\ISettings;
|
|
use OCP\Util;
|
|
|
|
class Settings implements ISettings {
|
|
|
|
public function __construct(
|
|
private string $appName,
|
|
private PasswordPolicyConfig $config,
|
|
private IInitialState $initialStateService,
|
|
) {
|
|
}
|
|
|
|
public function getForm(): TemplateResponse {
|
|
Util::addStyle($this->appName, 'password_policy-settings');
|
|
Util::addScript($this->appName, 'password_policy-settings');
|
|
|
|
$this->initialStateService->provideInitialState('loginConfig', [
|
|
'historySize' => $this->config->getHistorySize(),
|
|
'expiration' => $this->config->getExpiryInDays(),
|
|
'maximumLoginAttempts' => $this->config->getMaximumLoginAttempts(),
|
|
]);
|
|
|
|
return new TemplateResponse($this->appName, 'settings');
|
|
}
|
|
|
|
public function getSection(): string {
|
|
return 'security';
|
|
}
|
|
|
|
public function getPriority(): int {
|
|
return 50;
|
|
}
|
|
}
|