mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
77 lines
2.7 KiB
PHP
77 lines
2.7 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Rest\Action\ShortCode;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Psr\Log\LoggerInterface;
|
|
use Shlinkio\Shlink\Core\Exception;
|
|
use Shlinkio\Shlink\Core\Model\ShortUrlMeta;
|
|
use Shlinkio\Shlink\Core\Service\ShortUrlServiceInterface;
|
|
use Shlinkio\Shlink\Rest\Action\AbstractRestAction;
|
|
use Shlinkio\Shlink\Rest\Util\RestUtils;
|
|
use Zend\Diactoros\Response\EmptyResponse;
|
|
use Zend\Diactoros\Response\JsonResponse;
|
|
use Zend\I18n\Translator\TranslatorInterface;
|
|
|
|
class EditShortCodeAction extends AbstractRestAction
|
|
{
|
|
protected const ROUTE_PATH = '/short-codes/{shortCode}';
|
|
protected const ROUTE_ALLOWED_METHODS = [self::METHOD_PUT];
|
|
|
|
/**
|
|
* @var ShortUrlServiceInterface
|
|
*/
|
|
private $shortUrlService;
|
|
/**
|
|
* @var TranslatorInterface
|
|
*/
|
|
private $translator;
|
|
|
|
public function __construct(
|
|
ShortUrlServiceInterface $shortUrlService,
|
|
TranslatorInterface $translator,
|
|
LoggerInterface $logger = null
|
|
) {
|
|
parent::__construct($logger);
|
|
$this->shortUrlService = $shortUrlService;
|
|
$this->translator = $translator;
|
|
}
|
|
|
|
/**
|
|
* Process an incoming server request and return a response, optionally delegating
|
|
* to the next middleware component to create the response.
|
|
*
|
|
* @param ServerRequestInterface $request
|
|
*
|
|
* @return ResponseInterface
|
|
* @throws \InvalidArgumentException
|
|
*/
|
|
public function handle(ServerRequestInterface $request): ResponseInterface
|
|
{
|
|
$postData = (array) $request->getParsedBody();
|
|
$shortCode = $request->getAttribute('shortCode', '');
|
|
|
|
try {
|
|
$this->shortUrlService->updateMetadataByShortCode(
|
|
$shortCode,
|
|
ShortUrlMeta::createFromRawData($postData)
|
|
);
|
|
return new EmptyResponse();
|
|
} catch (Exception\InvalidShortCodeException $e) {
|
|
$this->logger->warning('Provided data is invalid.' . PHP_EOL . $e);
|
|
return new JsonResponse([
|
|
'error' => RestUtils::getRestErrorCodeFromException($e),
|
|
'message' => \sprintf($this->translator->translate('No URL found for short code "%s"'), $shortCode),
|
|
], self::STATUS_NOT_FOUND);
|
|
} catch (Exception\ValidationException $e) {
|
|
$this->logger->warning('Provided data is invalid.' . PHP_EOL . $e);
|
|
return new JsonResponse([
|
|
'error' => RestUtils::getRestErrorCodeFromException($e),
|
|
'message' => $this->translator->translate('Provided data is invalid.'),
|
|
], self::STATUS_BAD_REQUEST);
|
|
}
|
|
}
|
|
}
|