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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Customer\Model\Delegation;
use Magento\Customer\Api\Data\AddressInterface;
use Magento\Customer\Api\Data\CustomerInterface;
use Magento\Customer\Api\Data\RegionInterface;
use Magento\Customer\Api\Data\RegionInterfaceFactory;
use Magento\Customer\Model\Delegation\Data\NewOperation;
use Magento\Customer\Model\Data\Customer;
use Magento\Customer\Model\Data\Address;
use Magento\Customer\Model\Session;
use Magento\Customer\Model\Session\Proxy as SessionProxy;
use Magento\Customer\Model\Delegation\Data\NewOperationFactory;
use Magento\Customer\Api\Data\CustomerInterfaceFactory;
use Magento\Customer\Api\Data\AddressInterfaceFactory;
use Psr\Log\LoggerInterface;
/**
* Store data for delegated operations.
*/
class Storage
{
/**
* @var Session
*/
private $session;
/**
* @var NewOperationFactory
*/
private $newFactory;
/**
* @var CustomerInterfaceFactory
*/
private $customerFactory;
/**
* @var AddressInterfaceFactory
*/
private $addressFactory;
/**
* @var RegionInterfaceFactory
*/
private $regionFactory;
/**
* @var LoggerInterface
*/
private $logger;
/**
* @param NewOperationFactory $newFactory
* @param CustomerInterfaceFactory $customerFactory
* @param AddressInterfaceFactory $addressFactory
* @param RegionInterfaceFactory $regionFactory
* @param LoggerInterface $logger
* @param SessionProxy $session
*/
public function __construct(
NewOperationFactory $newFactory,
CustomerInterfaceFactory $customerFactory,
AddressInterfaceFactory $addressFactory,
RegionInterfaceFactory $regionFactory,
LoggerInterface $logger,
SessionProxy $session
) {
$this->newFactory = $newFactory;
$this->customerFactory = $customerFactory;
$this->addressFactory = $addressFactory;
$this->regionFactory = $regionFactory;
$this->logger = $logger;
$this->session = $session;
}
/**
* Store data for new account operation.
*
* @param CustomerInterface $customer
* @param array $delegatedData
*
* @return void
*/
public function storeNewOperation(CustomerInterface $customer, array $delegatedData): void
{
/** @var Customer $customer */
$customerData = $customer->__toArray();
$addressesData = [];
if ($customer->getAddresses()) {
/** @var Address $address */
foreach ($customer->getAddresses() as $address) {
$addressesData[] = $address->__toArray();
}
}
$this->session->setCustomerFormData($customerData);
$this->session->setDelegatedNewCustomerData([
'customer' => $customerData,
'addresses' => $addressesData,
'delegated_data' => $delegatedData,
]);
}
/**
* Retrieve delegated new operation data and mark it as used.
*
* @return NewOperation|null
*/
public function consumeNewOperation()
{
try {
$serialized = $this->session->getDelegatedNewCustomerData(true);
} catch (\Throwable $exception) {
$this->logger->error($exception);
$serialized = null;
}
if ($serialized === null) {
return null;
}
/** @var AddressInterface[] $addresses */
$addresses = [];
foreach ($serialized['addresses'] as $addressData) {
if (isset($addressData['region'])) {
/** @var RegionInterface $region */
$region = $this->regionFactory->create(
['data' => $addressData['region']]
);
$addressData['region'] = $region;
}
$addresses[] = $this->addressFactory->create(
['data' => $addressData]
);
}
$customerData = $serialized['customer'];
$customerData['addresses'] = $addresses;
return $this->newFactory->create([
'customer' => $this->customerFactory->create(
['data' => $customerData]
),
'additionalData' => $serialized['delegated_data'],
]);
}
}