|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* User: jg |
|
4
|
|
|
* Date: 26/05/17 |
|
5
|
|
|
* Time: 00:56 |
|
6
|
|
|
*/ |
|
7
|
|
|
|
|
8
|
|
|
namespace ByJG\Config; |
|
9
|
|
|
|
|
10
|
|
|
use ByJG\Config\Exception\NotFoundException; |
|
11
|
|
|
use Psr\SimpleCache\CacheInterface; |
|
12
|
|
|
|
|
13
|
|
|
class Definition |
|
14
|
|
|
{ |
|
15
|
|
|
private $lastEnv = null; |
|
16
|
|
|
|
|
17
|
|
|
private $environments = []; |
|
18
|
|
|
|
|
19
|
|
|
private $envVar = 'APPLICATION_ENV'; |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
22
|
|
|
* @var CacheInterface[] |
|
23
|
|
|
*/ |
|
24
|
|
|
private $cache = []; |
|
25
|
|
|
|
|
26
|
|
|
/** |
|
27
|
|
|
* @var \DateInterval[] |
|
28
|
|
|
*/ |
|
29
|
|
|
private $cacheTTL = []; |
|
30
|
|
|
|
|
31
|
|
|
private function loadConfig($currentConfig, $env) |
|
32
|
|
|
{ |
|
33
|
|
|
$file = __DIR__ . '/../../../../config/config-' . $env . '.php'; |
|
34
|
|
|
|
|
35
|
|
|
if (!file_exists($file)) { |
|
36
|
|
|
$file = __DIR__ . '/../config/config-' . $env . '.php'; |
|
37
|
|
|
} |
|
38
|
|
|
|
|
39
|
|
|
if (!file_exists($file)) { |
|
40
|
|
|
throw new NotFoundException( |
|
41
|
|
|
"The config file '" |
|
42
|
|
|
. "config-$env.php'" |
|
43
|
|
|
. 'does not found' |
|
44
|
|
|
); |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
$config = (include $file); |
|
48
|
|
|
return array_merge($config, $currentConfig); |
|
49
|
|
|
} |
|
50
|
|
|
|
|
51
|
|
|
public function setCache(CacheInterface $cache, $env = "live") |
|
52
|
|
|
{ |
|
53
|
|
|
$this->cache[$env] = $cache; |
|
54
|
|
|
$this->cacheTTL[$env] = new \DateInterval('P7D'); |
|
55
|
|
|
return $this; |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
public function setCacheTTL(\DateInterval $ttl, $env = "live") |
|
59
|
|
|
{ |
|
60
|
|
|
if (!isset($this->cache[$env])) { |
|
61
|
|
|
throw new \Exception('Environment does not exists. Could not set Cache TTL.'); |
|
62
|
|
|
} |
|
63
|
|
|
|
|
64
|
|
|
$this->cacheTTL[$env] = $ttl; |
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
|
public function addEnvironment($env) |
|
68
|
|
|
{ |
|
69
|
|
|
if (isset($this->environments[$env])) { |
|
70
|
|
|
throw new \InvalidArgumentException("Environment '$env' already exists"); |
|
71
|
|
|
} |
|
72
|
|
|
$this->lastEnv = $env; |
|
73
|
|
|
$this->environments[$env] = []; |
|
74
|
|
|
return $this; |
|
75
|
|
|
} |
|
76
|
|
|
|
|
77
|
|
|
public function inheritFrom($env) |
|
78
|
|
|
{ |
|
79
|
|
|
$this->environments[$this->lastEnv][] = $env; |
|
80
|
|
|
return $this; |
|
81
|
|
|
} |
|
82
|
|
|
|
|
83
|
|
|
public function environmentVar($var) |
|
84
|
|
|
{ |
|
85
|
|
|
$this->envVar = $var; |
|
86
|
|
|
} |
|
87
|
|
|
|
|
88
|
|
|
public function getCurrentEnv() |
|
89
|
|
|
{ |
|
90
|
|
|
$env = getenv($this->envVar); |
|
91
|
|
|
if (empty($env)) { |
|
92
|
|
|
throw new \InvalidArgumentException("The environment variable '$this->envVar' is not set"); |
|
93
|
|
|
} |
|
94
|
|
|
return $env; |
|
95
|
|
|
} |
|
96
|
|
|
|
|
97
|
|
|
/** |
|
98
|
|
|
* @param string|null $env |
|
99
|
|
|
* @return \ByJG\Config\Container |
|
100
|
|
|
*/ |
|
101
|
|
|
public function build($env = null) |
|
102
|
|
|
{ |
|
103
|
|
|
if (empty($env)) { |
|
104
|
|
|
$env = $this->getCurrentEnv(); |
|
105
|
|
|
} |
|
106
|
|
|
|
|
107
|
|
|
if (!isset($this->environments[$env])) { |
|
108
|
|
|
throw new \InvalidArgumentException("Environment '$env' does not defined"); |
|
109
|
|
|
} |
|
110
|
|
|
|
|
111
|
|
|
$container = null; |
|
|
|
|
|
|
112
|
|
|
if (isset($this->cache[$env])) { |
|
113
|
|
|
$container = $this->cache[$env]->get("container-cache-$env"); |
|
114
|
|
|
if (!is_null($container)) { |
|
115
|
|
|
return $container; |
|
|
|
|
|
|
116
|
|
|
} |
|
117
|
|
|
} |
|
118
|
|
|
|
|
119
|
|
|
$config = []; |
|
120
|
|
|
$config = $this->loadConfig($config, $env); |
|
121
|
|
|
foreach ($this->environments[$env] as $environment) { |
|
122
|
|
|
$config = $this->loadConfig($config, $environment); |
|
123
|
|
|
} |
|
124
|
|
|
|
|
125
|
|
|
$container = new Container($config); |
|
126
|
|
|
if (isset($this->cache[$env])) { |
|
127
|
|
|
$this->cache[$env]->set("container-cache-$env", $container, $this->cacheTTL[$env]); |
|
|
|
|
|
|
128
|
|
|
} |
|
129
|
|
|
return $container; |
|
130
|
|
|
} |
|
131
|
|
|
} |
|
132
|
|
|
|
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.