Type::anyType()   A
last analyzed

Complexity

Conditions 3
Paths 3

Size

Total Lines 11
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 3

Importance

Changes 0
Metric Value
cc 3
eloc 6
nc 3
nop 3
dl 0
loc 11
ccs 6
cts 6
cp 1
crap 3
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
namespace League\JsonGuard\Constraint\DraftFour;
4
5
use League\JsonGuard\Assert;
6
use League\JsonGuard\ConstraintInterface;
7
use League\JsonGuard\ValidationError;
8
use League\JsonGuard\Validator;
9
use function League\JsonGuard\error;
10
11
final class Type implements ConstraintInterface
12
{
13
    const KEYWORD = 'type';
14
15
    /**
16
     * {@inheritdoc}
17
     */
18 52
    public function validate($value, $type, Validator $validator)
19
    {
20 52
        Assert::type($type, ['array', 'string'], self::KEYWORD, $validator->getSchemaPath());
21
22 50
        if (is_array($type)) {
23 4
            return $this->anyType($value, $type, $validator);
24
        }
25
26 25
        switch ($type) {
27 50
            case 'object':
28 16
                return $this->validateType($value, 'is_object', $validator);
29 48
            case 'array':
30 8
                return $this->validateType($value, 'is_array', $validator);
31 46
            case 'boolean':
32 8
                return $this->validateType($value, 'is_bool', $validator);
33 44
            case 'null':
34 4
                return $this->validateType($value, 'is_null', $validator);
35 44
            case 'number':
36 10
                return $this->validateType(
37 10
                    $value,
38 10
                    'League\JsonGuard\is_json_number',
39 10
                    $validator
40
                );
41 40
            case 'integer':
42 32
                return $this->validateType(
43 32
                    $value,
44 32
                    'League\JsonGuard\is_json_integer',
45 32
                    $validator
46
                );
47 28
            case 'string':
48 28
                return $this->validateType($value, 'is_string', $validator);
49
        }
50
    }
51
52
    /**
53
     * @param mixed                       $value
54
     * @param callable                    $callable
55
     * @param \League\JsonGuard\Validator $validator
56
     *
57
     * @return \League\JsonGuard\ValidationError|null
58
     *
59
     */
60 50
    private function validateType($value, callable $callable, Validator $validator)
61
    {
62 50
        if (call_user_func($callable, $value) === true) {
63 46
            return null;
64
        }
65
66 36
        return error('The data must be a(n) {parameter}.', $validator);
67
    }
68
69
    /**
70
     * @param mixed $value
71
     * @param array $choices
72
     *
73
     * @param Validator $validator
74
     *
75
     * @return ValidationError|null
76
     */
77 4
    private function anyType($value, array $choices, Validator $validator)
78
    {
79 4
        foreach ($choices as $type) {
80 4
            $error = $this->validate($value, $type, $validator);
81 4
            if (is_null($error)) {
82 4
                return null;
83
            }
84
        }
85
86 4
        return error('The data must be one of {parameter}.', $validator);
87
    }
88
}
89