50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\State;
|
|
|
|
use ApiPlatform\Metadata\Operation;
|
|
use ApiPlatform\State\ProcessorInterface;
|
|
use App\ApiResource\BookStackSettings;
|
|
use App\Entity\BookStackConfiguration;
|
|
use App\Repository\BookStackConfigurationRepository;
|
|
use App\Service\TokenEncryptor;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
|
|
final readonly class BookStackSettingsProcessor implements ProcessorInterface
|
|
{
|
|
public function __construct(
|
|
private EntityManagerInterface $em,
|
|
private BookStackConfigurationRepository $configRepository,
|
|
private TokenEncryptor $tokenEncryptor,
|
|
) {}
|
|
|
|
public function process(mixed $data, Operation $operation, array $uriVariables = [], array $context = []): BookStackSettings
|
|
{
|
|
assert($data instanceof BookStackSettings);
|
|
|
|
$config = $this->configRepository->findSingleton();
|
|
if (null === $config) {
|
|
$config = new BookStackConfiguration();
|
|
}
|
|
|
|
$config->setUrl($data->url);
|
|
|
|
if (null !== $data->tokenId && '' !== $data->tokenId
|
|
&& null !== $data->tokenSecret && '' !== $data->tokenSecret) {
|
|
$config->setEncryptedTokenId($this->tokenEncryptor->encrypt($data->tokenId));
|
|
$config->setEncryptedTokenSecret($this->tokenEncryptor->encrypt($data->tokenSecret));
|
|
}
|
|
|
|
$this->em->persist($config);
|
|
$this->em->flush();
|
|
|
|
$result = new BookStackSettings();
|
|
$result->url = $config->getUrl();
|
|
$result->hasToken = $config->hasToken();
|
|
|
|
return $result;
|
|
}
|
|
}
|