|
| 1 | +<?php |
| 2 | +declare(strict_types=1); |
| 3 | +/** |
| 4 | + * @copyright Copyright (c) 2020, Roeland Jago Douma <roeland@famdouma.nl> |
| 5 | + * |
| 6 | + * @author Roeland Jago Douma <roeland@famdouma.nl> |
| 7 | + * |
| 8 | + * @license GNU AGPL version 3 or any later version |
| 9 | + * |
| 10 | + * This program is free software: you can redistribute it and/or modify |
| 11 | + * it under the terms of the GNU Affero General Public License as |
| 12 | + * published by the Free Software Foundation, either version 3 of the |
| 13 | + * License, or (at your option) any later version. |
| 14 | + * |
| 15 | + * This program is distributed in the hope that it will be useful, |
| 16 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | + * GNU Affero General Public License for more details. |
| 19 | + * |
| 20 | + * You should have received a copy of the GNU Affero General Public License |
| 21 | + * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 22 | + * |
| 23 | + */ |
| 24 | + |
| 25 | +namespace OCA\Password_Policy; |
| 26 | + |
| 27 | +use OCP\IConfig; |
| 28 | +use OCP\IUser; |
| 29 | +use OCP\IUserManager; |
| 30 | + |
| 31 | +class FailedLoginCompliance { |
| 32 | + |
| 33 | + /** @var IConfig */ |
| 34 | + private $config; |
| 35 | + |
| 36 | + /** @var IUserManager */ |
| 37 | + private $userManager; |
| 38 | + |
| 39 | + /** @var PasswordPolicyConfig */ |
| 40 | + private $passwordPolicyConfig; |
| 41 | + |
| 42 | + public function __construct( |
| 43 | + IConfig $config, |
| 44 | + IUserManager $userManager, |
| 45 | + PasswordPolicyConfig $passwordPolicyConfig) { |
| 46 | + $this->config = $config; |
| 47 | + $this->userManager = $userManager; |
| 48 | + $this->passwordPolicyConfig = $passwordPolicyConfig; |
| 49 | + } |
| 50 | + |
| 51 | + public function onFailedLogin(string $uid) { |
| 52 | + $user = $this->userManager->get($uid); |
| 53 | + |
| 54 | + if (!($user instanceof IUser)) { |
| 55 | + return; |
| 56 | + } |
| 57 | + |
| 58 | + if ($user->isEnabled() === false) { |
| 59 | + // Just ignore this user then |
| 60 | + return; |
| 61 | + } |
| 62 | + |
| 63 | + $allowedAttempts = $this->passwordPolicyConfig->getMaximumLoginAttempts(); |
| 64 | + |
| 65 | + $attempts = $this->getAttempts($uid); |
| 66 | + $attempts++; |
| 67 | + |
| 68 | + if ($attempts >= $allowedAttempts) { |
| 69 | + $this->setAttempts($uid, 0); |
| 70 | + $user->setEnabled(false); |
| 71 | + return; |
| 72 | + } |
| 73 | + |
| 74 | + $this->setAttempts($uid, $attempts); |
| 75 | + } |
| 76 | + |
| 77 | + public function onSucessfullLogin(IUser $user) { |
| 78 | + $this->setAttempts($user->getUID(), 0); |
| 79 | + } |
| 80 | + |
| 81 | + private function getAttempts(string $uid): int { |
| 82 | + return (int)$this->config->getUserValue($uid, 'password_policy', 'failedLoginAttempts', 0); |
| 83 | + } |
| 84 | + |
| 85 | + private function setAttempts(string $uid, int $attempts): void { |
| 86 | + return $this->config->setUserValue($uid, 'password_policy', 'failedLoginAttempts', $attempts); |
| 87 | + } |
| 88 | +} |
0 commit comments