1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Customer\Setup\Patch\Data;
use Magento\Customer\Setup\CustomerSetupFactory;
use Magento\Framework\Encryption\Encryptor;
use Magento\Framework\App\ResourceConnection;
use Magento\Framework\Setup\ModuleDataSetupInterface;
use Magento\Framework\Setup\Patch\DataPatchInterface;
use Magento\Framework\Setup\Patch\PatchVersionInterface;
/**
* Class UpgradePasswordHashAndAddress
* @package Magento\Customer\Setup\Patch
*/
class UpgradePasswordHashAndAddress implements DataPatchInterface, PatchVersionInterface
{
/**
* @var ModuleDataSetupInterface
*/
private $moduleDataSetup;
/**
* @var CustomerSetupFactory
*/
private $customerSetupFactory;
/**
* UpgradePasswordHashAndAddress constructor.
* @param ModuleDataSetupInterface $moduleDataSetup
* @param CustomerSetupFactory $customerSetupFactory
*/
public function __construct(
ModuleDataSetupInterface $moduleDataSetup,
CustomerSetupFactory $customerSetupFactory
) {
$this->moduleDataSetup = $moduleDataSetup;
$this->customerSetupFactory = $customerSetupFactory;
}
/**
* {@inheritdoc}
*/
public function apply()
{
$this->upgradeHash();
$entityAttributes = [
'customer_address' => [
'fax' => [
'is_visible' => false,
'is_system' => false,
],
],
];
$customerSetup = $this->customerSetupFactory->create(['setup' => $this->moduleDataSetup]);
$customerSetup->upgradeAttributes($entityAttributes);
}
/**
* @return void
*/
private function upgradeHash()
{
$customerEntityTable = $this->moduleDataSetup->getTable('customer_entity');
$select = $this->moduleDataSetup->getConnection()->select()->from(
$customerEntityTable,
['entity_id', 'password_hash']
);
$customers = $this->moduleDataSetup->getConnection()->fetchAll($select);
foreach ($customers as $customer) {
if ($customer['password_hash'] === null) {
continue;
}
list($hash, $salt) = explode(Encryptor::DELIMITER, $customer['password_hash']);
$newHash = $customer['password_hash'];
if (strlen($hash) === 32) {
$newHash = implode(Encryptor::DELIMITER, [$hash, $salt, Encryptor::HASH_VERSION_MD5]);
} elseif (strlen($hash) === 64) {
$newHash = implode(Encryptor::DELIMITER, [$hash, $salt, Encryptor::HASH_VERSION_SHA256]);
}
$bind = ['password_hash' => $newHash];
$where = ['entity_id = ?' => (int)$customer['entity_id']];
$this->moduleDataSetup->getConnection()->update($customerEntityTable, $bind, $where);
}
}
/**
* {@inheritdoc}
*/
public static function getDependencies()
{
return [
AddCustomerUpdatedAtAttribute::class,
];
}
/**
* {@inheritdoc}
*/
public static function getVersion()
{
return '2.0.5';
}
/**
* {@inheritdoc}
*/
public function getAliases()
{
return [];
}
}