Completed
Push — master ( 62f786...e41aa3 )
by Andrii
02:37
created

Config   A

Complexity

Total Complexity 14

Size/Duplication

Total Lines 69
Duplicated Lines 0 %

Coupling/Cohesion

Components 2
Dependencies 4

Test Coverage

Coverage 30.43%

Importance

Changes 0
Metric Value
wmc 14
lcom 2
cbo 4
dl 0
loc 69
ccs 7
cts 23
cp 0.3043
rs 10
c 0
b 0
f 0

7 Methods

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