mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 12:13:13 +08:00
92 lines
2.5 KiB
PHP
92 lines
2.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Core\Exception;
|
|
|
|
use Fig\Http\Message\StatusCodeInterface;
|
|
use Throwable;
|
|
use Zend\InputFilter\InputFilterInterface;
|
|
use Zend\ProblemDetails\Exception\CommonProblemDetailsExceptionTrait;
|
|
use Zend\ProblemDetails\Exception\ProblemDetailsExceptionInterface;
|
|
|
|
use function Functional\reduce_left;
|
|
use function is_array;
|
|
use function print_r;
|
|
use function sprintf;
|
|
|
|
use const PHP_EOL;
|
|
|
|
class ValidationException extends RuntimeException implements ProblemDetailsExceptionInterface
|
|
{
|
|
use CommonProblemDetailsExceptionTrait;
|
|
|
|
private const TITLE = 'Invalid data';
|
|
public const TYPE = 'INVALID_ARGUMENT';
|
|
|
|
/** @var array */
|
|
private $invalidElements;
|
|
|
|
public function __construct(
|
|
string $message = '',
|
|
array $invalidElements = [],
|
|
int $code = 0,
|
|
?Throwable $previous = null
|
|
) {
|
|
$this->invalidElements = $invalidElements;
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
|
|
public static function fromInputFilter(InputFilterInterface $inputFilter, ?Throwable $prev = null): self
|
|
{
|
|
return static::fromArray($inputFilter->getMessages(), $prev);
|
|
}
|
|
|
|
public static function fromArray(array $invalidData, ?Throwable $prev = null): self
|
|
{
|
|
$status = StatusCodeInterface::STATUS_BAD_REQUEST;
|
|
$e = new self('Provided data is not valid', $invalidData, $status, $prev);
|
|
|
|
$e->detail = $e->getMessage();
|
|
$e->title = self::TITLE;
|
|
$e->type = self::TYPE;
|
|
$e->status = StatusCodeInterface::STATUS_BAD_REQUEST;
|
|
$e->additional = [
|
|
'invalidElements' => $invalidData,
|
|
];
|
|
|
|
return $e;
|
|
}
|
|
|
|
public function getInvalidElements(): array
|
|
{
|
|
return $this->invalidElements;
|
|
}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return sprintf(
|
|
'%s %s in %s:%s%s%sStack trace:%s%s',
|
|
__CLASS__,
|
|
$this->getMessage(),
|
|
$this->getFile(),
|
|
$this->getLine(),
|
|
$this->invalidElementsToString(),
|
|
PHP_EOL,
|
|
PHP_EOL,
|
|
$this->getTraceAsString()
|
|
);
|
|
}
|
|
|
|
private function invalidElementsToString(): string
|
|
{
|
|
return reduce_left($this->invalidElements, function ($messageSet, string $name, $_, string $acc) {
|
|
return $acc . sprintf(
|
|
"\n '%s' => %s",
|
|
$name,
|
|
is_array($messageSet) ? print_r($messageSet, true) : $messageSet
|
|
);
|
|
}, '');
|
|
}
|
|
}
|