-
Notifications
You must be signed in to change notification settings - Fork 6
/
Subscription.php
145 lines (128 loc) · 5.4 KB
/
Subscription.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
<?php
namespace Tco\Source\Api\Rest\V6;
use Tco\Exceptions\TcoException;
class Subscription {
private $core;
private $acceptedSearchSubscriptionParams = array(
'SubscriptionReference',
'CustomerEmail',
'DeliveredCode',
'AvangateCustomerReference',
'ExternalCustomerReference',
'Aggregate',
'SubscriptionEnabled',
'RecurringEnabled',
'ProductCodes',
'CountryCodes',
'PurchasedAfter',
'PurchasedBefore',
'ExpireAfter',
'ExpireBefore',
'RenewedAfter',
'RenewedBefore',
'NotificationAfter',
'NotificationBefore',
'ModifiedAfter',
'ModifiedBefore',
'NextBillingDateAfter',
'NextBillingDateBefore',
'LifetimeSubscription',
'ModifiedAfter',
'MerchantCode'
);
public function __construct( $apiCore ) {
$this->core = $apiCore;
}
public function validateSubscriptionSearchParams( $searchParams ) {
$notAccepted = array();
foreach ( $searchParams as $k => $v ) {
if ( ! array_key_exists( $k, array_flip( $this->acceptedSearchSubscriptionParams ) ) ) {
$notAccepted[] = $k;
}
}
return $notAccepted;
}
/**
* @returns array with keys (LineItemReference) && values (array of SubscriptionReferences)
* or empty array
*/
public function getSubscriptionsByOrderRefNo( $orderRefNo ) {
$order = new Order( $this->core );
$orderData = null;
try {
$orderData = $order->getOrder( array( 'RefNo' => $orderRefNo ) );
} catch ( TcoException $exception ) {
throw new TcoException( sprintf( 'Exception getting subscriptions by order RefNo %s',
$exception->getMessage() ) );
}
$items = $orderData["Items"];
$subscriptionsRefNoArray = array();
foreach ( $items as $k => $productData ) {
if ( isset( $productData['ProductDetails']['Subscriptions'][0] ) ) {
$productSubscriptions = $productData['ProductDetails']['Subscriptions'];
$lineItemReference = $items[ $k ]['LineItemReference'];
foreach ( $productSubscriptions as $k => $subscription ) {
$subscriptionsRefNoArray[ $lineItemReference ][] = $subscription['SubscriptionReference'];
}
}
}
return $subscriptionsRefNoArray;
}
public function searchSubscriptions( $searchParams ) {
$rejectedParams = $this->validateSubscriptionSearchParams( $searchParams );
if ( count( $rejectedParams ) == 0 ) {
try {
$search = '/subscriptions/';
//If subscriptionReferenceId then we only search by it
if ( isset( $searchParams['SubscriptionReference'] ) ) {
$search .= $searchParams['SubscriptionReference'] . '/';
unset( $searchParams );
}
//Else do search for multiple orders using the mix of parameters.
if ( ! empty( $searchParams ) ) {
$search .= '?' . http_build_query( $searchParams );
}
return $this->core->call( $search, [], 'GET' );
} catch ( TcoException $exception ) {
throw new TcoException( sprintf( 'Error when trying to search for subscription: %s',
$exception->getMessage() ) );
}
} else {
throw new TcoException( sprintf( 'Exception! Some subscription search parameters are not accepted: %s',
implode( ', ', $rejectedParams ) ) );
}
}
public function updateSubscriptions( $updatedSubscriptionParams ) {
if ( isset( $updatedSubscriptionParams['SubscriptionReference'] ) ) {
$endPoint = '/subscriptions/' . $updatedSubscriptionParams['SubscriptionReference'] . '/';
try {
return $this->core->call( $endPoint, $updatedSubscriptionParams, 'PUT' );
} catch ( TcoException $exception ) {
throw new TcoException( sprintf( 'Exception when updating subscription! Message: %s',
$exception->getMessage() ) );
}
}
}
public function enableSubscriptions( $updatedSubscriptionParams ) {
if ( isset( $updatedSubscriptionParams['SubscriptionReference'] ) ) {
$endPoint = '/subscriptions/' . $updatedSubscriptionParams['SubscriptionReference'] . '/';
try {
return $this->core->call( $endPoint, [], 'POST' );
} catch ( TcoException $exception ) {
throw new TcoException( sprintf( 'Exception when Enabling subscription! Message: %s',
$exception->getMessage() ) );
}
}
}
public function disableSubscriptions( $updatedSubscriptionParams ) {
if ( isset( $updatedSubscriptionParams['SubscriptionReference'] ) ) {
$endPoint = '/subscriptions/' . $updatedSubscriptionParams['SubscriptionReference'] . '/';
try {
return $this->core->call( $endPoint, [], 'DELETE' );
} catch ( TcoException $exception ) {
throw new TcoException( sprintf( 'Exception when Enabling subscription! Message: %s',
$exception->getMessage() ) );
}
}
}
}