ok

Mini Shell

Direktori : /home2/selectio/www/ramali.in/dashboard/old/eCart - v5.0.0/paypal/
Upload File :
Current File : /home2/selectio/www/ramali.in/dashboard/old/eCart - v5.0.0/paypal/ipn.php

<?php
include('../includes/crud.php');
include('../includes/custom-functions.php');

$db = new Database();
$db->connect();
$fn = new custom_functions();
$data = $fn->get_settings('payment_methods', true);


// Database settings. Change these for your database configuration.

// PayPal settings. Change these to your account details and the relevant URLs
// for your site.
$paypalConfig = [
    'email' => $data['paypal_business_email'],
    'return_url' => DOMAIN_URL . 'paypal/payment_status.php',
    'cancel_url' => DOMAIN_URL . 'paypal/payment_status.php?tx=failure',
    'notify_url' => DOMAIN_URL . 'paypal/ipn.php'
];

$paypalUrl = ($data['paypal_mode'] == "sandbox") ? 'https://www.sandbox.paypal.com/cgi-bin/webscr' : 'https://www.paypal.com/cgi-bin/webscr';

// Check if paypal request or response
if (isset($_POST["txn_id"])) {
    // Handle the PayPal response.

    // Create a connection to the database.

    // Assign posted variables to local data array.
    $data = [
        'item_name' => $_POST['item_name'],
        'item_number' => $_POST['item_number'],
        'payment_status' => $_POST['payment_status'],
        'payment_amount' => $_POST['mc_gross'],
        'payment_currency' => $_POST['mc_currency'],
        'txn_id' => $_POST['txn_id'],
        'receiver_email' => $_POST['receiver_email'],
        'payer_email' => $_POST['payer_email'],
        'custom' => $_POST['custom'],
    ];
    file_put_contents('data.txt', print_r($data, true), FILE_APPEND);
    $pickup = $fn->is_lockup($id);
    if ($fn->verifyTransaction($_POST)) {
        if (isset($data['payment_status']) && (strtolower($data['payment_status']) == 'completed' || strtolower($data['payment_status']) == 'authorize')) {
            /* Transaction success */
            if (strpos($data['item_number'], "wallet-refill-user") !== false) {
                $data1 = explode("-", $order_id);
                if (isset($data1[3]) && is_numeric($data1[3]) && !empty($data1[3] && $data1[3] != '')) {
                    $user_id = $data1[3];
                } else {
                    $user_id = 0;
                }
                // add wallet balance
                $wallet_result = $md->add_wallet_balance($data['item_number'], $user_id, $data['payment_amount'], "credit", "Wallet refill successful");
                file_put_contents('data.txt', "Wallet refill successful" . PHP_EOL, FILE_APPEND);
            } else {
                $res = $fn->get_data('', 'txn_id = "' . $data['item_number'] . '"', 'transactions');
                if (!empty($res) && isset($res[0]['order_id']) && is_numeric($res[0]['order_id']) && $pickup == 0) {
                    $order_id = $res[0]['order_id'];
                    /* receive order */
                    $response = $function->update_order_status($order_id, 'received', 0);
                    file_put_contents('data.txt', "Order update status : " . $response . " " . PHP_EOL, FILE_APPEND);
                }
            }



            file_put_contents('data.txt', "Transaction success : " . $data['txn_id'] . " " . PHP_EOL, FILE_APPEND);
        } elseif (isset($data['payment_status']) && (strtolower($data['payment_status']) != 'disabled' || strtolower($data['payment_status']) != 'failed')) {
            file_put_contents('data.txt', "Transaction failed: " . PHP_EOL, FILE_APPEND);
        }
    } else {
        file_put_contents('data.txt', "Transaction failed: " . $data['txn_id'] . " " . PHP_EOL, FILE_APPEND);
    }
}

Zerion Mini Shell 1.0