Completed
Pull Request — master (#175)
by
unknown
02:15 queued 02:15
created

InRange::validateValue()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 0
Metric Value
cc 2
eloc 4
nc 2
nop 2
dl 0
loc 9
ccs 5
cts 5
cp 1
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Validator\Rule;
6
7
use Attribute;
8
use Yiisoft\Validator\FormatterInterface;
9
use Yiisoft\Validator\ValidationContext;
10
use Yiisoft\Arrays\ArrayHelper;
11
use Yiisoft\Validator\Result;
12
use Yiisoft\Validator\Rule;
13
14
/**
15
 * Validates that the value is among a list of values.
16
 *
17
 * The range can be specified via constructor.
18
 * If the {@see InRange::$not} is called, the rule will ensure the value is NOT among the specified range.
19
 */
20
#[Attribute(Attribute::TARGET_PROPERTY)]
21
final class InRange extends Rule
22
{
23
    public function __construct(
24
        private iterable $range,
25
        /**
26
         * @var bool whether the comparison is strict (both type and value must be the same)
27
         */
28
        private bool $strict = false,
29
        /**
30
         * @var bool whether to invert the validation logic. Defaults to false. If set to `true`, the value should NOT
31
         * be among the list of values passed via constructor.
32
         */
33
        private bool $not = false,
34
        private string $message = 'This value is invalid.',
35
        ?FormatterInterface $formatter = null,
36
        bool $skipOnEmpty = false,
37
        bool $skipOnError = false,
38
        $when = null
39
    ) {
40 8
        parent::__construct(formatter: $formatter, skipOnEmpty: $skipOnEmpty, skipOnError: $skipOnError, when: $when);
41
    }
42 8
43 8
    protected function validateValue($value, ?ValidationContext $context = null): Result
44 8
    {
45
        $result = new Result();
46
47 8
        if ($this->not === ArrayHelper::isIn($value, $this->range, $this->strict)) {
48
            $result->addError($this->formatMessage($this->message));
49 8
        }
50
51 8
        return $result;
52 7
    }
53
54
    public function getOptions(): array
55 8
    {
56
        return array_merge(parent::getOptions(), [
57
            'range' => $this->range,
58 2
            'strict' => $this->strict,
59
            'not' => $this->not,
60 2
            'message' => $this->formatMessage($this->message),
61 2
        ]);
62 2
    }
63
}
64