Completed
Pull Request — master (#76)
by Simone
03:01
created

Schema::parseSchema()   C

Complexity

Conditions 8
Paths 10

Size

Total Lines 30
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
c 2
b 0
f 1
dl 0
loc 30
rs 5.3846
cc 8
eloc 16
nc 10
nop 1
1
<?php
2
3
/**
4
 * This file is part of sensorario/resources repository
5
 *
6
 * (c) Simone Gentili <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Sensorario\Resources;
13
14
use RuntimeException;
15
use Sensorario\Resources\Exceptions\InvalidTypeException;
16
use Sensorario\Resources\Exceptions\NoPropertiesException;
17
use Sensorario\Resources\Exceptions\NoPropertyTypeException;
18
use Sensorario\Resources\Exceptions\NoTypeException;
19
20
final class Schema
21
{
22
    const PRIMITIVE_ARRAY   = 'array';
23
    const PRIMITIVE_BOOLEAN = 'boolean';
24
    const PRIMITIVE_DEFAULT = Schema::PRIMITIVE_NULL;
25
    const PRIMITIVE_INTEGER = 'integer';
26
    const PRIMITIVE_NULL    = 'null';
27
    const PRIMITIVE_NUMBER  = 'number';
28
    const PRIMITIVE_OBJECT  = 'object';
29
    const PRIMITIVE_STRING  = 'string';
30
31
    private $completeSchema;
32
33
    private $schemaNames = [];
34
35
    private $validTypes = [
36
        self::PRIMITIVE_ARRAY,
37
        self::PRIMITIVE_BOOLEAN,
38
        self::PRIMITIVE_DEFAULT,
39
        self::PRIMITIVE_INTEGER,
40
        self::PRIMITIVE_NULL,
41
        self::PRIMITIVE_NUMBER,
42
        self::PRIMITIVE_OBJECT,
43
        self::PRIMITIVE_STRING,
44
    ];
45
46
    public function __construct($schema)
47
    {
48
        $this->completeSchema = $schema;
49
50
        $this->schemaNames[] = 'root';
51
52
        $this->parseSchema($this->completeSchema);
53
    }
54
55
    private function parseSchema($schema)
56
    {
57
        if (!isset($schema['type'])) {
58
            throw new NoTypeException('Schema type is not defined');
59
        }
60
61
        if (!in_array($schema['type'], $this->validTypes)) {
62
            throw new InvalidTypeException();
63
        }
64
65
        if (!isset($schema['properties'])) {
66
            throw new NoPropertiesException();
67
        }
68
69
        foreach ($schema['properties'] as $name => $def) {
70
            if (!isset($def['type'])) {
71
                throw new NoPropertyTypeException(
72
                    'Property `' . $name . '`'
73
                    . ' MUST HAVE a type'
74
                );
75
            }
76
        }
77
78
        foreach ($schema as $key => $value) {
79
            if (!in_array($key, ['properties', 'title', 'type'])) {
80
                $this->schemaNames[] = $key;
81
                $this->parseSchema($value);
82
            }
83
        }
84
    }
85
86
    public function countSubSchemas()
87
    {
88
        return 0;
89
    }
90
91
    public function completeSchema()
92
    {
93
        return $this->completeSchema;
94
    }
95
96
    public function schemaNames()
97
    {
98
        return $this->schemaNames;
99
    }
100
101
    public function getTitle()
102
    {
103
        return $this->completeSchema['title'];
104
    }
105
}
106