forked from coreshop/ResourceBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AbstractResourceBundle.php
226 lines (183 loc) · 7.12 KB
/
AbstractResourceBundle.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
223
224
225
226
<?php
declare(strict_types=1);
/*
* CoreShop
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - CoreShop Commercial License (CCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) CoreShop GmbH (https://www.coreshop.org)
* @license https://www.coreshop.org/license GPLv3 and CCL
*
*/
namespace CoreShop\Bundle\ResourceBundle;
use Composer\InstalledVersions;
use CoreShop\Bundle\ResourceBundle\DependencyInjection\Driver\Exception\UnknownDriverException;
use Doctrine\Bundle\DoctrineBundle\DependencyInjection\Compiler\DoctrineOrmMappingsPass;
use Pimcore\Extension\Bundle\Installer\InstallerInterface;
use Pimcore\Extension\Bundle\PimcoreBundleInterface;
use Pimcore\HttpKernel\Bundle\DependentBundleInterface;
use Pimcore\HttpKernel\BundleCollection\BundleCollection;
use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
abstract class AbstractResourceBundle extends Bundle implements PimcoreBundleInterface, ResourceBundleInterface, DependentBundleInterface, ComposerPackageBundleInterface
{
protected string $mappingFormat = ResourceBundleInterface::MAPPING_XML;
public function build(ContainerBuilder $container): void
{
if (null !== $this->getModelNamespace()) {
foreach ($this->getSupportedDrivers() as $driver) {
[$compilerPassClassName, $compilerPassMethod] = $this->getMappingCompilerPassInfo($driver);
if (class_exists($compilerPassClassName)) {
if (!method_exists($compilerPassClassName, $compilerPassMethod)) {
throw new InvalidConfigurationException(
"The 'mappingFormat' value is invalid, must be 'xml', 'yml' or 'annotation'.",
);
}
switch ($this->mappingFormat) {
case ResourceBundleInterface::MAPPING_XML:
case ResourceBundleInterface::MAPPING_YAML:
$container->addCompilerPass($compilerPassClassName::$compilerPassMethod(
[$this->getConfigFilesPath() => $this->getModelNamespace()],
[$this->getObjectManagerParameter()],
sprintf('%s.driver.%s', $this->getBundlePrefix(), $driver),
));
break;
case ResourceBundleInterface::MAPPING_ANNOTATION:
$container->addCompilerPass($compilerPassClassName::$compilerPassMethod(
[$this->getModelNamespace()],
[$this->getConfigFilesPath()],
[sprintf('%s.object_manager', $this->getBundlePrefix())],
sprintf('%s.driver.%s', $this->getBundlePrefix(), $driver),
));
break;
}
}
}
}
}
public static function registerDependentBundles(BundleCollection $collection): void
{
$collection->addBundle(new CoreShopResourceBundle(), 3800);
}
public function getVersion(): string
{
if (class_exists('\\CoreShop\\Bundle\\CoreBundle\\Application\\Version')) {
return \CoreShop\Bundle\CoreBundle\Application\Version::getVersion() . ' (' . $this->getComposerVersion() . ')';
}
return $this->getComposerVersion();
}
public function getComposerVersion(): string
{
if ($this instanceof ComposerPackageBundleInterface) {
$bundleName = $this->getPackageName();
if (class_exists(InstalledVersions::class)) {
if (InstalledVersions::isInstalled('coreshop/core-shop')) {
return InstalledVersions::getPrettyVersion('coreshop/core-shop');
}
if (InstalledVersions::isInstalled($bundleName)) {
return InstalledVersions::getPrettyVersion($bundleName);
}
}
}
return '';
}
protected function getBundlePrefix(): string
{
return Container::underscore(substr(strrchr($this::class, '\\'), 1, -6));
}
protected function getDoctrineMappingDirectory(): string
{
return 'model';
}
protected function getModelNamespace(): ?string
{
return null;
}
protected function getMappingCompilerPassInfo(string $driverType): array
{
$mappingsPassClassname = match ($driverType) {
CoreShopResourceBundle::DRIVER_DOCTRINE_ORM => DoctrineOrmMappingsPass::class,
default => throw new UnknownDriverException($driverType),
};
$compilerPassMethod = sprintf('create%sMappingDriver', ucfirst($this->mappingFormat));
return [$mappingsPassClassname, $compilerPassMethod];
}
protected function getConfigFilesPath(): string
{
return sprintf(
'%s/Resources/config/doctrine/%s',
$this->getPath(),
strtolower($this->getDoctrineMappingDirectory()),
);
}
protected function getObjectManagerParameter(): string
{
return sprintf('%s.object_manager', $this->getBundlePrefix());
}
public function getNiceName(): string
{
$name = $this->getResourceBundleName();
if ($name[0] === 'Core' && $name[1] === 'Shop') {
return sprintf('CoreShop - %s', $name[2]);
}
return implode(' ', $name);
}
public function getDescription(): string
{
$name = $this->getResourceBundleName();
if ($name[0] === 'Core' && $name[1] === 'Shop') {
return sprintf('CoreShop - %s', $name[2]);
}
return implode(' ', $name);
}
private function getResourceBundleName(): array
{
$reflect = new \ReflectionClass($this);
$split = preg_split('/(?=[A-Z])/', $reflect->getShortName());
if (false === $split) {
return [];
}
return array_values(array_filter(
$split,
static fn (string $value) => $value !== '',
));
}
public function getPackageName(): string
{
$name = $this->getResourceBundleName();
if ($name[0] === 'Core' && $name[1] === 'Shop') {
return sprintf('coreshop/%s-bundle', strtolower($name[2]));
}
return '';
}
public function getInstaller(): ?InstallerInterface
{
return null;
}
public function getAdminIframePath(): ?string
{
return null;
}
public function getJsPaths(): array
{
return [];
}
public function getCssPaths(): array
{
return [];
}
public function getEditmodeJsPaths(): array
{
return [];
}
public function getEditmodeCssPaths(): array
{
return [];
}
}