Passed
Push — develop ( 032606...dd41f7 )
by nguereza
02:11
created

AbstractConfiguration   A

Complexity

Total Complexity 17

Size/Duplication

Total Lines 105
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 40
dl 0
loc 105
rs 10
c 2
b 0
f 0
wmc 17

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getSetterMaps() 0 3 1
A __construct() 0 3 1
A load() 0 16 4
B checkValue() 0 26 8
A get() 0 10 2
A getValidationRules() 0 3 1
1
<?php
2
3
/**
4
 * Platine Stdlib
5
 *
6
 * Platine Stdlib is a the collection of frequently used php features
7
 *
8
 * This content is released under the MIT License (MIT)
9
 *
10
 * Copyright (c) 2020 Platine Stdlib
11
 *
12
 * Permission is hereby granted, free of charge, to any person obtaining a copy
13
 * of this software and associated documentation files (the "Software"), to deal
14
 * in the Software without restriction, including without limitation the rights
15
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
 * copies of the Software, and to permit persons to whom the Software is
17
 * furnished to do so, subject to the following conditions:
18
 *
19
 * The above copyright notice and this permission notice shall be included in all
20
 * copies or substantial portions of the Software.
21
 *
22
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
 * SOFTWARE.
29
 */
30
31
/**
32
 *  @file AbstractConfiguration.php
33
 *
34
 *  The base class for application
35
 *
36
 *  @package    Platine\Stdlib\Config
37
 *  @author Platine Developers Team
38
 *  @copyright  Copyright (c) 2020
39
 *  @license    http://opensource.org/licenses/MIT  MIT License
40
 *  @link   http://www.iacademy.cf
41
 *  @version 1.0.0
42
 *  @filesource
43
 */
44
45
declare(strict_types=1);
46
47
namespace Platine\Stdlib\Config;
48
49
use Error;
50
use InvalidArgumentException;
51
use Platine\Stdlib\Contract\ConfigurationInterface;
52
use Platine\Stdlib\Helper\Arr;
53
use Platine\Stdlib\Helper\Str;
54
55
/**
56
 * Class AbstractConfiguration
57
 * @package Platine\Stdlib\Config
58
 */
59
abstract class AbstractConfiguration implements ConfigurationInterface
60
{
61
62
    /**
63
     * The raw configuration array
64
     * @var array<string, mixed>
65
     */
66
    protected array $config = [];
67
68
    /**
69
     * {@inheritedoc}
70
     */
71
    public function __construct(array $config = [])
72
    {
73
        $this->load($config);
74
    }
75
76
    /**
77
     * {@inheritedoc}
78
     */
79
    public function get(string $name)
80
    {
81
        if (!Arr::has($this->config, $name)) {
82
            throw new InvalidArgumentException(sprintf(
83
                'Configuration [%s] does not exist',
84
                $name
85
            ));
86
        }
87
88
        return Arr::get($this->config, $name);
89
    }
90
91
    /**
92
     * {@inheritedoc}
93
     */
94
    public function load(array $config): void
95
    {
96
        $this->config = $config;
97
        $rules = $this->getValidationRules();
98
        $setters = $this->getSetterMaps();
99
100
        foreach ($config as $name => $value) {
101
            $key = Str::camel($name, true);
102
            if (property_exists($this, $key)) {
103
                $this->checkValue($key, $value, $rules);
104
105
                if (Arr::has($setters, $key)) {
106
                    $method = Arr::get($setters, $key);
107
                    $this->{$method}($value);
108
                } else {
109
                    $this->{$key} = $value;
110
                }
111
            }
112
        }
113
    }
114
115
    /**
116
     * {@inheritedoc}
117
     */
118
    public function getValidationRules(): array
119
    {
120
        return [];
121
    }
122
123
    /**
124
     * {@inheritedoc}
125
     */
126
    public function getSetterMaps(): array
127
    {
128
        return [];
129
    }
130
131
    /**
132
     * Check the configuration for the given type
133
     * @param string $key
134
     * @param mixed $value
135
     * @param array<string, string> $rules
136
     * @return void
137
     */
138
    private function checkValue(string $key, $value, array $rules = []): void
139
    {
140
        if (array_key_exists($key, $rules)) {
141
            $expectedType = $rules[$key];
142
            $type = gettype($value);
143
            $className = null;
144
            if (strpos($expectedType, 'object::') === 0) {
145
                $className = substr($expectedType, 8);
146
            }
147
148
            $error = null;
149
150
            if ($className !== null) {
151
                if (!($value instanceof $className)) {
152
                    $error = 'Invalid configuration [%s] instance value, expected [%s], but got [%s]';
153
                }
154
            } elseif ($type !== $expectedType) {
155
                $error = 'Invalid configuration [%s] value, expected [%s], but got [%s]';
156
            }
157
158
            if ($error !== null) {
159
                throw new Error(sprintf(
160
                    $error,
161
                    Str::snake($key),
162
                    $className ?? $expectedType,
163
                    is_object($value) ? get_class($value) : gettype($value)
164
                ));
165
            }
166
        }
167
    }
168
}
169