X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/6653eb79af53d67dafb4cc75dd9175b2f381d11a..9c56c2945cf03dc3d46c67831a5a04b9805b41e2:/DependencyInjection/RapsysAirExtension.php

diff --git a/DependencyInjection/RapsysAirExtension.php b/DependencyInjection/RapsysAirExtension.php
index 76729ae..e3f1bd6 100644
--- a/DependencyInjection/RapsysAirExtension.php
+++ b/DependencyInjection/RapsysAirExtension.php
@@ -1,4 +1,13 @@
-<?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\AirBundle\DependencyInjection;
 
@@ -7,6 +16,8 @@ use Symfony\Component\DependencyInjection\Extension\Extension;
 use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
 use Symfony\Component\Translation\Loader\ArrayLoader;
 
+use Rapsys\AirBundle\RapsysAirBundle;
+
 /**
  * This is the class that loads and manages your bundle configuration.
  *
@@ -20,6 +31,43 @@ class RapsysAirExtension extends Extension implements PrependExtensionInterface
 	 * {@inheritdoc}
 	 */
 	public function prepend(ContainerBuilder $container) {
+		/* XXX: All that shit is not used anymore in theory
+		 * TODO: drop it ???
+		//Load framework configurations
+		//XXX: required to extract default_locale and translation.fallbacks
+		$frameworks = $container->getExtensionConfig('framework');
+
+		//Recursively merge framework configurations
+		$framework = array_reduce(
+			$frameworks,
+			function ($res, $i) {
+				return array_merge_recursive($res, $i);
+			},
+			[]
+		);
+
+		//Set translator fallbacks
+		$container->setParameter('kernel.translator.fallbacks', $framework['translator']['fallbacks']);
+
+		//Set default locale
+		$container->setParameter('kernel.default_locale', $framework['default_locale']);
+
+		//Load rapsys_user configurations
+		//XXX: required to extract default_locale and translation.fallbacks
+		$rapsys_users = $container->getExtensionConfig('rapsys_user');
+
+		//Recursively merge rapsys_user configurations
+		$rapsys_user = array_reduce(
+			$rapsys_users,
+			function ($res, $i) {
+				return array_merge_recursive($res, $i);
+			},
+			[]
+		);
+
+		//Set rapsys_user.languages key
+		$container->setParameter('rapsys_user.languages', $rapsys_user['languages']);*/
+
 		//Process the configuration
 		$configs = $container->getExtensionConfig($this->getAlias());
 
@@ -39,7 +87,8 @@ class RapsysAirExtension extends Extension implements PrependExtensionInterface
 		$container->setParameter($this->getAlias(), $config);
 
 		//Store flattened array in parameters
-		foreach($this->flatten($config, $this->getAlias()) as $k => $v) {
+		//XXX: don't flatten rapsys_air.site.png key which is required to be an array
+		foreach($this->flatten($config, $this->getAlias(), 10, '.', ['rapsys_air.copy', 'rapsys_air.icon', 'rapsys_air.icon.png', 'rapsys_air.logo', 'rapsys_air.facebook.apps', 'rapsys_air.locales', 'rapsys_air.languages']) as $k => $v) {
 			$container->setParameter($k, $v);
 		}
 	}
@@ -53,8 +102,8 @@ class RapsysAirExtension extends Extension implements PrependExtensionInterface
 	/**
 	 * {@inheritdoc}
 	 */
-	public function getAlias() {
-		return 'rapsys_air';
+	public function getAlias(): string {
+		return RapsysAirBundle::getAlias();
 	}
 
 	/**
@@ -64,19 +113,21 @@ class RapsysAirExtension extends Extension implements PrependExtensionInterface
 	 * @param $path		The current key path
 	 * @param $depth	The maxmium depth
 	 * @param $sep		The separator string
+	 * @param $skip		The skipped paths array
 	 */
-	protected function flatten($array, $path = '', $depth = 10, $sep = '.') {
+	protected function flatten($array, $path = '', $depth = 10, $sep = '.', $skip = []) {
 		//Init res
 		$res = array();
 
-		//Pass through non hashed or empty array
-		if ($depth && is_array($array) && ($array === [] || array_keys($array) === range(0, count($array) - 1))) {
-			$res[$path] = $array;
-		//Flatten hashed array
-		} elseif ($depth && is_array($array)) {
+		//Detect numerical only array
+		//count(array_filter($array, function($k) { return !is_numeric($k); }, ARRAY_FILTER_USE_KEY)) == 0
+		//array_reduce(array_keys($array), function($c, $k) { return $c += !is_numeric($k); }, 0)
+
+		//Flatten hashed array until depth reach zero
+		if ($depth && is_array($array) && $array !== [] && !in_array($path, $skip)) {
 			foreach($array as $k => $v) {
 				$sub = $path ? $path.$sep.$k:$k;
-				$res += $this->flatten($v, $sub, $depth - 1, $sep);
+				$res += $this->flatten($v, $sub, $depth - 1, $sep, $skip);
 			}
 		//Pass scalar value directly
 		} else {