aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/lib/Settings/Personal/Security/Password.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings/lib/Settings/Personal/Security/Password.php')
-rw-r--r--apps/settings/lib/Settings/Personal/Security/Password.php42
1 files changed, 42 insertions, 0 deletions
diff --git a/apps/settings/lib/Settings/Personal/Security/Password.php b/apps/settings/lib/Settings/Personal/Security/Password.php
new file mode 100644
index 00000000000..8184dae9560
--- /dev/null
+++ b/apps/settings/lib/Settings/Personal/Security/Password.php
@@ -0,0 +1,42 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OCA\Settings\Settings\Personal\Security;
+
+use OCP\AppFramework\Http\TemplateResponse;
+use OCP\IUserManager;
+use OCP\Settings\ISettings;
+
+class Password implements ISettings {
+
+ public function __construct(
+ private IUserManager $userManager,
+ private ?string $userId,
+ ) {
+ }
+
+ public function getForm(): TemplateResponse {
+ $user = $this->userManager->get($this->userId);
+ $passwordChangeSupported = false;
+ if ($user !== null) {
+ $passwordChangeSupported = $user->canChangePassword();
+ }
+
+ return new TemplateResponse('settings', 'settings/personal/security/password', [
+ 'passwordChangeSupported' => $passwordChangeSupported,
+ ]);
+ }
+
+ public function getSection(): string {
+ return 'security';
+ }
+
+ public function getPriority(): int {
+ return 10;
+ }
+}