forked from Sylius/SyliusResourceBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractResourceBundle.php
More file actions
169 lines (146 loc) · 5.69 KB
/
AbstractResourceBundle.php
File metadata and controls
169 lines (146 loc) · 5.69 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* 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.
*
* @var string
*/
protected $mappingFormat = ResourceBundleInterface::MAPPING_XML;
/**
* {@inheritdoc}
*/
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;
}
}
}
}
}
/**
* Return the prefix of the bundle.
*
* @return string
*/
protected function getBundlePrefix(): string
{
return Container::underscore(substr(strrchr(get_class($this), '\\'), 1, -6));
}
/**
* Return the directory where are stored the doctrine mapping.
*
* @return string
*/
protected function getDoctrineMappingDirectory(): string
{
return 'model';
}
/**
* Return the entity namespace.
*
* @return string
*/
protected function getModelNamespace(): ?string
{
return (new \ReflectionClass($this))->getNamespaceName() . '\\Model';
}
/**
* Return mapping compiler pass class depending on driver.
*
* @param string $driverType
*
* @return array
*
* @throws UnknownDriverException
*/
protected function getMappingCompilerPassInfo(string $driverType): array
{
switch ($driverType) {
case SyliusResourceBundle::DRIVER_DOCTRINE_MONGODB_ODM:
@trigger_error(sprintf(
'The "%s" driver is deprecated in Sylius 1.3. Doctrine MongoDB and PHPCR will no longer be supported in Sylius 2.0.',
$driverType
), E_USER_DEPRECATED);
$mappingsPassClassname = DoctrineMongoDBMappingsPass::class;
break;
case SyliusResourceBundle::DRIVER_DOCTRINE_ORM:
$mappingsPassClassname = DoctrineOrmMappingsPass::class;
break;
case SyliusResourceBundle::DRIVER_DOCTRINE_PHPCR_ODM:
@trigger_error(sprintf(
'The "%s" driver is deprecated in Sylius 1.3. Doctrine MongoDB and PHPCR will no longer be supported in Sylius 2.0.',
$driverType
), E_USER_DEPRECATED);
$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.
*
* @return string
*/
protected function getConfigFilesPath(): string
{
return sprintf(
'%s/Resources/config/doctrine/%s',
$this->getPath(),
strtolower($this->getDoctrineMappingDirectory())
);
}
/**
* @return string
*/
protected function getObjectManagerParameter(): string
{
return sprintf('%s.object_manager', $this->getBundlePrefix());
}
}