| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-felogin/Classes/Event/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3/cms-felogin/Classes/Event/PasswordChangeEvent.php |
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\FrontendLogin\Event;
use Psr\EventDispatcher\StoppableEventInterface;
/**
* Informal event that contains information about the password which was set, and is about to be stored in the database.
*/
final class PasswordChangeEvent implements StoppableEventInterface
{
private bool $invalid = false;
private ?string $errorMessage = null;
public function __construct(
private readonly array $user,
private string $passwordHash,
private readonly string $rawPassword
) {}
public function getUser(): array
{
return $this->user;
}
public function getHashedPassword(): string
{
return $this->passwordHash;
}
/**
* @deprecated will be removed in TYPO3 13
*/
public function setHashedPassword(string $passwordHash): void
{
trigger_error(
__METHOD__ . ' will be removed in TYPO3 v13.0.',
E_USER_DEPRECATED
);
$this->passwordHash = $passwordHash;
}
public function getRawPassword(): string
{
return $this->rawPassword;
}
/**
* @deprecated will be removed in TYPO3 13
*/
public function setAsInvalid(string $message): void
{
trigger_error(
__METHOD__ . ' will be removed in TYPO3 v13.0. Use a password policy validator to validate the user password.',
E_USER_DEPRECATED
);
$this->invalid = true;
$this->errorMessage = $message;
}
/**
* @deprecated will be removed in TYPO3 13
*/
public function getErrorMessage(): ?string
{
trigger_error(
__METHOD__ . ' will be removed in TYPO3 v13.0.',
E_USER_DEPRECATED
);
return $this->errorMessage;
}
/**
* @deprecated will be removed in TYPO3 13
*/
public function isPropagationStopped(): bool
{
trigger_error(
__METHOD__ . ' will be removed in TYPO3 v13.0.',
E_USER_DEPRECATED
);
return $this->invalid;
}
}