Cancelled
Push — master ( 4fdc6f...ff0867 )
by Victor
482:25 queued 482:25
created

ConfigReader::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
ccs 3
cts 3
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
/**
3
 * @author Victor Dubiniuk <[email protected]>
4
 *
5
 * @copyright Copyright (c) 2015, ownCloud, Inc.
6
 * @license AGPL-3.0
7
 *
8
 * This code is free software: you can redistribute it and/or modify
9
 * it under the terms of the GNU Affero General Public License, version 3,
10
 * as published by the Free Software Foundation.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
 * GNU Affero General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Affero General Public License, version 3,
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
19
 *
20
 */
21
22
namespace Owncloud\Updater\Utils;
23
24
use Owncloud\Updater\Utils\OccRunner;
25
26
class ConfigReader {
27
28
	/** @var array Associative array ($key => $value) */
29
	protected $cache = [];
30
31
	/**
32
	 * @var OccRunner $occRunner
33
	 */
34
	protected $occRunner;
35
36
	/**
37
	 * @var bool
38
	 */
39
	protected $isLoaded = false;
40
41
	/**
42
	 *
43
	 * @param OccRunner $occRunner
44
	 */
45 1
	public function __construct(OccRunner $occRunner){
46 1
		$this->occRunner = $occRunner;
47 1
	}
48
49 1
	public function init(){
50 1
		$this->load();
51 1
	}
52
53
	/**
54
	 * @return bool
55
	 */
56
	public function getIsLoaded(){
57
		return $this->isLoaded;
58
	}
59
60
	/**
61
	 * Get a value from OC config by
62
	 * path key1.key2.key3
63
	 * @param string $path
64
	 * @return mixed
65
	 */
66 1
	public function getByPath($path){
67 1
		return $this->get(explode('.', $path));
68
	}
69
70
	/**
71
	 * Get a value from OC config by keys
72
	 * @param array $keys
73
	 * @return mixed
74
	 */
75 1
	public function get($keys){
76 1
		$config = $this->cache;
77
		do {
78 1
			$key = array_shift($keys);
79 1
			if (!count($keys)>0 && !is_array($config)){
80
				return;
81
			}
82 1
			if (!array_key_exists($key, $config)){
83
				return;
84
			}
85 1
			$config = $config[$key];
86 1
		} while ($keys);
0 ignored issues
show
Bug Best Practice introduced by
The expression $keys of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
87 1
		return $config;
88
	}
89
90
	/**
91
	 * Get OC Edition
92
	 * @return string
93
	 * @throws ProcessFailedException
94
	 */
95
	public function getEdition(){
96
		$response = $this->occRunner->runJson('status');
97
		return $response['edition'];
98
	}
99
100
	/**
101
	 * Export OC config as JSON and parse it into the cache
102
	 * @throws ProcessFailedException
103
	 * @throws \UnexpectedValueException
104
	 */
105 1
	private function load(){
106 1
		$this->cache = $this->occRunner->runJson('config:list --private');
107 1
		$this->isLoaded = true;
108 1
	}
109
110
}
111