-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⏫ Forwardport of #11809 to 2.3-develop branch
Applied pull request patch https://github.com/magento/magento2/pull/11809.patch (created by @nmalevanec) based on commit(s): 1. 38735ac 2. b63ceb9 3. 3e0c785 Fixed GitHub Issues in 2.3-develop branch: - #8003: Using System Value for Base Currency Results in Config Error (reported by @tsmith1985)
- Loading branch information
1 parent
8e77e2f
commit 49a3076
Showing
7 changed files
with
696 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
namespace Magento\Directory\Model; | ||
|
||
use Magento\Framework\App\Area; | ||
use Magento\Framework\App\Config\ScopeConfigInterface; | ||
use Magento\Framework\App\State; | ||
use Magento\Store\Model\ScopeInterface; | ||
use Magento\Store\Model\StoreManagerInterface; | ||
|
||
/** | ||
* Provide config values for allowed, base and default currencies. | ||
*/ | ||
class CurrencyConfig | ||
{ | ||
/** | ||
* @var State | ||
*/ | ||
private $appState; | ||
|
||
/** | ||
* @var ScopeConfigInterface | ||
*/ | ||
private $config; | ||
|
||
/** | ||
* @var StoreManagerInterface | ||
*/ | ||
private $storeManager; | ||
|
||
/** | ||
* CurrencyConfig constructor. | ||
* | ||
* @param State $appState | ||
* @param ScopeConfigInterface $config | ||
* @param StoreManagerInterface $storeManager | ||
*/ | ||
public function __construct( | ||
State $appState, | ||
ScopeConfigInterface $config, | ||
StoreManagerInterface $storeManager | ||
) { | ||
$this->appState = $appState; | ||
$this->config = $config; | ||
$this->storeManager = $storeManager; | ||
} | ||
|
||
/** | ||
* Retrieve config currency data by config path. | ||
* | ||
* @param string $path | ||
* @return array | ||
*/ | ||
public function getConfigCurrencies(string $path) | ||
{ | ||
$result = $this->appState->getAreaCode() === Area::AREA_ADMINHTML | ||
? $this->getConfigForAllStores($path) | ||
: $this->getConfigForCurrentStore($path); | ||
sort($result); | ||
|
||
return array_unique($result); | ||
} | ||
|
||
/** | ||
* Get allowed, base and default currency codes for all stores. | ||
* | ||
* @param string $path | ||
* @return array | ||
*/ | ||
private function getConfigForAllStores(string $path) | ||
{ | ||
$storesResult = [[]]; | ||
foreach ($this->storeManager->getStores() as $store) { | ||
$storesResult[] = explode( | ||
',', | ||
$this->config->getValue($path, ScopeInterface::SCOPE_STORE, $store->getCode()) | ||
); | ||
} | ||
|
||
return array_merge(...$storesResult); | ||
} | ||
|
||
/** | ||
* Get allowed, base and default currency codes for current store. | ||
* | ||
* @param string $path | ||
* @return mixed | ||
*/ | ||
private function getConfigForCurrentStore(string $path) | ||
{ | ||
$store = $this->storeManager->getStore(); | ||
|
||
return explode(',', $this->config->getValue($path, ScopeInterface::SCOPE_STORE, $store->getCode())); | ||
} | ||
} |
123 changes: 123 additions & 0 deletions
123
app/code/Magento/Directory/Model/CurrencySystemConfig.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
namespace Magento\Directory\Model; | ||
|
||
use Magento\Config\App\Config\Type\System; | ||
use Magento\Framework\App\ResourceConnection; | ||
use Magento\Store\Model\StoreManagerInterface; | ||
|
||
/** | ||
* Provide system config values for allowed, base and default currencies. | ||
*/ | ||
class CurrencySystemConfig | ||
{ | ||
/** | ||
* @var System | ||
*/ | ||
private $systemConfig; | ||
|
||
/** | ||
* @var StoreManagerInterface | ||
*/ | ||
private $storeManager; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
private $path; | ||
|
||
/** | ||
* Currency constructor. | ||
* | ||
* @param System $systemConfig | ||
* @param StoreManagerInterface $storeManager | ||
*/ | ||
public function __construct( | ||
System $systemConfig, | ||
StoreManagerInterface $storeManager, | ||
ResourceConnection $resources | ||
) { | ||
$this->systemConfig = $systemConfig; | ||
$this->storeManager = $storeManager; | ||
} | ||
|
||
/** | ||
* Retrieve config currency data by config path. | ||
* | ||
* @param string $path | ||
* @return array | ||
*/ | ||
public function getConfigCurrencies(string $path) | ||
{ | ||
$this->path = $path; | ||
$result = array_merge( | ||
$this->getDefaultConfigCurrencies(), | ||
$this->getWebsiteConfigCurrencies(), | ||
$this->getStoreConfigCurrencies() | ||
); | ||
sort($result); | ||
|
||
return array_unique($result); | ||
} | ||
|
||
/** | ||
* Get system config values as array for default scope. | ||
* | ||
* @return array | ||
*/ | ||
private function getDefaultConfigCurrencies() | ||
{ | ||
return $this->getConfig($this->path, 'default'); | ||
} | ||
|
||
/** | ||
* Get system config values as array for website scope. | ||
* | ||
* @return array | ||
*/ | ||
private function getWebsiteConfigCurrencies() | ||
{ | ||
$websiteResult = [[]]; | ||
foreach ($this->storeManager->getWebsites() as $website) { | ||
$websiteResult[] = $this->getConfig($this->path, 'websites', $website->getId()); | ||
} | ||
$websiteResult = array_merge(...$websiteResult); | ||
|
||
return $websiteResult; | ||
} | ||
|
||
/** | ||
* Get system config values as array for store scope. | ||
* | ||
* @return array | ||
*/ | ||
private function getStoreConfigCurrencies() | ||
{ | ||
$storeResult = [[]]; | ||
foreach ($this->storeManager->getStores() as $store) { | ||
$storeResult[] = $this->getConfig($this->path, 'stores', $store->getId()); | ||
} | ||
$storeResult = array_merge(...$storeResult); | ||
|
||
return $storeResult; | ||
} | ||
|
||
/** | ||
* Get system config values as array for specified scope. | ||
* | ||
* @param string $scope | ||
* @param string $scopeId | ||
* @param string $path | ||
* @return array | ||
*/ | ||
private function getConfig(string $path, string $scope, string $scopeId = null) | ||
{ | ||
$configPath = $scopeId ? sprintf('%s/%s/%s', $scope, $scopeId, $path) : sprintf('%s/%s', $scope, $path); | ||
|
||
return explode(',', $this->systemConfig->get($configPath)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.