%PDF- %PDF-
Direktori : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/user/authclient/ |
Current File : /home/vacivi36/intranet.vacivitta.com.br/protected/humhub/modules/user/authclient/Password.php |
<?php /** * @link https://www.humhub.org/ * @copyright Copyright (c) 2016 HumHub GmbH & Co. KG * @license https://www.humhub.com/licences */ namespace humhub\modules\user\authclient; use humhub\modules\user\models\User; /** * Standard password authentication client * * @since 1.1 */ class Password extends BaseFormAuth implements interfaces\PrimaryClient { /** * @inheritdoc */ public function getId() { return 'local'; } /** * @inheritdoc */ protected function defaultName() { return 'password'; } /** * @inheritdoc */ protected function defaultTitle() { return 'Password'; } /** * @inheritdoc */ public function auth() { $user = $this->getUserByLogin(); if ($user !== null && $user->currentPassword !== null && $user->currentPassword->validatePassword($this->login->password)) { $this->setUserAttributes(['id' => $user->id]); return true; } else { $this->countFailedLoginAttempts(); } return false; } /** * @inheritdoc */ public function getUser() { $attributes = $this->getUserAttributes(); return User::findOne(['id' => $attributes['id'], 'auth_mode' => $this->getId()]); } }