Completed
Pull Request — master (#108)
by Matt
02:11
created

Type::anyType()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 11
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 3

Importance

Changes 0
Metric Value
cc 3
eloc 6
nc 3
nop 3
dl 0
loc 11
ccs 7
cts 7
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 50
    public function validate($value, $type, Validator $validator)
19
    {
20 50
        Assert::type($type, ['array', 'string'], self::KEYWORD, $validator->getSchemaPath());
21
22 48
        if (is_array($type)) {
23 4
            return $this->anyType($value, $type, $validator);
24
        }
25
26
        switch ($type) {
27 48
            case 'object':
28 16
                return $this->validateType($value, 'is_object', $validator);
29 46
            case 'array':
30 8
                return $this->validateType($value, 'is_array', $validator);
31 44
            case 'boolean':
32 8
                return $this->validateType($value, 'is_bool', $validator);
33 42
            case 'null':
34 4
                return $this->validateType($value, 'is_null', $validator);
35 42
            case 'number':
36 10
                return $this->validateType(
37 10
                    $value,
38 10
                    'League\JsonGuard\is_json_number',
39
                    $validator
40 10
                );
41 38
            case 'integer':
42 32
                return $this->validateType(
43 32
                    $value,
44 32
                    'League\JsonGuard\is_json_integer',
45
                    $validator
46 32
                );
47 28
            case 'string':
48 28
                return $this->validateType(
49 28
                    $value,
50 28
                    function ($value) {
51 28
                        if (is_string($value)) {
52
                            // Make sure the string isn't actually a number that was too large
53
                            // to be cast to an int on this platform.  This will only happen if
54
                            // you decode JSON with the JSON_BIGINT_AS_STRING option.
55 26
                            if (!(ctype_digit($value) && bccomp($value, PHP_INT_MAX) === 1)) {
56 24
                                return true;
57
                            }
58 2
                        }
59
60 18
                        return false;
61 28
                    },
62
                    $validator
63 28
                );
64
        }
65
    }
66
67
    /**
68
     * @param mixed                       $value
69
     * @param callable                    $callable
70
     * @param \League\JsonGuard\Validator $validator
71
     *
72
     * @return \League\JsonGuard\ValidationError|null
73
     *
74
     */
75 48
    private function validateType($value, callable $callable, Validator $validator)
76
    {
77 48
        if (call_user_func($callable, $value) === true) {
78 44
            return null;
79
        }
80
81 38
        return error('The data must be a(n) {parameter}.', $validator);
82
    }
83
84
    /**
85
     * @param mixed $value
86
     * @param array $choices
87
     *
88
     * @param Validator $validator
89
     *
90
     * @return ValidationError|null
91
     */
92 4
    private function anyType($value, array $choices, Validator $validator)
93
    {
94 4
        foreach ($choices as $type) {
95 4
            $error = $this->validate($value, $type, $validator);
96 4
            if (is_null($error)) {
97 4
                return null;
98
            }
99 4
        }
100
101 4
        return error('The data must be one of {parameter}.', $validator);
102
    }
103
}
104