mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 04:03:12 +08:00
39 lines
1.3 KiB
PHP
39 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Rest\Action\ShortUrl;
|
|
|
|
use Laminas\Diactoros\Response\JsonResponse;
|
|
use Psr\Http\Message\ResponseInterface as Response;
|
|
use Psr\Http\Message\ServerRequestInterface as Request;
|
|
use Shlinkio\Shlink\Core\Config\Options\UrlShortenerOptions;
|
|
use Shlinkio\Shlink\Core\Exception\ValidationException;
|
|
use Shlinkio\Shlink\Core\ShortUrl\Model\ShortUrlCreation;
|
|
use Shlinkio\Shlink\Core\ShortUrl\Transformer\ShortUrlDataTransformerInterface;
|
|
use Shlinkio\Shlink\Core\ShortUrl\UrlShortenerInterface;
|
|
use Shlinkio\Shlink\Rest\Action\AbstractRestAction;
|
|
|
|
abstract class AbstractCreateShortUrlAction extends AbstractRestAction
|
|
{
|
|
public function __construct(
|
|
private readonly UrlShortenerInterface $urlShortener,
|
|
private readonly ShortUrlDataTransformerInterface $transformer,
|
|
protected readonly UrlShortenerOptions $urlShortenerOptions,
|
|
) {
|
|
}
|
|
|
|
public function handle(Request $request): Response
|
|
{
|
|
$shortUrlMeta = $this->buildShortUrlData($request);
|
|
$result = $this->urlShortener->shorten($shortUrlMeta);
|
|
|
|
return new JsonResponse($this->transformer->transform($result->shortUrl));
|
|
}
|
|
|
|
/**
|
|
* @throws ValidationException
|
|
*/
|
|
abstract protected function buildShortUrlData(Request $request): ShortUrlCreation;
|
|
}
|