* bump packages * dynamic invoice options * make sure that invoice previews can be detected * support for mpdf associated files * do not include any future times in work contract calculation * re-add username column in Excel spreadsheet * deactivate internal rate editing * show if plugin update exists * shorten name to Kimai only, without Time-Tracking * remove check for existing id in work contract * fix metafield already defined in search * helper methods to unlock months * new translation * send event on unlock month
44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\API\Authentication;
|
|
|
|
use Symfony\Component\Security\Core\Exception\LogicException;
|
|
use Symfony\Component\Security\Core\User\PasswordUpgraderInterface;
|
|
use Symfony\Component\Security\Http\Authenticator\Passport\Badge\BadgeInterface;
|
|
|
|
final class ApiTokenUpgradeBadge implements BadgeInterface
|
|
{
|
|
public function __construct(private ?string $plaintextApiToken, private readonly PasswordUpgraderInterface $passwordUpgrader)
|
|
{
|
|
}
|
|
|
|
public function getAndErasePlaintextApiToken(): string
|
|
{
|
|
$password = $this->plaintextApiToken;
|
|
if (null === $password) {
|
|
throw new LogicException('The api token is erased as another listener already used this badge.');
|
|
}
|
|
|
|
$this->plaintextApiToken = null;
|
|
|
|
return $password;
|
|
}
|
|
|
|
public function getPasswordUpgrader(): PasswordUpgraderInterface
|
|
{
|
|
return $this->passwordUpgrader;
|
|
}
|
|
|
|
public function isResolved(): bool
|
|
{
|
|
return true;
|
|
}
|
|
}
|