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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Paypal\Model\Billing;
use Magento\Sales\Model\Order\Payment;
/**
* Billing Agreement abstract model
*
* @api
* @method int getCustomerId()
* @method \Magento\Paypal\Model\Billing\Agreement setCustomerId(int $value)
* @method string getMethodCode()
* @method \Magento\Paypal\Model\Billing\Agreement setMethodCode(string $value)
* @method string getReferenceId()
* @method \Magento\Paypal\Model\Billing\Agreement setReferenceId(string $value)
* @method string getStatus()
* @method \Magento\Paypal\Model\Billing\Agreement setStatus(string $value)
* @method string getCreatedAt()
* @method \Magento\Paypal\Model\Billing\Agreement setCreatedAt(string $value)
* @method string getUpdatedAt()
* @method \Magento\Paypal\Model\Billing\Agreement setUpdatedAt(string $value)
* @method int getStoreId()
* @method \Magento\Paypal\Model\Billing\Agreement setStoreId(int $value)
* @method string getAgreementLabel()
* @method \Magento\Paypal\Model\Billing\Agreement setAgreementLabel(string $value)
*
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
* @since 100.0.2
*/
class Agreement extends \Magento\Paypal\Model\Billing\AbstractAgreement
{
const STATUS_ACTIVE = 'active';
const STATUS_CANCELED = 'canceled';
/**
* Related agreement orders
*
* @var array
*/
protected $_relatedOrders = [];
/**
* @var \Magento\Paypal\Model\ResourceModel\Billing\Agreement\CollectionFactory
*/
protected $_billingAgreementFactory;
/**
* @var \Magento\Framework\Stdlib\DateTime\DateTimeFactory
*/
protected $_dateFactory;
/**
* @param \Magento\Framework\Model\Context $context
* @param \Magento\Framework\Registry $registry
* @param \Magento\Payment\Helper\Data $paymentData
* @param \Magento\Paypal\Model\ResourceModel\Billing\Agreement\CollectionFactory $billingAgreementFactory
* @param \Magento\Framework\Stdlib\DateTime\DateTimeFactory $dateFactory
* @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource
* @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection
* @param array $data
*/
public function __construct(
\Magento\Framework\Model\Context $context,
\Magento\Framework\Registry $registry,
\Magento\Payment\Helper\Data $paymentData,
\Magento\Paypal\Model\ResourceModel\Billing\Agreement\CollectionFactory $billingAgreementFactory,
\Magento\Framework\Stdlib\DateTime\DateTimeFactory $dateFactory,
\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null,
\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null,
array $data = []
) {
parent::__construct($context, $registry, $paymentData, $resource, $resourceCollection, $data);
$this->_billingAgreementFactory = $billingAgreementFactory;
$this->_dateFactory = $dateFactory;
}
/**
* Init model
*
* @return void
*/
protected function _construct()
{
$this->_init(\Magento\Paypal\Model\ResourceModel\Billing\Agreement::class);
}
/**
* Set created_at parameter
*
* @return \Magento\Framework\Model\AbstractModel
*/
public function beforeSave()
{
$date = $this->_dateFactory->create()->gmtDate();
if ($this->isObjectNew() && !$this->getCreatedAt()) {
$this->setCreatedAt($date);
} else {
$this->setUpdatedAt($date);
}
return parent::beforeSave();
}
/**
* Save agreement order relations
*
* @return \Magento\Framework\Model\AbstractModel
*/
public function afterSave()
{
if (!empty($this->_relatedOrders)) {
$this->_saveOrderRelations();
}
return parent::afterSave();
}
/**
* Retrieve billing agreement status label
*
* @return \Magento\Framework\Phrase|string
*/
public function getStatusLabel()
{
switch ($this->getStatus()) {
case self::STATUS_ACTIVE:
return __('Active');
case self::STATUS_CANCELED:
return __('Canceled');
default:
return '';
}
}
/**
* Initialize token
*
* @return string
*/
public function initToken()
{
$this->getPaymentMethodInstance()
->initBillingAgreementToken($this);
return $this->getRedirectUrl();
}
/**
* Get billing agreement details
* Data from response is inside this object
*
* @return $this
*/
public function verifyToken()
{
$this->getPaymentMethodInstance()
->getBillingAgreementTokenInfo($this);
return $this;
}
/**
* Create billing agreement
*
* @return $this
*/
public function place()
{
$this->verifyToken();
$paymentMethodInstance = $this->getPaymentMethodInstance();
$paymentMethodInstance->placeBillingAgreement($this);
$this->setCustomerId($this->getCustomerId())
->setMethodCode($this->getMethodCode())
->setReferenceId($this->getBillingAgreementId())
->setStatus(self::STATUS_ACTIVE)
->setAgreementLabel($paymentMethodInstance->getTitle())
->save();
return $this;
}
/**
* Cancel billing agreement
*
* @return $this
*/
public function cancel()
{
$this->setStatus(self::STATUS_CANCELED);
$this->getPaymentMethodInstance()->updateBillingAgreementStatus($this);
return $this->save();
}
/**
* Check whether can cancel billing agreement
*
* @return bool
*/
public function canCancel()
{
return $this->getStatus() != self::STATUS_CANCELED;
}
/**
* Retrieve billing agreement statuses array
*
* @return array
*/
public function getStatusesArray()
{
return [
self::STATUS_ACTIVE => __('Active'),
self::STATUS_CANCELED => __('Canceled')
];
}
/**
* Validate data
*
* @return bool
*/
public function isValid()
{
$result = parent::isValid();
if (!$this->getCustomerId()) {
$this->_errors[] = __('The customer ID is not set.');
}
if (!$this->getStatus()) {
$this->_errors[] = __('The Billing Agreement status is not set.');
}
return $result && empty($this->_errors);
}
/**
* Import payment data to billing agreement
*
* $payment->getBillingAgreementData() contains array with following structure :
* [billing_agreement_id] => string
* [method_code] => string
*
* @param Payment $payment
* @return $this
*/
public function importOrderPayment(Payment $payment)
{
$baData = $payment->getBillingAgreementData();
$this->_paymentMethodInstance = (isset($baData['method_code']))
? $this->_paymentData->getMethodInstance($baData['method_code'])
: $payment->getMethodInstance();
$this->_paymentMethodInstance->setStore($payment->getMethodInstance()->getStore());
$this->setCustomerId($payment->getOrder()->getCustomerId())
->setMethodCode($this->_paymentMethodInstance->getCode())
->setReferenceId($baData['billing_agreement_id'])
->setStatus(self::STATUS_ACTIVE)
->setAgreementLabel($this->_paymentMethodInstance->getTitle());
return $this;
}
/**
* Retrieve available customer Billing Agreements
*
* @param int $customerId
* @return \Magento\Paypal\Model\ResourceModel\Billing\Agreement\Collection
*/
public function getAvailableCustomerBillingAgreements($customerId)
{
$collection = $this->_billingAgreementFactory->create();
$collection->addFieldToFilter('customer_id', $customerId)
->addFieldToFilter('status', self::STATUS_ACTIVE)
->setOrder('agreement_id');
return $collection;
}
/**
* Check whether need to create billing agreement for customer
*
* @param int $customerId
* @return bool
*/
public function needToCreateForCustomer($customerId)
{
return $customerId ? count($this->getAvailableCustomerBillingAgreements($customerId)) == 0 : false;
}
/**
* Add order relation to current billing agreement
*
* @param int|\Magento\Sales\Model\Order $orderId
* @return $this
*/
public function addOrderRelation($orderId)
{
$this->_relatedOrders[] = $orderId;
return $this;
}
/**
* Save related orders
*
* @return void
*/
protected function _saveOrderRelations()
{
foreach ($this->_relatedOrders as $order) {
$orderId = $order instanceof \Magento\Sales\Model\Order ? $order->getId() : (int)$order;
$this->getResource()->addOrderRelation($this->getId(), $orderId);
}
}
}