refonte
This commit is contained in:
26
src/State/UserHashPasswordProcessor.php
Normal file
26
src/State/UserHashPasswordProcessor.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\State;
|
||||
|
||||
use ApiPlatform\Metadata\Operation;
|
||||
use ApiPlatform\State\ProcessorInterface;
|
||||
use App\Entity\User;
|
||||
use Symfony\Component\DependencyInjection\Attribute\AsDecorator;
|
||||
use Symfony\Component\PasswordHasher\Hasher\UserPasswordHasherInterface;
|
||||
|
||||
#[AsDecorator('api_platform.doctrine.orm.state.persist_processor')]
|
||||
readonly class UserHashPasswordProcessor implements ProcessorInterface
|
||||
{
|
||||
public function __construct(private ProcessorInterface $decoratedProcessor, private UserPasswordHasherInterface $passwordHasher)
|
||||
{
|
||||
}
|
||||
public function process(mixed $data, Operation $operation, array $uriVariables = [], array $context = []): mixed
|
||||
{
|
||||
if($data instanceof User && $data->getPlainPassword() !== null) {
|
||||
$data->setPassword($this->passwordHasher->hashPassword($data, $data->getPlainPassword()));
|
||||
}
|
||||
|
||||
$this->decoratedProcessor->process($data, $operation, $uriVariables, $context);
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user