mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Core\Exception;
|
|
|
|
use Fig\Http\Message\StatusCodeInterface;
|
|
use Mezzio\ProblemDetails\Exception\CommonProblemDetailsExceptionTrait;
|
|
use Mezzio\ProblemDetails\Exception\ProblemDetailsExceptionInterface;
|
|
use Throwable;
|
|
|
|
use function Shlinkio\Shlink\Core\toProblemDetailsType;
|
|
use function sprintf;
|
|
|
|
class InvalidUrlException extends DomainException implements ProblemDetailsExceptionInterface
|
|
{
|
|
use CommonProblemDetailsExceptionTrait;
|
|
|
|
private const TITLE = 'Invalid URL';
|
|
public const ERROR_CODE = 'invalid-url';
|
|
|
|
public static function fromUrl(string $url, ?Throwable $previous = null): self
|
|
{
|
|
$status = StatusCodeInterface::STATUS_BAD_REQUEST;
|
|
$e = new self(sprintf('Provided URL %s is invalid. Try with a different one.', $url), $status, $previous);
|
|
|
|
$e->detail = $e->getMessage();
|
|
$e->title = self::TITLE;
|
|
$e->type = toProblemDetailsType(self::ERROR_CODE);
|
|
$e->status = $status;
|
|
$e->additional = ['url' => $url];
|
|
|
|
return $e;
|
|
}
|
|
}
|