115 lines
4.2 KiB
PHP
115 lines
4.2 KiB
PHP
<?php
|
|
require_once(__DIR__ . '/../includes/config.inc.php');
|
|
// create_order for PayPal — adapted to run from _website/api
|
|
$sandbox = true; // flip to false for Live
|
|
$client_id = 'AfvY_C2zA_hTHxHq7TIhtOeub4xBdySYrt_Hjj3d_WYQwjWI9NfOAVOTeResx2rgZ_nP5tOoxQSAHw8c';
|
|
$client_secret = 'EJ216np9cAj9n7KSddez3fLVxGe-zi4oKKKl1YGqPp88XIikr4Qzbxh0XW2as-V6LgdX-upjtQAg9dC0';
|
|
|
|
header('Content-Type: application/json');
|
|
|
|
$in = json_decode(file_get_contents('php://input'), true) ?: [];
|
|
|
|
$amount_in = $in['amount'] ?? '0.00';
|
|
$currency = $in['currency'] ?? 'USD';
|
|
$invoice_id = $in['invoice_id'] ?? null;
|
|
$custom_id = $in['custom_id'] ?? null;
|
|
$description = $in['description'] ?? 'Order';
|
|
$return_url = $in['return_url'] ?? null;
|
|
$cancel_url = $in['cancel_url'] ?? null;
|
|
$items = (isset($in['items']) && is_array($in['items'])) ? $in['items'] : null;
|
|
$line_invoices= (isset($in['line_invoices']) && is_array($in['line_invoices'])) ? $in['line_invoices'] : null;
|
|
|
|
$amount_value = number_format((float)$amount_in, 2, '.', '');
|
|
if ($items) {
|
|
$sum = 0.00;
|
|
foreach ($items as $it) {
|
|
$qty = isset($it['quantity']) ? (int)$it['quantity'] : 1;
|
|
$val = isset($it['unit_amount']['value']) ? (float)$it['unit_amount']['value'] : 0.00;
|
|
$sum += $qty * $val;
|
|
}
|
|
$amount_value = number_format($sum, 2, '.', '');
|
|
}
|
|
|
|
$api = $sandbox ? 'https://api-m.sandbox.paypal.com' : 'https://api-m.paypal.com';
|
|
|
|
$ch = curl_init("$api/v1/oauth2/token");
|
|
curl_setopt_array($ch, [
|
|
CURLOPT_RETURNTRANSFER => true,
|
|
CURLOPT_POST => true,
|
|
CURLOPT_POSTFIELDS => 'grant_type=client_credentials',
|
|
CURLOPT_HTTPHEADER => ['Accept: application/json'],
|
|
CURLOPT_USERPWD => $client_id . ':' . $client_secret,
|
|
]);
|
|
$tok = curl_exec($ch);
|
|
$http = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
|
curl_close($ch);
|
|
if ($http !== 200) { http_response_code(500); echo json_encode(['error'=>'oauth_fail']); exit; }
|
|
$access = json_decode($tok, true)['access_token'] ?? null;
|
|
if (!$access) { http_response_code(500); echo json_encode(['error'=>'oauth_no_token']); exit; }
|
|
|
|
// Update site base URL to exclude 'modules/billing'
|
|
$siteBaseUrl = 'http://gameservers.world';
|
|
|
|
// Ensure return_url and cancel_url are absolute URLs (relative to site root)
|
|
if (strpos($return_url, 'http') !== 0) {
|
|
$return_url = $siteBaseUrl . '/' . ltrim($return_url, '/');
|
|
}
|
|
if (strpos($cancel_url, 'http') !== 0) {
|
|
$cancel_url = $siteBaseUrl . '/' . ltrim($cancel_url, '/');
|
|
}
|
|
|
|
$purchaseUnit = [
|
|
'amount' => [ 'currency_code' => $currency, 'value' => $amount_value ],
|
|
'description' => $description,
|
|
'invoice_id' => $invoice_id,
|
|
'custom_id' => $custom_id
|
|
];
|
|
if ($items) {
|
|
$purchaseUnit['items'] = $items;
|
|
$purchaseUnit['amount']['breakdown'] = [ 'item_total' => ['currency_code'=>$currency,'value'=>$amount_value] ];
|
|
}
|
|
|
|
$body = [
|
|
'intent' => 'CAPTURE',
|
|
'purchase_units' => [ $purchaseUnit ],
|
|
'application_context' => [ 'return_url'=>$return_url, 'cancel_url'=>$cancel_url, 'user_action'=>'PAY_NOW' ]
|
|
];
|
|
|
|
// Log the payload for debugging
|
|
$logDir = __DIR__ . '/../data';
|
|
@mkdir($logDir, 0775, true);
|
|
$logFile = $logDir . '/create_order_payload.log';
|
|
$logEntry = date('Y-m-d H:i:s') . "\n" . json_encode($body, JSON_PRETTY_PRINT) . "\n\n";
|
|
@file_put_contents($logFile, $logEntry, FILE_APPEND);
|
|
|
|
// Log corrected URLs for debugging
|
|
$logFile = $logDir . '/corrected_urls.log';
|
|
$logEntry = date('Y-m-d H:i:s') . "\nReturn URL: $return_url\nCancel URL: $cancel_url\n\n";
|
|
@file_put_contents($logFile, $logEntry, FILE_APPEND);
|
|
|
|
$ch = curl_init("$api/v2/checkout/orders");
|
|
curl_setopt_array($ch, [
|
|
CURLOPT_RETURNTRANSFER => true,
|
|
CURLOPT_POST => true,
|
|
CURLOPT_POSTFIELDS => json_encode($body),
|
|
CURLOPT_HTTPHEADER => [ 'Content-Type: application/json', 'Authorization: Bearer ' . $access ],
|
|
]);
|
|
$res = curl_exec($ch);
|
|
$http = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
|
curl_close($ch);
|
|
|
|
if ($http !== 201) {
|
|
// Log error for debugging
|
|
$logDir = __DIR__ . '/../data';
|
|
@mkdir($logDir, 0775, true);
|
|
$logFile = $logDir . '/create_order_errors.log';
|
|
$logEntry = date('Y-m-d H:i:s') . " HTTP $http: " . substr($res, 0, 500) . "\n";
|
|
@file_put_contents($logFile, $logEntry, FILE_APPEND);
|
|
|
|
http_response_code($http);
|
|
echo $res;
|
|
exit;
|
|
}
|
|
echo $res;
|
|
|
|
?>
|