-
-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathAbstractResourceBundle.php
More file actions
155 lines (132 loc) · 5.58 KB
/
AbstractResourceBundle.php
File metadata and controls
155 lines (132 loc) · 5.58 KB
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
<?php
/*
* This file is part of the Sylius package.
*
* (c) Sylius Sp. z o.o.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Sylius\Bundle\ResourceBundle;
use Doctrine\Bundle\DoctrineBundle\DependencyInjection\Compiler\DoctrineOrmMappingsPass;
use Doctrine\Bundle\MongoDBBundle\DependencyInjection\Compiler\DoctrineMongoDBMappingsPass;
use Doctrine\Bundle\PHPCRBundle\DependencyInjection\Compiler\DoctrinePhpcrMappingsPass;
use Sylius\Bundle\ResourceBundle\DependencyInjection\Driver\Exception\UnknownDriverException;
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 ResourceBundleInterface
{
/**
* Configure format of mapping files.
*/
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', 'yaml' 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;
}
}
}
}
}
/**
* Return the prefix of the bundle.
*/
protected function getBundlePrefix(): string
{
return Container::underscore(substr((string) strrchr(static::class, '\\'), 1, -6));
}
/**
* Return the directory where are stored the doctrine mapping.
*/
protected function getDoctrineMappingDirectory(): string
{
return 'model';
}
/**
* Return the entity namespace.
*/
protected function getModelNamespace(): ?string
{
return (new \ReflectionClass($this))->getNamespaceName() . '\\Model';
}
/**
* Return mapping compiler pass class depending on driver.
*
* @return string[]
*
* @throws UnknownDriverException
*/
protected function getMappingCompilerPassInfo(string $driverType): array
{
switch ($driverType) {
case SyliusResourceBundle::DRIVER_DOCTRINE_MONGODB_ODM:
trigger_deprecation(
'sylius/resource-bundle',
'1.3',
'The "%s" driver is deprecated. Doctrine MongoDB and PHPCR will no longer be supported in 2.0.',
SyliusResourceBundle::DRIVER_DOCTRINE_MONGODB_ODM,
);
$mappingsPassClassname = DoctrineMongoDBMappingsPass::class;
break;
case SyliusResourceBundle::DRIVER_DOCTRINE_ORM:
$mappingsPassClassname = DoctrineOrmMappingsPass::class;
break;
case SyliusResourceBundle::DRIVER_DOCTRINE_PHPCR_ODM:
trigger_deprecation(
'sylius/resource-bundle',
'1.3',
'The "%s" driver is deprecated. Doctrine MongoDB and PHPCR will no longer be supported in 2.0.',
SyliusResourceBundle::DRIVER_DOCTRINE_PHPCR_ODM,
);
$mappingsPassClassname = DoctrinePhpcrMappingsPass::class;
break;
default:
throw new UnknownDriverException($driverType);
}
$compilerPassMethod = sprintf('create%sMappingDriver', ucfirst($this->mappingFormat));
return [$mappingsPassClassname, $compilerPassMethod];
}
/**
* Return the absolute path where are stored the doctrine mapping.
*/
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());
}
}