63 lines
1.9 KiB
PHP
63 lines
1.9 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\State;
|
|
|
|
use ApiPlatform\Metadata\Operation;
|
|
use ApiPlatform\State\ProviderInterface;
|
|
use App\ApiResource\BookStackSearchResult;
|
|
use App\Entity\Task;
|
|
use App\Exception\BookStackApiException;
|
|
use App\Service\BookStackApiService;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use Symfony\Component\HttpFoundation\RequestStack;
|
|
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
|
|
|
|
final readonly class BookStackSearchResultProvider implements ProviderInterface
|
|
{
|
|
public function __construct(
|
|
private BookStackApiService $bookStackApiService,
|
|
private EntityManagerInterface $em,
|
|
private RequestStack $requestStack,
|
|
) {}
|
|
|
|
public function provide(Operation $operation, array $uriVariables = [], array $context = []): array
|
|
{
|
|
$taskId = $uriVariables['taskId'] ?? 0;
|
|
$task = $this->em->getRepository(Task::class)->find($taskId);
|
|
|
|
if (null === $task || null === $task->getProject()) {
|
|
return [];
|
|
}
|
|
|
|
$shelfId = $task->getProject()->getBookstackShelfId();
|
|
if (null === $shelfId) {
|
|
return [];
|
|
}
|
|
|
|
$request = $this->requestStack->getCurrentRequest();
|
|
$query = $request?->query->get('q', '') ?? '';
|
|
|
|
if ('' === trim($query)) {
|
|
return [];
|
|
}
|
|
|
|
try {
|
|
$results = $this->bookStackApiService->searchInShelf($shelfId, $query);
|
|
} catch (BookStackApiException $e) {
|
|
throw new BadRequestHttpException($e->getMessage(), $e);
|
|
}
|
|
|
|
return array_map(static function (array $item): BookStackSearchResult {
|
|
$dto = new BookStackSearchResult();
|
|
$dto->id = $item['id'];
|
|
$dto->type = $item['type'];
|
|
$dto->name = $item['name'];
|
|
$dto->url = $item['url'];
|
|
|
|
return $dto;
|
|
}, $results);
|
|
}
|
|
}
|