mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
Add date range filter to list urls endpoint parameters
This commit is contained in:
parent
661efcb51f
commit
f9ba322547
@ -4,11 +4,13 @@ declare(strict_types=1);
|
||||
|
||||
namespace Shlinkio\Shlink\Rest\Action\ShortUrl;
|
||||
|
||||
use Cake\Chronos\Chronos;
|
||||
use InvalidArgumentException;
|
||||
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\Common\Util\DateRange;
|
||||
use Shlinkio\Shlink\Core\Service\ShortUrlServiceInterface;
|
||||
use Shlinkio\Shlink\Core\Transformer\ShortUrlDataTransformer;
|
||||
use Shlinkio\Shlink\Rest\Action\AbstractRestAction;
|
||||
@ -56,11 +58,19 @@ class ListShortUrlsAction extends AbstractRestAction
|
||||
*/
|
||||
private function queryToListParams(array $query): array
|
||||
{
|
||||
$dateRange = null;
|
||||
$dateStart = isset($query['dateStart']) ? Chronos::parse($query['dateStart']) : null;
|
||||
$dateEnd = isset($query['dateEnd']) ? Chronos::parse($query['dateEnd']) : null;
|
||||
if ($dateStart != null || $dateEnd != null) {
|
||||
$dateRange = new DateRange($dateStart, $dateEnd);
|
||||
}
|
||||
|
||||
return [
|
||||
(int) ($query['page'] ?? 1),
|
||||
$query['searchTerm'] ?? null,
|
||||
$query['tags'] ?? [],
|
||||
$query['orderBy'] ?? null,
|
||||
$dateRange,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user