Passed
Push — master ( 55aa31...45f0f1 )
by Alexander
13:22 queued 10:36
created

StopOnErrorHandler   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 6
eloc 15
c 1
b 0
f 0
dl 0
loc 29
ccs 15
cts 15
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A validate() 0 27 6
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Validator\Rule;
6
7
use Yiisoft\Validator\Exception\UnexpectedRuleException;
8
use Yiisoft\Validator\Result;
9
use Yiisoft\Validator\RuleHandlerInterface;
10
use Yiisoft\Validator\ValidationContext;
11
12
/**
13
 * Can be used for early stopping the validation process of the value when the validation on the stage was failed.
14
 *
15
 * For example, we have several rules, but we want not to process the rest rules when fail was ocurred:
16
 *
17
 * ```php
18
 * $request = [
19
 *     'username' => 'yiisoft',
20
 * ];
21
 * ```
22
 *
23
 * So to make validation we can configure it like this:
24
 *
25
 * ```php
26
 * $rule = new StopOnError([
27
 *      new HasLength(min: 3),
28
 *      // Heavy operation. It would be great not to call it if the previous rule was failed.
29
 *      new ExistsInDatabase(),
30
 * ]);
31
 * ```
32
 */
33
final class StopOnErrorHandler implements RuleHandlerInterface
34
{
35 4
    public function validate(mixed $value, object $rule, ValidationContext $context): Result
36
    {
37 4
        if (!$rule instanceof StopOnError) {
38 1
            throw new UnexpectedRuleException(StopOnError::class, $rule);
39
        }
40
41 3
        $compoundResult = new Result();
42 3
        $results = [];
43
44 3
        foreach ($rule->getRules() as $relatedRule) {
45 3
            $rules = [$relatedRule];
46
47 3
            $lastResult = $context->getValidator()->validate($value, $rules);
48 3
            $results[] = $lastResult;
49
50 3
            if (!$lastResult->isValid()) {
51 2
                break;
52
            }
53
        }
54
55 3
        foreach ($results as $result) {
56 3
            foreach ($result->getErrors() as $error) {
57 2
                $compoundResult->addError($error->getMessage(), $error->getParameters(), $error->getValuePath());
58
            }
59
        }
60
61 3
        return $compoundResult;
62
    }
63
}
64