Server IP : 192.185.129.71 / Your IP : 18.118.3.199 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/application/controllers/gateways/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php defined('BASEPATH') or exit('No direct script access allowed'); class Instamojo extends App_Controller { public function redirect($invoice_id, $invoice_hash, $attemptReference = null) { check_invoice_restrictions($invoice_id, $invoice_hash); $payment_id = $this->input->get('payment_id'); $payment_request_id = $this->input->get('payment_request_id'); if (!$payment_id) { set_alert('warning', 'Payment ID Not Returned via Response'); redirect(site_url('invoice/' . $invoice_id . '/' . $invoice_hash)); } try { $api = $this->instamojo_gateway->createApi(); $response = $api->paymentRequestPaymentStatus($payment_request_id, $payment_id); if ($response['payment']['status'] == 'Credit') { $success = $this->instamojo_gateway->addPayment( [ 'amount' => $response['amount'], 'invoiceid' => $invoice_id, 'paymentmethod' => $response['payment']['instrument_type'], 'transactionid' => $response['payment']['payment_id'], 'payment_attempt_reference' => $attemptReference, ] ); set_alert( $success ? 'success' : 'danger', _l($success ? 'online_payment_recorded_success' : 'online_payment_recorded_success_fail_database') ); } else { // handle failed payment // https://docs.instamojo.com/docs/get-payment-details#response-fields //var_dump($response); set_alert('danger', _l('invoice_payment_record_failed')); } } catch (Exception $e) { $errors = json_decode($e->getMessage()); foreach ($errors as $err) { set_alert('warning', $err[0]); break; } } redirect(site_url('invoice/' . $invoice_id . '/' . $invoice_hash)); } }