One Hat Cyber Team
Your IP :
18.118.171.161
Server IP :
50.28.103.30
Server :
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software :
nginx/1.24.0
PHP Version :
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
wwwroot
/
globify.live
/
chatscript
/
fns
/
payments
/
View File Name :
paypal.php
<?php require_once 'fns/payments/omnipay/autoload.php'; use Omnipay\Omnipay; $paypal_client_id = null; $paypal_client_secret = null; $paypal_testmode = false; if (isset($payment_data['credentials']) && !empty($payment_data['credentials'])) { $credentials = json_decode($payment_data['credentials']); if (!empty($credentials)) { if (isset($credentials->paypal_client_id) && isset($credentials->paypal_client_secret)) { $paypal_client_id = $credentials->paypal_client_id; $paypal_client_secret = $credentials->paypal_client_secret; } if (isset($credentials->paypal_test_mode) && $credentials->paypal_test_mode === 'yes') { $paypal_testmode = true; } } } if (empty($paypal_client_id) || empty($paypal_client_secret)) { $result['error_message'] = "Invalid payment method credentials — Contact the webmaster"; $result['error_key'] = 'invalid_payment_credentials'; return; } $gateway = Omnipay::create('PayPal_Rest'); $gateway->setClientId($paypal_client_id); $gateway->setSecret($paypal_client_secret); $gateway->setTestMode($paypal_testmode); if (isset($payment_data['purchase'])) { $currency = Registry::load('settings')->default_currency; include_once "fns/data_arrays/paypal_currencies.php"; if (!in_array(Registry::load('settings')->default_currency, $paypal_currencies)) { $currency = 'USD'; include_once "fns/currency_tools/load.php"; $payment_data['purchase'] = currency_converter($payment_data['purchase'], Registry::load('settings')->default_currency); if (empty($payment_data['purchase'])) { $result['error_message'] = "Currency conversion was unsuccessful."; $result['error_key'] = 'invalid_payment_credentials'; return; } } $payment_data['purchase'] = round($payment_data['purchase']); $payment_params = [ 'transactionId' => $payment_data['wallet_transaction_id'], 'amount' => $payment_data['purchase'], 'currency' => $currency, 'description' => $payment_data['description'], 'returnUrl' => $payment_data['validation_url'], 'cancelUrl' => $payment_data['validation_url'], ]; $payment_response = $gateway->purchase($payment_params)->send(); if ($payment_response->isRedirect()) { $result['redirect'] = $payment_response->getRedirectUrl(); return; } else if ($payment_response->isSuccessful()) { $result['redirect'] = $payment_data['validation_url']; return; } else { $result['redirect'] = $payment_data['validation_url']; return; } } else if (isset($payment_data['validate_purchase'])) { $payment_id = $_POST['paymentId'] ?? $_GET['paymentId'] ?? null; $payer_id = $_POST['PayerID'] ?? $_GET['PayerID'] ?? null; $transaction_info = array_merge($_GET, $_POST); $result = array(); $result['success'] = false; $result['transaction_info'] = $transaction_info; $result['error'] = 'something_went_wrong'; if (!empty($payment_id) && !empty($payer_id)) { $pass_parameters = ['transactionReference' => $payment_id, 'PayerID' => $payer_id]; $payment_response = $gateway->completePurchase($pass_parameters)->send(); if ($payment_response->isSuccessful()) { $result = array(); $result['success'] = true; $result['transaction_info'] = $transaction_info; } else { $result['error'] = $payment_response->getMessage(); } } }