Skip to content

Commit

Permalink
Merge pull request #1580 from magento-engcom/2.2-develop-prs
Browse files Browse the repository at this point in the history
Public Pull Requests

#11291
#11155
  • Loading branch information
Oleksii Korshenko authored Oct 11, 2017
2 parents 9b87eb0 + d59493f commit fb05546
Show file tree
Hide file tree
Showing 8 changed files with 372 additions and 81 deletions.
42 changes: 42 additions & 0 deletions lib/internal/Magento/Framework/Config/Data/ConfigDataFactory.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/

namespace Magento\Framework\Config\Data;

use Magento\Framework\App\ObjectManager;
use Magento\Framework\ObjectManagerInterface;

/**
* Factory for ConfigData
*/
class ConfigDataFactory
{
/**
* @var ObjectManager
*/
private $objectManager;

/**
* Factory constructor
*
* @param ObjectManagerInterface $objectManager
*/
public function __construct(ObjectManagerInterface $objectManager)
{
$this->objectManager = $objectManager;
}

/**
* Returns a new instance of ConfigData on every call.
*
* @param string $fileKey
* @return ConfigData
*/
public function create($fileKey)
{
return $this->objectManager->create(ConfigData::class, ['fileKey' => $fileKey]);
}
}
10 changes: 7 additions & 3 deletions lib/internal/Magento/Framework/CurrencyInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -239,15 +239,19 @@ public function isLess($value, $currency = null);
/**
* Returns the set service class
*
* @return \Zend_Service
* @return \Zend_Currency_CurrencyInterface
* @deprecated
* @see \Magento\Directory\Model\Currency\Import\ImportInterface
*/
public function getService();

/**
* Sets a new exchange service
*
* @param string|\Magento\Framework\Locale\CurrencyInterface $service Service class
* @return \Magento\Framework\CurrencyInterface
* @param string|\Zend_Currency_CurrencyInterface $service Service class
* @return \Zend_Currency_CurrencyInterface
* @deprecated
* @see \Magento\Directory\Model\Currency\Import\ImportInterface
*/
public function setService($service);
}
143 changes: 81 additions & 62 deletions setup/src/Magento/Setup/Model/ConfigGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@

namespace Magento\Setup\Model;

use Magento\Framework\App\ObjectManager;
use Magento\Framework\Config\Data\ConfigData;
use Magento\Framework\Config\Data\ConfigDataFactory;
use Magento\Framework\Config\File\ConfigFilePool;
use Magento\Framework\Math\Random;
use Magento\Framework\App\DeploymentConfig;
use Magento\Framework\Config\ConfigOptionsListConstants;
use Magento\Framework\App\State;
use Magento\Framework\App\ObjectManagerFactory;
use Magento\Framework\Math\Random;

/**
* Creates deployment config data based on user input array
Expand All @@ -26,39 +27,58 @@ class ConfigGenerator
* @var array
*/
private static $paramMap = [
ConfigOptionsListConstants::INPUT_KEY_DB_HOST => ConfigOptionsListConstants::KEY_HOST,
ConfigOptionsListConstants::INPUT_KEY_DB_NAME => ConfigOptionsListConstants::KEY_NAME,
ConfigOptionsListConstants::INPUT_KEY_DB_USER => ConfigOptionsListConstants::KEY_USER,
ConfigOptionsListConstants::INPUT_KEY_DB_PASSWORD => ConfigOptionsListConstants::KEY_PASSWORD,
ConfigOptionsListConstants::INPUT_KEY_DB_PREFIX => ConfigOptionsListConstants::KEY_PREFIX,
ConfigOptionsListConstants::INPUT_KEY_DB_MODEL => ConfigOptionsListConstants::KEY_MODEL,
ConfigOptionsListConstants::INPUT_KEY_DB_ENGINE => ConfigOptionsListConstants::KEY_ENGINE,
ConfigOptionsListConstants::INPUT_KEY_DB_HOST => ConfigOptionsListConstants::KEY_HOST,
ConfigOptionsListConstants::INPUT_KEY_DB_NAME => ConfigOptionsListConstants::KEY_NAME,
ConfigOptionsListConstants::INPUT_KEY_DB_USER => ConfigOptionsListConstants::KEY_USER,
ConfigOptionsListConstants::INPUT_KEY_DB_PASSWORD => ConfigOptionsListConstants::KEY_PASSWORD,
ConfigOptionsListConstants::INPUT_KEY_DB_PREFIX => ConfigOptionsListConstants::KEY_PREFIX,
ConfigOptionsListConstants::INPUT_KEY_DB_MODEL => ConfigOptionsListConstants::KEY_MODEL,
ConfigOptionsListConstants::INPUT_KEY_DB_ENGINE => ConfigOptionsListConstants::KEY_ENGINE,
ConfigOptionsListConstants::INPUT_KEY_DB_INIT_STATEMENTS => ConfigOptionsListConstants::KEY_INIT_STATEMENTS,
ConfigOptionsListConstants::INPUT_KEY_ENCRYPTION_KEY => ConfigOptionsListConstants::KEY_ENCRYPTION_KEY,
ConfigOptionsListConstants::INPUT_KEY_SESSION_SAVE => ConfigOptionsListConstants::KEY_SAVE,
ConfigOptionsListConstants::INPUT_KEY_RESOURCE => ConfigOptionsListConstants::KEY_RESOURCE,
ConfigOptionsListConstants::INPUT_KEY_ENCRYPTION_KEY => ConfigOptionsListConstants::KEY_ENCRYPTION_KEY,
ConfigOptionsListConstants::INPUT_KEY_SESSION_SAVE => ConfigOptionsListConstants::KEY_SAVE,
ConfigOptionsListConstants::INPUT_KEY_RESOURCE => ConfigOptionsListConstants::KEY_RESOURCE,
];

/**
* @var DeploymentConfig
*/
protected $deploymentConfig;

/**
* @var Random
* @deprecated since 100.2.0
*/
protected $random;

/**
* @var DeploymentConfig
* @var ConfigDataFactory
*/
protected $deploymentConfig;
private $configDataFactory;

/**
* @var CryptKeyGeneratorInterface
*/
private $cryptKeyGenerator;

/**
* Constructor
*
* @param Random $random
* @param Random $random Deprecated since 100.2.0
* @param DeploymentConfig $deploymentConfig
* @param ConfigDataFactory|null $configDataFactory
* @param CryptKeyGeneratorInterface|null $cryptKeyGenerator
*/
public function __construct(Random $random, DeploymentConfig $deploymentConfig)
{
public function __construct(
Random $random,
DeploymentConfig $deploymentConfig,
ConfigDataFactory $configDataFactory = null,
CryptKeyGeneratorInterface $cryptKeyGenerator = null
) {
$this->random = $random;
$this->deploymentConfig = $deploymentConfig;
$this->configDataFactory = $configDataFactory ?? ObjectManager::getInstance()->get(ConfigDataFactory::class);
$this->cryptKeyGenerator = $cryptKeyGenerator ?? ObjectManager::getInstance()->get(CryptKeyGenerator::class);
}

/**
Expand All @@ -70,23 +90,17 @@ public function createCryptConfig(array $data)
{
$currentKey = $this->deploymentConfig->get(ConfigOptionsListConstants::CONFIG_PATH_CRYPT_KEY);

$configData = new ConfigData(ConfigFilePool::APP_ENV);
if (isset($data[ConfigOptionsListConstants::INPUT_KEY_ENCRYPTION_KEY])) {
if ($currentKey !== null) {
$key = $currentKey . "\n" . $data[ConfigOptionsListConstants::INPUT_KEY_ENCRYPTION_KEY];
} else {
$key = $data[ConfigOptionsListConstants::INPUT_KEY_ENCRYPTION_KEY];
}
$configData = $this->configDataFactory->create(ConfigFilePool::APP_ENV);

$configData->set(ConfigOptionsListConstants::CONFIG_PATH_CRYPT_KEY, $key);
} else {
if ($currentKey === null) {
$configData->set(
ConfigOptionsListConstants::CONFIG_PATH_CRYPT_KEY,
md5($this->random->getRandomString(ConfigOptionsListConstants::STORE_KEY_RANDOM_STRING_SIZE))
);
}
}
// Use given key if set, else use current
$key = $data[ConfigOptionsListConstants::INPUT_KEY_ENCRYPTION_KEY] ?? $currentKey;

// If there is no key given or currently set, generate a new one
$key = $key ?? $this->cryptKeyGenerator->generate();

// Chaining of ".. ?? .." is not used to keep it simpler to understand

$configData->set(ConfigOptionsListConstants::CONFIG_PATH_CRYPT_KEY, $key);

return $configData;
}
Expand All @@ -99,7 +113,7 @@ public function createCryptConfig(array $data)
*/
public function createSessionConfig(array $data)
{
$configData = new ConfigData(ConfigFilePool::APP_ENV);
$configData = $this->configDataFactory->create(ConfigFilePool::APP_ENV);

if (isset($data[ConfigOptionsListConstants::INPUT_KEY_SESSION_SAVE])) {
$configData->set(
Expand Down Expand Up @@ -132,7 +146,7 @@ public function createDefinitionsConfig(array $data)
*/
public function createDbConfig(array $data)
{
$configData = new ConfigData(ConfigFilePool::APP_ENV);
$configData = $this->configDataFactory->create(ConfigFilePool::APP_ENV);

$optional = [
ConfigOptionsListConstants::INPUT_KEY_DB_HOST,
Expand All @@ -151,25 +165,18 @@ public function createDbConfig(array $data)
);
}

$dbConnectionPrefix = ConfigOptionsListConstants::CONFIG_PATH_DB_CONNECTION_DEFAULT . '/';

foreach ($optional as $key) {
if (isset($data[$key])) {
$configData->set(
ConfigOptionsListConstants::CONFIG_PATH_DB_CONNECTION_DEFAULT . '/' . self::$paramMap[$key],
$data[$key]
);
$configData->set($dbConnectionPrefix . self::$paramMap[$key], $data[$key]);
}
}

$currentStatus = $this->deploymentConfig->get(
ConfigOptionsListConstants::CONFIG_PATH_DB_CONNECTION_DEFAULT . '/' . ConfigOptionsListConstants::KEY_ACTIVE
);
$currentStatus = $this->deploymentConfig->get($dbConnectionPrefix . ConfigOptionsListConstants::KEY_ACTIVE);

if ($currentStatus === null) {
$configData->set(
ConfigOptionsListConstants::CONFIG_PATH_DB_CONNECTION_DEFAULT
. '/' . ConfigOptionsListConstants::KEY_ACTIVE,
'1'
);
$configData->set($dbConnectionPrefix . ConfigOptionsListConstants::KEY_ACTIVE, '1');
}

return $configData;
Expand All @@ -182,7 +189,7 @@ public function createDbConfig(array $data)
*/
public function createResourceConfig()
{
$configData = new ConfigData(ConfigFilePool::APP_ENV);
$configData = $this->configDataFactory->create(ConfigFilePool::APP_ENV);

if ($this->deploymentConfig->get(ConfigOptionsListConstants::CONFIG_PATH_RESOURCE_DEFAULT_SETUP) === null) {
$configData->set(ConfigOptionsListConstants::CONFIG_PATH_RESOURCE_DEFAULT_SETUP, 'default');
Expand All @@ -198,10 +205,12 @@ public function createResourceConfig()
*/
public function createXFrameConfig()
{
$configData = new ConfigData(ConfigFilePool::APP_ENV);
$configData = $this->configDataFactory->create(ConfigFilePool::APP_ENV);

if ($this->deploymentConfig->get(ConfigOptionsListConstants::CONFIG_PATH_X_FRAME_OPT) === null) {
$configData->set(ConfigOptionsListConstants::CONFIG_PATH_X_FRAME_OPT, 'SAMEORIGIN');
}

return $configData;
}

Expand All @@ -212,10 +221,12 @@ public function createXFrameConfig()
*/
public function createModeConfig()
{
$configData = new ConfigData(ConfigFilePool::APP_ENV);
$configData = $this->configDataFactory->create(ConfigFilePool::APP_ENV);

if ($this->deploymentConfig->get(State::PARAM_MODE) === null) {
$configData->set(State::PARAM_MODE, State::MODE_DEFAULT);
}

return $configData;
}

Expand All @@ -227,21 +238,29 @@ public function createModeConfig()
*/
public function createCacheHostsConfig(array $data)
{
$configData = new ConfigData(ConfigFilePool::APP_ENV);
$configData = $this->configDataFactory->create(ConfigFilePool::APP_ENV);

if (isset($data[ConfigOptionsListConstants::INPUT_KEY_CACHE_HOSTS])) {
$hostData = explode(',', $data[ConfigOptionsListConstants::INPUT_KEY_CACHE_HOSTS]);
$hosts = [];
foreach ($hostData as $data) {
$dataArray = explode(':', trim($data));
$host = [];
$host['host'] = $dataArray[0];
if (isset($dataArray[1])) {
$host['port'] = $dataArray[1];
}
$hosts[] = $host;
}
$hosts = explode(',', $data[ConfigOptionsListConstants::INPUT_KEY_CACHE_HOSTS]);

$hosts = array_map(
function ($hostData) {
$hostDataParts = explode(':', trim($hostData));

$tmp = ['host' => $hostDataParts[0]];

if (isset($hostDataParts[1])) {
$tmp['port'] = $hostDataParts[1];
}

return $tmp;
},
$hosts
);

$configData->set(ConfigOptionsListConstants::CONFIG_PATH_CACHE_HOSTS, $hosts);
}

$configData->setOverrideWhenSave(true);
return $configData;
}
Expand Down
55 changes: 55 additions & 0 deletions setup/src/Magento/Setup/Model/CryptKeyGenerator.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/

namespace Magento\Setup\Model;

use Magento\Framework\Config\ConfigOptionsListConstants;
use Magento\Framework\Math\Random;

/**
* Generates a crypt
*/
class CryptKeyGenerator implements CryptKeyGeneratorInterface
{
/**
* @var Random
*/
private $random;

/**
* CryptKeyGenerator constructor.
*
* @param Random $random
*/
public function __construct(Random $random)
{
$this->random = $random;
}

/**
* Generates & returns a string to be used as crypt key.
*
* The key length is not a parameter, but an implementation detail.
*
* @return string
*
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function generate()
{
return md5($this->getRandomString());
}

/**
* Returns a random string.
*
* @return string
*/
private function getRandomString()
{
return $this->random->getRandomString(ConfigOptionsListConstants::STORE_KEY_RANDOM_STRING_SIZE);
}
}
22 changes: 22 additions & 0 deletions setup/src/Magento/Setup/Model/CryptKeyGeneratorInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/

namespace Magento\Setup\Model;

/**
* Interface for crypt key generators.
*/
interface CryptKeyGeneratorInterface
{
/**
* Generates & returns a string to be used as crypt key.
*
* The key length is not a parameter, but an implementation detail.
*
* @return string
*/
public function generate();
}
Loading

0 comments on commit fb05546

Please sign in to comment.