forked from elkarte/Elkarte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subscriptions.php
276 lines (237 loc) · 7.8 KB
/
subscriptions.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
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
<?php
/**
* This file is the file which all subscription gateways should call
* when a payment has been received - it sorts out the user status.
*
* @name ElkArte Forum
* @copyright ElkArte Forum contributors
* @license BSD http://opensource.org/licenses/BSD-3-Clause
*
* This software is a derived product, based on:
*
* Simple Machines Forum (SMF)
* copyright: 2011 Simple Machines (http://www.simplemachines.org)
* license: BSD, See included LICENSE.TXT for terms and conditions.
*
* @version 1.1 dev
*
*/
// Start things rolling by getting the forum alive...
$ssi_guest_access = true;
if (!file_exists(dirname(__FILE__) . '/bootstrap.php'))
die('Cannot find bootstrap.php');
// Need lots of help
require_once(dirname(__FILE__) . '/bootstrap.php');
require_once(SUBSDIR . '/PaidSubscriptions.subs.php');
require_once(SUBSDIR . '/Admin.subs.php');
require_once(SUBSDIR . '/Members.subs.php');
loadLanguage('ManagePaid');
// If there's literally nothing coming in, let's take flight!
if (empty($_POST))
{
header('Content-Type: text/html; charset=UTF-8');
die($txt['paid_no_data']);
}
// I assume we're even active?
if (empty($modSettings['paid_enabled']))
exit;
// If we have some custom people who find out about problems load them here.
$notify_users = array();
if (!empty($modSettings['paid_email_to']))
{
foreach (explode(',', $modSettings['paid_email_to']) as $email)
$notify_users[] = array(
'email' => $email,
'name' => $txt['who_member'],
'id' => 0,
);
}
$db = database();
// We need to see whether we can find the correct payment gateway,
// Go through all our gateway scripts and find out if they are happy with what we have.
$txnType = '';
$gatewayHandles = loadPaymentGateways();
foreach ($gatewayHandles as $gateway)
{
$gatewayClass = new $gateway['payment_class']();
if ($gatewayClass->isValid())
{
$txnType = $gateway['code'];
break;
}
}
if (empty($txnType))
generateSubscriptionError($txt['paid_unknown_transaction_type']);
// Get the subscription and member ID amongst others...
@list($subscription_id, $member_id) = $gatewayClass->precheck();
// Integer these just in case.
$subscription_id = (int) $subscription_id;
$member_id = (int) $member_id;
// This would be bad...
if (empty($member_id))
generateSubscriptionError($txt['paid_empty_member']);
// Verify the member.
$member_info = getBasicMemberData($member_id);
// Didn't find them?
if (empty($member_info))
generateSubscriptionError(sprintf($txt['paid_could_not_find_member'], $member_id));
// Get the subscription details.
$request = $db->query('', '
SELECT cost, length, name
FROM {db_prefix}subscriptions
WHERE id_subscribe = {int:current_subscription}',
array(
'current_subscription' => $subscription_id,
)
);
// Didn't find it?
if ($db->num_rows($request) === 0)
generateSubscriptionError(sprintf($txt['paid_count_not_find_subscription'], $member_id, $subscription_id));
$subscription_info = $db->fetch_assoc($request);
$db->free_result($request);
// We wish to check the pending payments to make sure we are expecting this.
$request = $db->query('', '
SELECT id_sublog, id_subscribe, payments_pending, pending_details, end_time
FROM {db_prefix}log_subscribed
WHERE id_subscribe = {int:current_subscription}
AND id_member = {int:current_member}
LIMIT 1',
array(
'current_subscription' => $subscription_id,
'current_member' => $member_id,
)
);
if ($db->num_rows($request) == 0)
generateSubscriptionError(sprintf($txt['paid_count_not_find_subscription_log'], $member_id, $subscription_id));
$subscription_info += $db->fetch_assoc($request);
$db->free_result($request);
// Is this a refund?
if ($gatewayClass->isRefund())
{
handleRefund($subscription_info, $member_id, $context['subscriptions'][$subscription_id]['num_length']);
// Receipt?
if (!empty($modSettings['paid_email']) && $modSettings['paid_email'] == 2)
{
$replacements = array(
'NAME' => $subscription_info['name'],
'REFUNDNAME' => $member_info['member_name'],
'REFUNDUSER' => $member_info['real_name'],
'PROFILELINK' => $scripturl . '?action=profile;u=' . $member_id,
'DATE' => standardTime(time(), false),
);
emailAdmins('paid_subscription_refund', $replacements, $notify_users);
}
}
// Otherwise is it what we want, a purchase?
elseif ($gatewayClass->isPayment() || $gatewayClass->isSubscription())
{
$cost = unserialize($subscription_info['cost']);
$total_cost = $gatewayClass->getCost();
$notify = false;
// For one off's we want to only capture them once!
if (!$gatewayClass->isSubscription())
{
$real_details = @unserialize($subscription_info['pending_details']);
if (empty($real_details))
generateSubscriptionError(sprintf($txt['paid_count_not_find_outstanding_payment'], $member_id, $subscription_id));
// Now we just try to find anything pending.
// We don't really care which it is as security happens later.
foreach ($real_details as $id => $detail)
{
unset($real_details[$id]);
if ($detail[3] == 'payback' && $subscription_info['payments_pending'])
$subscription_info['payments_pending']--;
break;
}
$subscription_info['pending_details'] = empty($real_details) ? '' : serialize($real_details);
updateNonrecurrent($subscription_info);
}
// Is this flexible?
if ($subscription_info['length'] == 'F')
{
$found_duration = 0;
// This is a little harder, can we find the right duration?
foreach ($cost as $duration => $value)
{
if ($duration == 'fixed')
continue;
elseif ((float) $value == (float) $total_cost)
$found_duration = strtoupper(substr($duration, 0, 1));
}
// If we have the duration then we're done.
if ($found_duration !== 0)
{
$notify = true;
addSubscription($subscription_id, $member_id, $found_duration);
}
}
else
{
$actual_cost = $cost['fixed'];
// It must be at least the right amount.
if ($total_cost != 0 && $total_cost >= $actual_cost)
{
// Add the subscription.
$notify = true;
addSubscription($subscription_id, $member_id);
}
}
// Send a receipt?
if (!empty($modSettings['paid_email']) && $modSettings['paid_email'] == 2 && $notify)
{
$replacements = array(
'NAME' => $subscription_info['name'],
'SUBNAME' => $member_info['member_name'],
'SUBUSER' => $member_info['real_name'],
'SUBEMAIL' => $member_info['email_address'],
'PRICE' => sprintf($modSettings['paid_currency_symbol'], $total_cost),
'PROFILELINK' => $scripturl . '?action=profile;u=' . $member_id,
'DATE' => standardTime(time(), false),
);
emailAdmins('paid_subscription_new', $replacements, $notify_users);
}
}
// Maybe they're cancelling. This allows payment gateways to perform processing if needed
elseif ($gatewayClass->isCancellation())
{
if (method_exists($gatewayClass, 'processCancelation'))
$gatewayClass->processCancelation($subscription_id, $member_id, $subscription_info);
}
else
{
// Some other "valid" transaction such as:
//
// subscr_signup: This IPN response (txn_type) is sent only the first time the user signs up for a subscription.
// It then does not fire in any event later. This response is received somewhere before or after the first payment of
// subscription is received (txn_type=subscr_payment) which is what we do process
//
// Should we log any of these ...
}
// In case we have anything specific to do.
$gatewayClass->close();
/**
* Log an error then exit
*
* @param string $text
*/
function generateSubscriptionError($text)
{
global $modSettings, $notify_users;
// Send an email?
if (!empty($modSettings['paid_email']))
{
$replacements = array(
'ERROR' => $text,
);
emailAdmins('paid_subscription_error', $replacements, $notify_users);
}
// Maybe we can try to give them the post data?
if (!empty($_POST))
{
foreach ($_POST as $key => $val)
$text .= '<br />' . Util::htmlspecialchars($key) . ': ' . Util::htmlspecialchars($val);
}
// Then just log and die.
Errors::instance()->log_error($text);
exit;
}