|
| 1 | +<?php |
| 2 | + |
| 3 | +declare(strict_types=1); |
| 4 | + |
| 5 | +namespace Undabot\SymfonyJsonApi\Service\Pagination; |
| 6 | + |
| 7 | +use Symfony\Component\HttpFoundation\Request; |
| 8 | +use Undabot\JsonApi\Definition\Model\Link\LinkCollectionInterface; |
| 9 | +use Undabot\JsonApi\Definition\Model\Link\LinkNamesEnum; |
| 10 | +use Undabot\JsonApi\Definition\Model\Request\Pagination\PaginationInterface; |
| 11 | +use Undabot\JsonApi\Implementation\Factory\PaginationFactory; |
| 12 | +use Undabot\JsonApi\Implementation\Model\Link\Link; |
| 13 | +use Undabot\JsonApi\Implementation\Model\Link\LinkCollection; |
| 14 | +use Undabot\JsonApi\Implementation\Model\Link\LinkUrl; |
| 15 | +use Undabot\JsonApi\Implementation\Model\Request\Pagination\OffsetBasedPagination; |
| 16 | +use Undabot\SymfonyJsonApi\Http\Model\Request\GetResourceCollectionRequest; |
| 17 | +use Undabot\SymfonyJsonApi\Http\Model\Response\ResourceCollectionResponse; |
| 18 | +use Undabot\SymfonyJsonApi\Service\Pagination\Creator\OffsetBasedPaginationLinkParametersFactory; |
| 19 | +use Undabot\SymfonyJsonApi\Service\Pagination\Creator\PageBasedPaginationLinkParametersFactory; |
| 20 | + |
| 21 | +final class PaginationLinkBuilder |
| 22 | +{ |
| 23 | + public function createLinks(Request $request, ResourceCollectionResponse $response): ?LinkCollectionInterface |
| 24 | + { |
| 25 | + $pagination = $this->buildPaginationIfAvailable($request); |
| 26 | + $links = $response->getLinks(); |
| 27 | + if (null === $pagination) { |
| 28 | + return $links; |
| 29 | + } |
| 30 | + $queryParams = $request->query->all(); |
| 31 | + $total = null; |
| 32 | + if (null !== $response->getMeta()) { |
| 33 | + $total = $response->getMeta()->getData()['total'] ?? null; |
| 34 | + } |
| 35 | + $responsePaginationLink = (true === ($pagination instanceof OffsetBasedPagination)) |
| 36 | + ? (new OffsetBasedPaginationLinkParametersFactory())->createLinks( |
| 37 | + $pagination, |
| 38 | + $total, |
| 39 | + ) |
| 40 | + : (new PageBasedPaginationLinkParametersFactory())->createLinks( |
| 41 | + $pagination, |
| 42 | + $total, |
| 43 | + ); |
| 44 | + $queryParamsFirst = $queryParams; |
| 45 | + $queryParamsFirst[GetResourceCollectionRequest::PAGINATION_KEY][$responsePaginationLink->paginationPageKey] |
| 46 | + = $responsePaginationLink->firstPageKey; |
| 47 | + $paginationLinks = [$this->buildLink(LinkNamesEnum::LINK_NAME_PAGINATION_FIRST, $request, $queryParamsFirst)]; |
| 48 | + if (null !== $responsePaginationLink->lastPageKey) { |
| 49 | + $queryParamsLast = $queryParams; |
| 50 | + $queryParamsLast[GetResourceCollectionRequest::PAGINATION_KEY][$responsePaginationLink->paginationPageKey] |
| 51 | + = $responsePaginationLink->lastPageKey; |
| 52 | + $paginationLinks[] = $this->buildLink(LinkNamesEnum::LINK_NAME_PAGINATION_LAST, $request, $queryParamsLast); |
| 53 | + } |
| 54 | + if (0 !== $pagination->getOffset()) { |
| 55 | + $queryParamsPrev = $queryParams; |
| 56 | + $queryParamsPrev[GetResourceCollectionRequest::PAGINATION_KEY][$responsePaginationLink->paginationPageKey] += $responsePaginationLink->previousSet; |
| 57 | + $paginationLinks[] = $this->buildLink(LinkNamesEnum::LINK_NAME_PAGINATION_PREV, $request, $queryParamsPrev); |
| 58 | + } |
| 59 | + if (null !== $total && ($pagination->getOffset() + $pagination->getSize()) < $total) { |
| 60 | + $queryParamsNext = $queryParams; |
| 61 | + $queryParamsNext[GetResourceCollectionRequest::PAGINATION_KEY][$responsePaginationLink->paginationPageKey] += $responsePaginationLink->nextSet; |
| 62 | + $paginationLinks[] = $this->buildLink(LinkNamesEnum::LINK_NAME_PAGINATION_NEXT, $request, $queryParamsNext); |
| 63 | + } |
| 64 | + |
| 65 | + return new LinkCollection(array_merge($paginationLinks, null === $links ? [] : $links->getLinks())); |
| 66 | + } |
| 67 | + |
| 68 | + /** @param array<string,string> $queryParams */ |
| 69 | + private function buildLink(string $linkName, Request $request, array $queryParams): Link |
| 70 | + { |
| 71 | + return new Link( |
| 72 | + $linkName, |
| 73 | + new LinkUrl($request->getSchemeAndHttpHost() . $request->getPathInfo() . '?' |
| 74 | + . urldecode(http_build_query($queryParams))), |
| 75 | + ); |
| 76 | + } |
| 77 | + |
| 78 | + private function buildPaginationIfAvailable(Request $request): ?PaginationInterface |
| 79 | + { |
| 80 | + if (false === $request->query->has(GetResourceCollectionRequest::PAGINATION_KEY)) { |
| 81 | + return null; |
| 82 | + } |
| 83 | + |
| 84 | + return (new PaginationFactory()) |
| 85 | + ->fromArray($request->query->all()[GetResourceCollectionRequest::PAGINATION_KEY] ?? null); |
| 86 | + } |
| 87 | +} |
0 commit comments