-
-
Notifications
You must be signed in to change notification settings - Fork 437
/
Copy pathAddressController.php
188 lines (170 loc) · 6.47 KB
/
AddressController.php
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?php
/**
* OpenMage
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available at https://opensource.org/license/osl-3-0-php
*
* @category Mage
* @package Mage_Customer
* @copyright Copyright (c) 2006-2020 Magento, Inc. (https://www.magento.com)
* @copyright Copyright (c) 2020-2022 The OpenMage Contributors (https://www.openmage.org)
* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Customer address controller
*
* @category Mage
* @package Mage_Customer
*/
class Mage_Customer_AddressController extends Mage_Core_Controller_Front_Action
{
/**
* Retrieve customer session object
*
* @return Mage_Customer_Model_Session
*/
protected function _getSession()
{
return Mage::getSingleton('customer/session');
}
/**
* @inheritDoc
*/
public function preDispatch()
{
parent::preDispatch();
if (!Mage::getSingleton('customer/session')->authenticate($this)) {
$this->setFlag('', 'no-dispatch', true);
}
return $this;
}
/**
* Customer addresses list
*/
public function indexAction()
{
if (count($this->_getSession()->getCustomer()->getAddresses())) {
$this->loadLayout();
$this->_initLayoutMessages('customer/session');
$this->_initLayoutMessages('catalog/session');
$block = $this->getLayout()->getBlock('address_book');
if ($block) {
$block->setRefererUrl($this->_getRefererUrl());
}
$this->renderLayout();
} else {
$this->getResponse()->setRedirect(Mage::getUrl('*/*/new'));
}
}
public function editAction()
{
$this->_forward('form');
}
public function newAction()
{
$this->_forward('form');
}
/**
* Address book form
*/
public function formAction()
{
$this->loadLayout();
$this->_initLayoutMessages('customer/session');
$navigationBlock = $this->getLayout()->getBlock('customer_account_navigation');
if ($navigationBlock) {
$navigationBlock->setActive('customer/address');
}
$this->renderLayout();
}
/**
* @return Mage_Core_Controller_Varien_Action|void
*/
public function formPostAction()
{
if (!$this->_validateFormKey()) {
return $this->_redirect('*/*/');
}
// Save data
if ($this->getRequest()->isPost()) {
$customer = $this->_getSession()->getCustomer();
/** @var Mage_Customer_Model_Address $address */
$address = Mage::getModel('customer/address');
$addressId = $this->getRequest()->getParam('id');
if ($addressId) {
$existsAddress = $customer->getAddressById($addressId);
if ($existsAddress->getId() && $existsAddress->getCustomerId() == $customer->getId()) {
$address->setId($existsAddress->getId());
} else {
throw new Exception($this->__('Provided address does not belong to the logged in customer.'));
}
}
$errors = [];
/** @var Mage_Customer_Model_Form $addressForm */
$addressForm = Mage::getModel('customer/form');
$addressForm->setFormCode('customer_address_edit')
->setEntity($address);
$addressData = $addressForm->extractData($this->getRequest());
$addressErrors = $addressForm->validateData($addressData);
if ($addressErrors !== true) {
$errors = $addressErrors;
}
try {
$addressForm->compactData($addressData);
$address->setCustomerId($customer->getId())
->setIsDefaultBilling($this->getRequest()->getParam('default_billing', false))
->setIsDefaultShipping($this->getRequest()->getParam('default_shipping', false));
$addressErrors = $address->validate();
if ($addressErrors !== true) {
$errors = array_merge($errors, $addressErrors);
}
if (count($errors) === 0) {
$address->save();
$this->_getSession()->addSuccess($this->__('The address has been saved.'));
$this->_redirectSuccess(Mage::getUrl('*/*/index', ['_secure' => true]));
return;
} else {
$this->_getSession()->setAddressFormData($this->getRequest()->getPost());
foreach ($errors as $errorMessage) {
$this->_getSession()->addError($errorMessage);
}
}
} catch (Mage_Core_Exception $e) {
$this->_getSession()->setAddressFormData($this->getRequest()->getPost())
->addException($e, $e->getMessage());
} catch (Exception $e) {
$this->_getSession()->setAddressFormData($this->getRequest()->getPost())
->addException($e, $this->__('Cannot save address.'));
}
}
return $this->_redirectError(Mage::getUrl('*/*/edit', ['id' => $address->getId()]));
}
/**
* @return Mage_Core_Controller_Varien_Action|void
*/
public function deleteAction()
{
if (!$this->_validateFormKey()) {
return $this->_redirect('*/*/');
}
$addressId = $this->getRequest()->getParam('id', false);
if ($addressId) {
$address = Mage::getModel('customer/address')->load($addressId);
// Validate address_id <=> customer_id
if ($address->getCustomerId() != $this->_getSession()->getCustomerId()) {
$this->_getSession()->addError($this->__('The address does not belong to this customer.'));
$this->getResponse()->setRedirect(Mage::getUrl('*/*/index'));
return;
}
try {
$address->delete();
$this->_getSession()->addSuccess($this->__('The address has been deleted.'));
} catch (Exception $e) {
$this->_getSession()->addException($e, $this->__('An error occurred while deleting the address.'));
}
}
$this->getResponse()->setRedirect(Mage::getUrl('*/*/index'));
}
}