Completed
Push — master ( 2aa843...683412 )
by Andrii
03:09
created

Config::includeConfig()   A

Complexity

Conditions 3
Paths 2

Size

Total Lines 12
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 3.0175

Importance

Changes 0
Metric Value
dl 0
loc 12
ccs 7
cts 8
cp 0.875
rs 9.4285
c 0
b 0
f 0
cc 3
eloc 8
nc 2
nop 2
crap 3.0175
1
<?php
2
3
/*
4
 * Automation tool mixed with code generator for easier continuous development
5
 *
6
 * @link      https://github.com/hiqdev/hidev
7
 * @package   hidev
8
 * @license   BSD-3-Clause
9
 * @copyright Copyright (c) 2015-2016, HiQDev (http://hiqdev.com/)
10
 */
11
12
namespace hidev\components;
13
14
use hidev\base\File;
15
use Yii;
16
use yii\helpers\ArrayHelper;
17
18
/**
19
 * The Config. Keeps config and Goals.
20
 */
21
class Config extends \hiqdev\yii2\collection\Object
22
{
23
    protected $_included = [];
24
25 5
    public function hasGoal($id)
26
    {
27 5
        return $this->hasItem($id);
28
    }
29
30 5
    public function getItemConfig($id = null, array $config = [])
0 ignored issues
show
Unused Code introduced by
The parameter $id is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
31
    {
32 5
        if (isset($config['class']) && $this->hasItem($config['class'])) {
33
            $config = array_merge($config, $this->_items[$config['class']]);
34
        }
35 5
        return ArrayHelper::merge([
36 5
            'class' => 'hidev\controllers\CommonController',
37 5
        ], $config);
38
    }
39
40 5
    public function createItem($id, $config = [])
41
    {
42 5
        return Yii::createObject($this->getItemConfig($id, $config), [$id, Yii::$app]);
43
    }
44
45 5
    public function getItem($id)
46
    {
47 5
        $item = &$this->_items[$id];
48 5
        if (is_array($item)) {
49 5
            if (count($item) === 1 && key($item) === 'alias') {
50
                $item = $this->getItem($item['alias']);
51
            } else {
52 5
                $item = $this->createItem($id, $item);
53
            }
54 5
        }
55
56 5
        return $item;
57
    }
58
59
    /**
60
     * Include config file, unique only.
61
     * @param string|array $path
62
     * @return bool true if the path was unique and loaded
63
     */
64 2
    public function includeConfig($path, $force = false)
65
    {
66 2
        $file = File::create($path);
67 2
        $path = $file->getPath();
68 2
        if (!isset($this->_included[$path]) || $force) {
69 2
            $this->_included[$path] = $path;
70 2
            $this->mergeItems($file->load());
71 2
            return true;
72
        }
73
74
        return false;
75
    }
76
77 4
    public function getGoal($id)
78
    {
79 4
        return Yii::$app->createControllerById($id);
80
    }
81
82 2
    public function getVcs()
83
    {
84
        /// TODO determine VCS
85 2
        return $this->getGoal('git');
86
    }
87
}
88