X-Git-Url: https://git.rapsys.eu/packbundle/blobdiff_plain/841a8835e903a514e2e44706bf4974f3cc21104b..569db7a24c07ddc92ca69be46ae6a90d3c0d04a8:/DependencyInjection/RapsysPackExtension.php?ds=sidebyside

diff --git a/DependencyInjection/RapsysPackExtension.php b/DependencyInjection/RapsysPackExtension.php
index 9bcd117..3a6ed53 100644
--- a/DependencyInjection/RapsysPackExtension.php
+++ b/DependencyInjection/RapsysPackExtension.php
@@ -1,30 +1,70 @@
-<?php
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys PackBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
 
 namespace Rapsys\PackBundle\DependencyInjection;
 
+use Rapsys\PackBundle\RapsysPackBundle;
+
 use Symfony\Component\DependencyInjection\ContainerBuilder;
-use Symfony\Component\Config\FileLocator;
-use Symfony\Component\HttpKernel\DependencyInjection\Extension;
-use Symfony\Component\DependencyInjection\Loader;
+use Symfony\Component\DependencyInjection\Extension\Extension;
 
 /**
  * This is the class that loads and manages your bundle configuration.
  *
  * @link http://symfony.com/doc/current/cookbook/bundles/extension.html
+ *
+ * {@inheritdoc}
  */
 class RapsysPackExtension extends Extension {
 	/**
 	 * {@inheritdoc}
 	 */
-	public function load(array $configs, ContainerBuilder $container) {
-		$configuration = new Configuration($container->getParameter('kernel.project_dir').'/web/');
+	public function load(array $configs, ContainerBuilder $container): void {
+		//Load configuration
+		$configuration = $this->getConfiguration($configs, $container);
+
+		//Process the configuration to get merged config
 		$config = $this->processConfiguration($configuration, $configs);
 
-		$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
-		$loader->load('services.yml');
+		//Set bundle alias
+		$alias = RapsysPackBundle::getAlias();
+
+		//Detect when no user configuration is provided
+		if ($configs === [[]]) {
+			//Prepend default config
+			$container->prependExtensionConfig($alias, $config);
+		}
+
+		//Save configuration in parameters
+		$container->setParameter($alias, $config);
+
+		//Set rapsyspack.alias key
+		$container->setParameter($alias.'.alias', $alias);
+
+		//Set rapsyspack.cache key
+		$container->setParameter($alias.'.cache', $config['cache']);
+
+		//Set rapsyspack.public key
+		$container->setParameter($alias.'.public', $config['public']);
+
+		//Set rapsyspack.version key
+		$container->setParameter($alias.'.version', RapsysPackBundle::getVersion());
 	}
 
-	public function getConfiguration(array $configs, ContainerBuilder $container) {
-		return new Configuration($container->getParameter('kernel.project_dir').'/web/');
+	/**
+	 * {@inheritdoc}
+	 *
+	 * @xxx Required by kernel to load renamed alias configuration
+	 */
+	public function getAlias(): string {
+		return RapsysPackBundle::getAlias();
 	}
 }