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
<?php
/**
*
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Tax\Model\Layout;
use Magento\PageCache\Model\DepersonalizeChecker;
/**
* Class DepersonalizePlugin
*/
class DepersonalizePlugin
{
/**
* @var DepersonalizeChecker
*/
protected $depersonalizeChecker;
/**
* @var \Magento\Customer\Model\Session
*/
protected $customerSession;
/**
* @var array
*/
protected $defaultTaxShippingAddress;
/**
* @var array
*/
protected $defaultTaxBillingAddress;
/**
* @var int
*/
protected $customerTaxClassId;
/**
* @param DepersonalizeChecker $depersonalizeChecker
* @param \Magento\Customer\Model\Session $customerSession
*/
public function __construct(
DepersonalizeChecker $depersonalizeChecker,
\Magento\Customer\Model\Session $customerSession
) {
$this->customerSession = $customerSession;
$this->depersonalizeChecker = $depersonalizeChecker;
}
/**
* Before generate Xml
*
* @param \Magento\Framework\View\LayoutInterface $subject
* @return array
*/
public function beforeGenerateXml(\Magento\Framework\View\LayoutInterface $subject)
{
if ($this->depersonalizeChecker->checkIfDepersonalize($subject)) {
$this->defaultTaxBillingAddress = $this->customerSession->getDefaultTaxBillingAddress();
$this->defaultTaxShippingAddress = $this->customerSession->getDefaultTaxShippingAddress();
$this->customerTaxClassId = $this->customerSession->getCustomerTaxClassId();
}
return [];
}
/**
* After generate Xml
*
* @param \Magento\Framework\View\LayoutInterface $subject
* @param \Magento\Framework\View\LayoutInterface $result
* @return \Magento\Framework\View\LayoutInterface
*/
public function afterGenerateXml(\Magento\Framework\View\LayoutInterface $subject, $result)
{
if ($this->depersonalizeChecker->checkIfDepersonalize($subject)) {
$this->customerSession->setDefaultTaxBillingAddress($this->defaultTaxBillingAddress);
$this->customerSession->setDefaultTaxShippingAddress($this->defaultTaxShippingAddress);
$this->customerSession->setCustomerTaxClassId($this->customerTaxClassId);
}
return $result;
}
}