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

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