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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?php
declare(strict_types=1);
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Customer\Controller\Adminhtml\Address;
use Magento\Backend\App\Action;
use Magento\Framework\App\Action\HttpPostActionInterface;
use Magento\Framework\Controller\Result\Json;
use Magento\Framework\Controller\Result\JsonFactory;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Exception\NoSuchEntityException;
use Psr\Log\LoggerInterface;
/**
* Class for saving of customer address
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class Save extends Action implements HttpPostActionInterface
{
/**
* Authorization level of a basic admin session
*
* @see _isAllowed()
*/
public const ADMIN_RESOURCE = 'Magento_Customer::manage';
/**
* @var \Magento\Customer\Api\AddressRepositoryInterface
*/
private $addressRepository;
/**
* @var \Magento\Customer\Model\Metadata\FormFactory
*/
private $formFactory;
/**
* @var \Magento\Customer\Api\CustomerRepositoryInterface
*/
private $customerRepository;
/**
* @var \Magento\Framework\Api\DataObjectHelper
*/
private $dataObjectHelper;
/**
* @var \Magento\Customer\Api\Data\AddressInterfaceFactory
*/
private $addressDataFactory;
/**
* @var LoggerInterface
*/
private $logger;
/**
* @var JsonFactory
*/
private $resultJsonFactory;
/**
* @param Action\Context $context
* @param \Magento\Customer\Api\AddressRepositoryInterface $addressRepository
* @param \Magento\Customer\Model\Metadata\FormFactory $formFactory
* @param \Magento\Customer\Api\CustomerRepositoryInterface $customerRepository
* @param \Magento\Framework\Api\DataObjectHelper $dataObjectHelper
* @param \Magento\Customer\Api\Data\AddressInterfaceFactory $addressDataFactory
* @param LoggerInterface $logger
* @param JsonFactory $resultJsonFactory
*/
public function __construct(
Action\Context $context,
\Magento\Customer\Api\AddressRepositoryInterface $addressRepository,
\Magento\Customer\Model\Metadata\FormFactory $formFactory,
\Magento\Customer\Api\CustomerRepositoryInterface $customerRepository,
\Magento\Framework\Api\DataObjectHelper $dataObjectHelper,
\Magento\Customer\Api\Data\AddressInterfaceFactory $addressDataFactory,
LoggerInterface $logger,
JsonFactory $resultJsonFactory
) {
parent::__construct($context);
$this->addressRepository = $addressRepository;
$this->formFactory = $formFactory;
$this->customerRepository = $customerRepository;
$this->dataObjectHelper = $dataObjectHelper;
$this->addressDataFactory = $addressDataFactory;
$this->logger = $logger;
$this->resultJsonFactory = $resultJsonFactory;
}
/**
* Save customer address action
*
* @return Json
*/
public function execute(): Json
{
$customerId = $this->getRequest()->getParam('parent_id', false);
$addressId = $this->getRequest()->getParam('entity_id', false);
$error = false;
try {
/** @var \Magento\Customer\Api\Data\CustomerInterface $customer */
$customer = $this->customerRepository->getById($customerId);
$addressForm = $this->formFactory->create(
'customer_address',
'adminhtml_customer_address',
[],
false,
false
);
$addressData = $addressForm->extractData($this->getRequest());
$addressData = $addressForm->compactData($addressData);
$addressData['region'] = [
'region' => $addressData['region'] ?? null,
'region_id' => $addressData['region_id'] ?? null,
];
$addressToSave = $this->addressDataFactory->create();
$this->dataObjectHelper->populateWithArray(
$addressToSave,
$addressData,
\Magento\Customer\Api\Data\AddressInterface::class
);
$addressToSave->setCustomerId($customer->getId());
$addressToSave->setIsDefaultBilling(
(bool)$this->getRequest()->getParam('default_billing', false)
);
$addressToSave->setIsDefaultShipping(
(bool)$this->getRequest()->getParam('default_shipping', false)
);
if ($addressId) {
$addressToSave->setId($addressId);
$message = __('Customer address has been updated.');
} else {
$addressToSave->setId(null);
$message = __('New customer address has been added.');
}
$savedAddress = $this->addressRepository->save($addressToSave);
$addressId = $savedAddress->getId();
} catch (NoSuchEntityException $e) {
$this->logger->critical($e);
$error = true;
$message = __('There is no customer with such id.');
} catch (LocalizedException $e) {
$error = true;
$message = __($e->getMessage());
$this->logger->critical($e);
} catch (\Exception $e) {
$error = true;
$message = __('We can\'t change customer address right now.');
$this->logger->critical($e);
}
$addressId = empty($addressId) ? null : $addressId;
$resultJson = $this->resultJsonFactory->create();
$resultJson->setData(
[
'message' => $message,
'error' => $error,
'data' => [
'entity_id' => $addressId
]
]
);
return $resultJson;
}
}