ok

Mini Shell

Direktori : /home2/selectio/www/geniusgroove.in/crm/application/controllers/onlineadmission/
Upload File :
Current File : /home2/selectio/www/geniusgroove.in/crm/application/controllers/onlineadmission/Ccavenue.php

<?php

if (!defined('BASEPATH')) {
    exit('No direct script access allowed');
}

class Ccavenue extends OnlineAdmission_Controller
    {
    
        public $pay_method = "";
        public $amount = 0;
    
        function __construct() {
            parent::__construct();
            $this->pay_method = $this->paymentsetting_model->getActiveMethod();
            $this->setting = $this->setting_model->getSetting();
            $this->amount = $this->setting->online_admission_amount;
            $this->load->library(array('Ccavenue_crypto','mailsmsconf'));
            $this->load->model('onlinestudent_model');
        }

    public function index() {

        $reference = $this->session->userdata('reference');
        $data['setting'] = $this->setting;
        $total = $this->amount;
        $data['amount'] = $total;
        $this->load->view('onlineadmission/ccavenue/index', $data);
    } 

    public function pay()
    {
        if ($this->input->server('REQUEST_METHOD') == 'POST') {
            $this->session->set_userdata('payment_amount',$this->amount);
            $amount                  = $this->amount;
            $details['tid']          = abs(crc32(uniqid()));
            $details['merchant_id']  = $this->pay_method->api_secret_key;
            $details['order_id']     = abs(crc32(uniqid()));
            $details['amount']       = number_format(convertBaseAmountCurrencyFormat($this->amount));
            $details['currency']     = $this->customlib->get_currencyShortName();
            $details['redirect_url'] = base_url('onlineadmission/ccavenue/success');
            $details['cancel_url']   = base_url('onlineadmission/ccavenue/cancel');
            $details['language']     = "EN";
            $details['billing_name'] = "title";
            $merchant_data           = "";
            foreach ($details as $key => $value) {
                $merchant_data .= $key . '=' . $value . '&';
            }
            $data['encRequest']  = $this->ccavenue_crypto->encrypt($merchant_data, $this->pay_method->salt);
            $data['access_code'] = $this->pay_method->api_publishable_key;
            $this->load->view('onlineadmission/ccavenue/pay', $data);
        } else {
            redirect(base_url('onlineadmission/checkout'));
        }
    }

    public function success()
    {
        
        $status     = array();
        $rcvdString = "";
        $total_amount   = $this->amount;
        $reference  = $this->session->userdata('reference');
        $online_data = $this->onlinestudent_model->getAdmissionData($reference);
 
        $apply_date=date("Y-m-d H:i:s");
        
        $date         = date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat(date("Y-m-d", strtotime($apply_date))));  

        if (!empty($total_amount)) {

            $encResponse = $_POST["encResp"];
            $rcvdString  = $this->ccavenue_crypto->decrypt($encResponse, $this->pay_method->salt);
         
            if ($rcvdString !== '') {

                $decryptValues = explode('&', $rcvdString);
                $dataSize      = sizeof($decryptValues);
                for ($i = 0; $i < $dataSize; $i++) {
                    $information             = explode('=', $decryptValues[$i]);
                    $status[$information[0]] = $information[1];
                }
            }

            if (!empty($status)) {
                if ($status['order_status'] == "Success") {
                    
                    $currentdate = date('Y-m-d');
                    $adddata = array('id' => $reference, 'form_status' => 1, 'submit_date' => $currentdate);
                    $this->onlinestudent_model->edit($adddata);
            
                    $tracking_id = $status['tracking_id'];
                    $bank_ref_no = $status['bank_ref_no'];

                    $gateway_response['online_admission_id']   = $reference;
                    $gateway_response['paid_amount']    = $total_amount;
                    $gateway_response['transaction_id'] = $tracking_id;
                    $gateway_response['payment_mode']   = 'ccavenue';
                    $gateway_response['payment_type']   = 'online';
                    $gateway_response['note']           = $this->lang->line('online_fees_deposit_through_ccavenue_txn_id')  . $tracking_id . " Bank Ref. No.: " . $bank_ref_no;
                    $gateway_response['date']           = date("Y-m-d H:i:s");
                    $return_detail                      = $this->onlinestudent_model->paymentSuccess($gateway_response);
                     $sender_details = array('firstname' => $online_data->firstname, 'lastname' => $online_data->lastname, 'email' => $online_data->email,'date'=>$date,'reference_no'=>$online_data->reference_no,'mobileno'=>$online_data->mobileno,'paid_amount'=>$this->amount,'guardian_email'=>$online_data->guardian_email,'guardian_phone'=>$online_data->guardian_phone);
                    $this->mailsmsconf->mailsms('online_admission_fees_submission', $sender_details);
                    redirect(base_url("onlineadmission/checkout/successinvoice/".$online_data->reference_no));

                } else if ($status['order_status'] === "Aborted") {
                    echo "<br>".$this->lang->line('we_will_keep_you_posted_regarding_the_status_of_your_order_through_email');

                } else if ($status['order_status'] === "Failure") {
                    redirect(base_url("onlineadmission/checkout/paymentfailed/".$online_data->reference_no));} else {
                    echo "<br>".$this->lang->line('security_error_illegal_access_detected');

                }
            }

        } else {

        }
    }

    public function cancel()
    {

    }

}

Zerion Mini Shell 1.0