This repository has been archived by the owner on Mar 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AssetManager.php
222 lines (187 loc) · 6.36 KB
/
AssetManager.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<?php
namespace Erfans\AssetBundle\Asset;
use Erfans\AssetBundle\Agents\InstallerInterface;
use Erfans\AssetBundle\Model\AssetConfig;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\Processor;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Yaml\Yaml;
use Symfony\Component\Console\Output\OutputInterface;
class AssetManager
{
/** @var ContainerInterface $container */
private $container;
/** @var Config $config */
private $config;
/** @var array $installers */
private $installers = [];
/**
* Manager constructor.
*
* @param ContainerInterface $container
* @param Config $config
*/
public function __construct(ContainerInterface $container, Config $config)
{
$this->container = $container;
$this->config = $config;
}
/**
* @param InstallerInterface $agent
* @param $alias
*/
public function addInstaller(InstallerInterface $agent, $alias)
{
$this->installers[$alias] = $agent;
}
/**
* @param $alias
* @return InstallerInterface
*/
public function getInstaller($alias)
{
if (!array_key_exists($alias, $this->installers)) {
throw new \InvalidArgumentException(
"Agent with alias '$alias' does not found.".
" Service is not registered or not tagged correctly."
);
}
return $this->installers[$alias];
}
/**
* @return \Symfony\Component\Config\Definition\NodeInterface
*/
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('assets');
$rootNode
->beforeNormalization()
->always()
->then(
function ($v) {
foreach ($v as $key => $value) {
if (is_string($key)) {
$v[$key]["alias"] = $key;
}
}
return $v;
}
)
->end()
->prototype("array")
->children()
->scalarNode("alias")->end()
->scalarNode("installer")->isRequired()->cannotBeEmpty()->end()
->scalarNode("id")->end()
->scalarNode("version")->end()
->arrayNode("main_files")->prototype("scalar")->end()->end()
->scalarNode("output_directory")->end()
->end()
->end()
->end();
return $treeBuilder->buildTree();
}
/**
* return an array of bundles name which should be included
*
* @return array
*/
public function getBundles()
{
if ($this->config->isAllBundles()) {
return array_keys($this->container->getParameter('kernel.bundles'));
} else {
return $this->config->getBundles();
}
}
/**
* get path of bundle main file
*
* @param $bundle
* @return string
*/
protected function getBundlePath($bundle)
{
$bundles = $this->container->getParameter('kernel.bundles');
if (!array_key_exists($bundle, $bundles)) {
throw new \InvalidArgumentException("Bundle '$bundle' not found in registered bundles.");
}
return $this->container->getParameter('kernel.bundles')[$bundle];
}
/**
* @param $bundle
* @return array|null
*/
protected function getBundleAssetConfigs($bundle)
{
$bundlePath = $this->getBundlePath($bundle);
$reflection = new \ReflectionClass($bundlePath);
$configTree = $this->getConfigTreeBuilder();
$fileAddress = dirname($reflection->getFilename()).'/Resources/config/asset.yml';
if (is_file($file = $fileAddress)) {
$configArray = Yaml::parse(file_get_contents(realpath($file)));
$processor = new Processor();
try {
return $processor->process($configTree, $configArray);
} catch (\Exception $ex) {
throw new \RuntimeException(
"Could not process asset config for bundle '$bundle' at '$fileAddress'.", 500, $ex
);
}
}
return null;
}
/**
* @param InputInterface $input
* @param OutputInterface $output
* @return \Erfans\AssetBundle\Model\AssetConfig[] assetConfigs
*/
public function install(InputInterface $input, OutputInterface $output)
{
// Create $assetConfigs
/** @var \Erfans\AssetBundle\Model\AssetConfig[] $assetConfigs */
$assetConfigs = [];
$bundles = $this->getBundles();
foreach ($bundles as $bundle) {
$assets = $this->getBundleAssetConfigs($bundle);
if ($assets != null) {
foreach ($assets as $asset) {
$asset["bundle"] = $bundle;
$assetConfig = new AssetConfig($asset);
$assetConfigs[] = $assetConfig;
}
}
}
return $this->doInstall($assetConfigs, $input, $output);
}
/**
* @param \Erfans\AssetBundle\Model\AssetConfig[] $assetConfigs
* @param InputInterface $input
* @param OutputInterface $output
* @return \Erfans\AssetBundle\Model\AssetConfig[] assetConfigs
*/
protected function doInstall(array $assetConfigs, InputInterface $input, OutputInterface $output)
{
$configs = [];
foreach ($assetConfigs as $assetConfig) {
$configs [$assetConfig->getInstaller()][] = $assetConfig;
}
$assetConfigs = [];
foreach ($configs as $agent => $config) {
$output->writeln("Start installing by '".$agent."'");
$agentService = $this->getInstaller($agent);
try {
$agentService->setInputInterface($input);
$agentService->setOutputInterface($output);
$assetConfig = $agentService->install($config);
} catch (\Exception $ex) {
$output->writeln("An error occurred while '$agent' tries to install");
throw new \RuntimeException($ex);
}
$assetConfigs = array_merge($assetConfigs, $assetConfig);
}
return $assetConfigs;
}
}