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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?php
/**
* This file is part of the Klarna KP module
*
* (c) Klarna Bank AB (publ)
*
* For the full copyright and license information, please view the NOTICE
* and LICENSE files that were distributed with this source code.
*/
namespace Klarna\Kp\Model;
use Klarna\Kp\Api\CreditApiInterface;
use Klarna\Kp\Api\QuoteInterface;
use Klarna\Kp\Api\QuoteRepositoryInterface;
use Klarna\Kp\Model\ResourceModel\Quote as QuoteResource;
use Magento\Framework\Exception\CouldNotSaveException;
use Magento\Framework\Exception\NoSuchEntityException;
use Magento\Quote\Api\Data\CartInterface as MageQuoteInterface;
/**
* Class QuoteRepository
*
* @package Klarna\Kp\Model
*/
class QuoteRepository implements QuoteRepositoryInterface
{
/**
* @var QuoteFactory
*/
private $quoteFactory;
/**
* @var QuoteResource
*/
private $resourceModel;
/**
* Holds a cache of instances to avoid unnecessary db and API calls
*
* @var array
*/
private $instancesById = [];
/**
* Holds a cache of instances to avoid unnecessary db and API calls
*
* @var array
*/
private $instances = [];
/**
* @var CreditApiInterface
*/
private $api;
/**
* QuoteRepository constructor.
*
* @param QuoteFactory $quoteFactory
* @param QuoteResource $resourceModel
* @param CreditApiInterface $api
* @codeCoverageIgnore
*/
public function __construct(
QuoteFactory $quoteFactory,
QuoteResource $resourceModel,
CreditApiInterface $api
) {
$this->quoteFactory = $quoteFactory;
$this->resourceModel = $resourceModel;
$this->api = $api;
}
/**
* Get quote by Magento quote
*
* @param MageQuoteInterface $mageQuote
* @return QuoteInterface
* @throws \Magento\Framework\Exception\NoSuchEntityException
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function getActiveByQuote(MageQuoteInterface $mageQuote)
{
$quoteId = $this->resourceModel->getActiveByQuote($mageQuote);
if (!$quoteId) {
throw NoSuchEntityException::singleField('quote_id', $mageQuote->getId());
}
return $this->loadQuote('load', 'payments_quote_id', $quoteId);
}
/**
* Load quote with different methods
*
* @param string $loadMethod
* @param string $loadField
* @param int $identifier
* @throws NoSuchEntityException
* @return QuoteInterface
*/
public function loadQuote($loadMethod, $loadField, $identifier)
{
/** @var QuoteInterface $quote */
$quote = $this->quoteFactory->create();
$quote->$loadMethod($identifier, $loadField);
if (!$quote->getId()) {
throw NoSuchEntityException::singleField($loadField, $identifier);
}
return $quote;
}
/**
* Delete quote by ID
*
* @param int $id
* @return void
* @throws \Magento\Framework\Exception\NoSuchEntityException
*/
public function deleteById($id)
{
$this->delete($this->getById($id));
}
/**
* Delete quote
*
* @param QuoteInterface $quote
* @return void
*/
public function delete(QuoteInterface $quote)
{
$quoteId = $quote->getId();
$sessionId = $quote->getSessionId();
$authToken = $quote->getAuthorizationToken();
if ($authToken) { // Only need to call cancel if the Authorization Token is set
$this->api->cancelOrder($authToken, $sessionId);
}
$this->resourceModel->delete($quote);
unset($this->instances[$sessionId]);
unset($this->instancesById[$quoteId]);
}
/**
* Get quote by ID
*
* @param int $quoteId
* @param bool $forceReload
* @return QuoteInterface
* @throws \Magento\Framework\Exception\NoSuchEntityException
*/
public function getById($quoteId, $forceReload = false)
{
if (!isset($this->instancesById[$quoteId]) || $forceReload) {
/** @var QuoteInterface $quote */
$quote = $this->loadQuote('load', 'payments_quote_id', $quoteId);
$this->cacheInstance($quote);
}
return $this->instancesById[$quoteId];
}
/**
* Cache instance locally in memory to avoid additional DB calls
*
* @param QuoteInterface $quote
*/
private function cacheInstance(QuoteInterface $quote)
{
$this->instancesById[$quote->getId()] = $quote;
$this->instances[$quote->getSessionId()] = $quote;
}
/**
* Mark quote as inactive and cancel it with API
*
* @param QuoteInterface $quote
*/
public function markInactive(QuoteInterface $quote)
{
$quote->setIsActive(0);
$this->save($quote);
if ($quote->getAuthorizationToken()) {
$this->api->cancelOrder($quote->getAuthorizationToken(), $quote->getSessionId());
}
}
/**
* Save Klarna Quote
*
* @param QuoteInterface $quote
* @return \Klarna\Kp\Api\QuoteInterface
* @throws CouldNotSaveException
*/
public function save(QuoteInterface $quote)
{
try {
return $this->resourceModel->save($quote);
} catch (\Exception $e) {
throw new CouldNotSaveException(__($e->getMessage()));
}
}
/**
* Load quote by session_id
*
* @param string $sessionId
* @param bool $forceReload
* @return QuoteInterface
* @throws \Magento\Framework\Exception\NoSuchEntityException
*/
public function getBySessionId($sessionId, $forceReload = false)
{
if ($forceReload || !isset($this->instances[$sessionId])) {
$quote = $this->loadQuote('load', 'session_id', $sessionId);
$this->cacheInstance($quote);
}
return $this->instances[$sessionId];
}
}