mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-05 06:43:12 +08:00
82 lines
2.7 KiB
PHP
82 lines
2.7 KiB
PHP
<?php
|
|
namespace Shlinkio\Shlink\Rest\Action;
|
|
|
|
use Acelaya\ZsmAnnotatedServices\Annotation\Inject;
|
|
use Interop\Http\ServerMiddleware\DelegateInterface;
|
|
use Psr\Http\Message\ResponseInterface as Response;
|
|
use Psr\Http\Message\ServerRequestInterface as Request;
|
|
use Psr\Log\LoggerInterface;
|
|
use Shlinkio\Shlink\Common\Paginator\Util\PaginatorUtilsTrait;
|
|
use Shlinkio\Shlink\Core\Service\ShortUrlService;
|
|
use Shlinkio\Shlink\Core\Service\ShortUrlServiceInterface;
|
|
use Shlinkio\Shlink\Rest\Util\RestUtils;
|
|
use Zend\Diactoros\Response\JsonResponse;
|
|
use Zend\I18n\Translator\TranslatorInterface;
|
|
|
|
class ListShortcodesAction extends AbstractRestAction
|
|
{
|
|
use PaginatorUtilsTrait;
|
|
|
|
/**
|
|
* @var ShortUrlServiceInterface
|
|
*/
|
|
private $shortUrlService;
|
|
/**
|
|
* @var TranslatorInterface
|
|
*/
|
|
private $translator;
|
|
|
|
/**
|
|
* ListShortcodesAction constructor.
|
|
* @param ShortUrlServiceInterface|ShortUrlService $shortUrlService
|
|
* @param TranslatorInterface $translator
|
|
* @param LoggerInterface $logger
|
|
*
|
|
* @Inject({ShortUrlService::class, "translator", "Logger_Shlink"})
|
|
*/
|
|
public function __construct(
|
|
ShortUrlServiceInterface $shortUrlService,
|
|
TranslatorInterface $translator,
|
|
LoggerInterface $logger = null
|
|
) {
|
|
parent::__construct($logger);
|
|
$this->shortUrlService = $shortUrlService;
|
|
$this->translator = $translator;
|
|
}
|
|
|
|
/**
|
|
* @param Request $request
|
|
* @param DelegateInterface $delegate
|
|
* @return null|Response
|
|
* @throws \InvalidArgumentException
|
|
*/
|
|
public function process(Request $request, DelegateInterface $delegate)
|
|
{
|
|
try {
|
|
$params = $this->queryToListParams($request->getQueryParams());
|
|
$shortUrls = $this->shortUrlService->listShortUrls(...$params);
|
|
return new JsonResponse(['shortUrls' => $this->serializePaginator($shortUrls)]);
|
|
} catch (\Exception $e) {
|
|
$this->logger->error('Unexpected error while listing short URLs.' . PHP_EOL . $e);
|
|
return new JsonResponse([
|
|
'error' => RestUtils::UNKNOWN_ERROR,
|
|
'message' => $this->translator->translate('Unexpected error occurred'),
|
|
], self::STATUS_INTERNAL_SERVER_ERROR);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param array $query
|
|
* @return array
|
|
*/
|
|
public function queryToListParams(array $query)
|
|
{
|
|
return [
|
|
isset($query['page']) ? $query['page'] : 1,
|
|
isset($query['searchTerm']) ? $query['searchTerm'] : null,
|
|
isset($query['tags']) ? $query['tags'] : [],
|
|
isset($query['orderBy']) ? $query['orderBy'] : null,
|
|
];
|
|
}
|
|
}
|