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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Paypal\Model\Express;
use Magento\Quote\Model\QuoteRepository\SaveHandler;
use Magento\Quote\Api\Data\CartInterface;
use Magento\Quote\Model\Quote\ProductOptionFactory;
/**
* Plugin for Magento\Quote\Model\QuoteRepository\SaveHandler
* replaces cart item product options for disabled quote
* which prevents it to be processed after placement of order
* via PayPal Express payment solution.
*/
class QuotePlugin
{
/**
* @var ProductOptionFactory
*/
private $productOptionFactory;
/**
* @param ProductOptionFactory $productOptionFactory
*/
public function __construct(
ProductOptionFactory $productOptionFactory
) {
$this->productOptionFactory = $productOptionFactory;
}
/**
* Replace cart item product options for disabled quote.
*
* @param SaveHandler $subject
* @param CartInterface $quote
* @return array
* @see MAGETWO-70500
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function beforeSave(SaveHandler $subject, CartInterface $quote)
{
if (!$quote->getIsActive()) {
$items = $quote->getItems();
if ($items) {
foreach ($items as $item) {
/** @var \Magento\Quote\Model\Quote\Item $item */
if (!$item->isDeleted()) {
$item->setProductOption($this->productOptionFactory->create());
}
}
}
}
return [$quote];
}
}