vendor/shopware/core/System/SystemConfig/SystemConfigService.php line 334

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\System\SystemConfig;
  3. use Doctrine\DBAL\Connection;
  4. use Shopware\Core\Framework\Bundle;
  5. use Shopware\Core\Framework\Context;
  6. use Shopware\Core\Framework\DataAbstractionLayer\EntityRepositoryInterface;
  7. use Shopware\Core\Framework\DataAbstractionLayer\Field\ConfigJsonField;
  8. use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
  9. use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\EqualsAnyFilter;
  10. use Shopware\Core\Framework\DataAbstractionLayer\Search\Filter\EqualsFilter;
  11. use Shopware\Core\Framework\Util\XmlReader;
  12. use Shopware\Core\Framework\Uuid\Exception\InvalidUuidException;
  13. use Shopware\Core\Framework\Uuid\Uuid;
  14. use Shopware\Core\System\SystemConfig\Event\BeforeSystemConfigChangedEvent;
  15. use Shopware\Core\System\SystemConfig\Event\SystemConfigChangedEvent;
  16. use Shopware\Core\System\SystemConfig\Event\SystemConfigDomainLoadedEvent;
  17. use Shopware\Core\System\SystemConfig\Exception\BundleConfigNotFoundException;
  18. use Shopware\Core\System\SystemConfig\Exception\InvalidDomainException;
  19. use Shopware\Core\System\SystemConfig\Exception\InvalidKeyException;
  20. use Shopware\Core\System\SystemConfig\Exception\InvalidSettingValueException;
  21. use Shopware\Core\System\SystemConfig\Util\ConfigReader;
  22. use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
  23. use function json_decode;
  24. class SystemConfigService
  25. {
  26.     private Connection $connection;
  27.     private EntityRepositoryInterface $systemConfigRepository;
  28.     /**
  29.      * @var array[]
  30.      */
  31.     private array $configs = [];
  32.     private ConfigReader $configReader;
  33.     private array $keys = ['all' => true];
  34.     private array $traces = [];
  35.     private AbstractSystemConfigLoader $loader;
  36.     private EventDispatcherInterface $eventDispatcher;
  37.     public function __construct(
  38.         Connection $connection,
  39.         EntityRepositoryInterface $systemConfigRepository,
  40.         ConfigReader $configReader,
  41.         AbstractSystemConfigLoader $loader,
  42.         EventDispatcherInterface $eventDispatcher
  43.     ) {
  44.         $this->connection $connection;
  45.         $this->systemConfigRepository $systemConfigRepository;
  46.         $this->configReader $configReader;
  47.         $this->loader $loader;
  48.         $this->eventDispatcher $eventDispatcher;
  49.     }
  50.     public static function buildName(string $key): string
  51.     {
  52.         return 'config.' $key;
  53.     }
  54.     /**
  55.      * @return array|bool|float|int|string|null
  56.      */
  57.     public function get(string $key, ?string $salesChannelId null)
  58.     {
  59.         foreach (array_keys($this->keys) as $trace) {
  60.             $this->traces[$trace][self::buildName($key)] = true;
  61.         }
  62.         $config $this->load($salesChannelId);
  63.         $parts explode('.'$key);
  64.         $pointer $config;
  65.         foreach ($parts as $part) {
  66.             if (!\is_array($pointer)) {
  67.                 return null;
  68.             }
  69.             if (\array_key_exists($part$pointer)) {
  70.                 $pointer $pointer[$part];
  71.                 continue;
  72.             }
  73.             return null;
  74.         }
  75.         return $pointer;
  76.     }
  77.     public function getString(string $key, ?string $salesChannelId null): string
  78.     {
  79.         $value $this->get($key$salesChannelId);
  80.         if (!\is_array($value)) {
  81.             return (string) $value;
  82.         }
  83.         throw new InvalidSettingValueException($key'string', \gettype($value));
  84.     }
  85.     public function getInt(string $key, ?string $salesChannelId null): int
  86.     {
  87.         $value $this->get($key$salesChannelId);
  88.         if (!\is_array($value)) {
  89.             return (int) $value;
  90.         }
  91.         throw new InvalidSettingValueException($key'int', \gettype($value));
  92.     }
  93.     public function getFloat(string $key, ?string $salesChannelId null): float
  94.     {
  95.         $value $this->get($key$salesChannelId);
  96.         if (!\is_array($value)) {
  97.             return (float) $value;
  98.         }
  99.         throw new InvalidSettingValueException($key'float', \gettype($value));
  100.     }
  101.     public function getBool(string $key, ?string $salesChannelId null): bool
  102.     {
  103.         return (bool) $this->get($key$salesChannelId);
  104.     }
  105.     /**
  106.      * @internal should not be used in storefront or store api. The cache layer caches all accessed config keys and use them as cache tag.
  107.      *
  108.      * gets all available shop configs and returns them as an array
  109.      */
  110.     public function all(?string $salesChannelId null): array
  111.     {
  112.         return $this->load($salesChannelId);
  113.     }
  114.     /**
  115.      * @internal should not be used in storefront or store api. The cache layer caches all accessed config keys and use them as cache tag.
  116.      *
  117.      * @throws InvalidDomainException
  118.      */
  119.     public function getDomain(string $domain, ?string $salesChannelId nullbool $inherit false): array
  120.     {
  121.         $domain trim($domain);
  122.         if ($domain === '') {
  123.             throw new InvalidDomainException('Empty domain');
  124.         }
  125.         $queryBuilder $this->connection->createQueryBuilder()
  126.             ->select(['configuration_key''configuration_value'])
  127.             ->from('system_config');
  128.         if ($inherit) {
  129.             $queryBuilder->where('sales_channel_id IS NULL OR sales_channel_id = :salesChannelId');
  130.         } elseif ($salesChannelId === null) {
  131.             $queryBuilder->where('sales_channel_id IS NULL');
  132.         } else {
  133.             $queryBuilder->where('sales_channel_id = :salesChannelId');
  134.         }
  135.         $domain rtrim($domain'.') . '.';
  136.         $escapedDomain str_replace('%''\\%'$domain);
  137.         $salesChannelId $salesChannelId Uuid::fromHexToBytes($salesChannelId) : null;
  138.         $queryBuilder->andWhere('configuration_key LIKE :prefix')
  139.             ->addOrderBy('sales_channel_id''ASC')
  140.             ->setParameter('prefix'$escapedDomain '%')
  141.             ->setParameter('salesChannelId'$salesChannelId);
  142.         $configs $queryBuilder->execute()->fetchAllNumeric();
  143.         if ($configs === []) {
  144.             return [];
  145.         }
  146.         $merged = [];
  147.         foreach ($configs as [$key$value]) {
  148.             if ($value !== null) {
  149.                 $value json_decode($valuetrue);
  150.                 if ($value === false || !isset($value[ConfigJsonField::STORAGE_KEY])) {
  151.                     $value null;
  152.                 } else {
  153.                     $value $value[ConfigJsonField::STORAGE_KEY];
  154.                 }
  155.             }
  156.             $inheritedValuePresent = \array_key_exists($key$merged);
  157.             $valueConsideredEmpty = !\is_bool($value) && empty($value);
  158.             if ($inheritedValuePresent && $valueConsideredEmpty) {
  159.                 continue;
  160.             }
  161.             $merged[$key] = $value;
  162.         }
  163.         $event = new SystemConfigDomainLoadedEvent($domain$merged$inherit$salesChannelId);
  164.         $this->eventDispatcher->dispatch($event);
  165.         return $event->getConfig();
  166.     }
  167.     /**
  168.      * @param array|bool|float|int|string|null $value
  169.      */
  170.     public function set(string $key$value, ?string $salesChannelId null): void
  171.     {
  172.         // reset internal cache
  173.         $this->configs = [];
  174.         $key trim($key);
  175.         $this->validate($key$salesChannelId);
  176.         $id $this->getId($key$salesChannelId);
  177.         if ($value === null) {
  178.             if ($id) {
  179.                 $this->systemConfigRepository->delete([['id' => $id]], Context::createDefaultContext());
  180.             }
  181.             $this->eventDispatcher->dispatch(new SystemConfigChangedEvent($key$value$salesChannelId));
  182.             return;
  183.         }
  184.         $event = new BeforeSystemConfigChangedEvent($key$value$salesChannelId);
  185.         $this->eventDispatcher->dispatch($event);
  186.         $data = [
  187.             'id' => $id ?? Uuid::randomHex(),
  188.             'configurationKey' => $key,
  189.             'configurationValue' => $event->getValue(),
  190.             'salesChannelId' => $salesChannelId,
  191.         ];
  192.         $this->systemConfigRepository->upsert([$data], Context::createDefaultContext());
  193.         $this->eventDispatcher->dispatch(new SystemConfigChangedEvent($key$event->getValue(), $salesChannelId));
  194.     }
  195.     public function delete(string $key, ?string $salesChannel null): void
  196.     {
  197.         $this->set($keynull$salesChannel);
  198.     }
  199.     /**
  200.      * Fetches default values from bundle configuration and saves it to database
  201.      */
  202.     public function savePluginConfiguration(Bundle $bundlebool $override false): void
  203.     {
  204.         try {
  205.             $config $this->configReader->getConfigFromBundle($bundle);
  206.         } catch (BundleConfigNotFoundException $e) {
  207.             return;
  208.         }
  209.         $prefix $bundle->getName() . '.config.';
  210.         $this->saveConfig($config$prefix$override);
  211.     }
  212.     public function saveConfig(array $configstring $prefixbool $override): void
  213.     {
  214.         foreach ($config as $card) {
  215.             foreach ($card['elements'] as $element) {
  216.                 $key $prefix $element['name'];
  217.                 if (!isset($element['defaultValue'])) {
  218.                     continue;
  219.                 }
  220.                 $value XmlReader::phpize($element['defaultValue']);
  221.                 if ($override || $this->get($key) === null) {
  222.                     $this->set($key$value);
  223.                 }
  224.             }
  225.         }
  226.     }
  227.     public function deletePluginConfiguration(Bundle $bundle): void
  228.     {
  229.         try {
  230.             $config $this->configReader->getConfigFromBundle($bundle);
  231.         } catch (BundleConfigNotFoundException $e) {
  232.             return;
  233.         }
  234.         $this->deleteExtensionConfiguration($bundle->getName(), $config);
  235.     }
  236.     public function deleteExtensionConfiguration(string $extensionName, array $config): void
  237.     {
  238.         $prefix $extensionName '.config.';
  239.         $configKeys = [];
  240.         foreach ($config as $card) {
  241.             foreach ($card['elements'] as $element) {
  242.                 $configKeys[] = $prefix $element['name'];
  243.             }
  244.         }
  245.         if (empty($configKeys)) {
  246.             return;
  247.         }
  248.         $criteria = new Criteria();
  249.         $criteria->addFilter(new EqualsAnyFilter('configurationKey'$configKeys));
  250.         $systemConfigIds $this->systemConfigRepository->searchIds($criteriaContext::createDefaultContext())->getIds();
  251.         if (empty($systemConfigIds)) {
  252.             return;
  253.         }
  254.         $ids array_map(static function ($id) {
  255.             return ['id' => $id];
  256.         }, $systemConfigIds);
  257.         $this->systemConfigRepository->delete($idsContext::createDefaultContext());
  258.     }
  259.     /**
  260.      * @return mixed|null All kind of data could be cached
  261.      */
  262.     public function trace(string $key, \Closure $param)
  263.     {
  264.         $this->traces[$key] = [];
  265.         $this->keys[$key] = true;
  266.         $result $param();
  267.         unset($this->keys[$key]);
  268.         return $result;
  269.     }
  270.     public function getTrace(string $key): array
  271.     {
  272.         $trace = isset($this->traces[$key]) ? array_keys($this->traces[$key]) : [];
  273.         unset($this->traces[$key]);
  274.         return $trace;
  275.     }
  276.     private function load(?string $salesChannelId): array
  277.     {
  278.         $key $salesChannelId ?? 'global';
  279.         if (isset($this->configs[$key])) {
  280.             return $this->configs[$key];
  281.         }
  282.         $this->configs[$key] = $this->loader->load($salesChannelId);
  283.         return $this->configs[$key];
  284.     }
  285.     /**
  286.      * @throws InvalidKeyException
  287.      * @throws InvalidUuidException
  288.      */
  289.     private function validate(string $key, ?string $salesChannelId): void
  290.     {
  291.         $key trim($key);
  292.         if ($key === '') {
  293.             throw new InvalidKeyException('key may not be empty');
  294.         }
  295.         if ($salesChannelId && !Uuid::isValid($salesChannelId)) {
  296.             throw new InvalidUuidException($salesChannelId);
  297.         }
  298.     }
  299.     private function getId(string $key, ?string $salesChannelId null): ?string
  300.     {
  301.         $criteria = new Criteria();
  302.         $criteria->addFilter(
  303.             new EqualsFilter('configurationKey'$key),
  304.             new EqualsFilter('salesChannelId'$salesChannelId)
  305.         );
  306.         $ids $this->systemConfigRepository->searchIds($criteriaContext::createDefaultContext())->getIds();
  307.         return array_shift($ids);
  308.     }
  309. }