96 lines
1.9 KiB
PHP
96 lines
1.9 KiB
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of Respect/Validation.
|
||
|
*
|
||
|
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
|
||
|
*
|
||
|
* For the full copyright and license information, please view the LICENSE file
|
||
|
* that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Respect\Validation\Rules;
|
||
|
|
||
|
use Respect\Validation\Exceptions\AlwaysInvalidException;
|
||
|
use Respect\Validation\Validatable;
|
||
|
|
||
|
/**
|
||
|
* A ternary validator that accepts three parameters.
|
||
|
*
|
||
|
* @author Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
|
||
|
* @author Danilo Correa <danilosilva87@gmail.com>
|
||
|
* @author Henrique Moody <henriquemoody@gmail.com>
|
||
|
* @author Hugo Hamon <hugo.hamon@sensiolabs.com>
|
||
|
*/
|
||
|
final class When extends AbstractRule
|
||
|
{
|
||
|
/**
|
||
|
* @var Validatable
|
||
|
*/
|
||
|
private $when;
|
||
|
|
||
|
/**
|
||
|
* @var Validatable
|
||
|
*/
|
||
|
private $then;
|
||
|
|
||
|
/**
|
||
|
* @var Validatable
|
||
|
*/
|
||
|
private $else;
|
||
|
|
||
|
public function __construct(Validatable $when, Validatable $then, ?Validatable $else = null)
|
||
|
{
|
||
|
$this->when = $when;
|
||
|
$this->then = $then;
|
||
|
if ($else === null) {
|
||
|
$else = new AlwaysInvalid();
|
||
|
$else->setTemplate(AlwaysInvalidException::SIMPLE);
|
||
|
}
|
||
|
|
||
|
$this->else = $else;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritDoc}
|
||
|
*/
|
||
|
public function validate($input): bool
|
||
|
{
|
||
|
if ($this->when->validate($input)) {
|
||
|
return $this->then->validate($input);
|
||
|
}
|
||
|
|
||
|
return $this->else->validate($input);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritDoc}
|
||
|
*/
|
||
|
public function assert($input): void
|
||
|
{
|
||
|
if ($this->when->validate($input)) {
|
||
|
$this->then->assert($input);
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$this->else->assert($input);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritDoc}
|
||
|
*/
|
||
|
public function check($input): void
|
||
|
{
|
||
|
if ($this->when->validate($input)) {
|
||
|
$this->then->check($input);
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$this->else->check($input);
|
||
|
}
|
||
|
}
|