HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/school/public_html/school/application/libraries/merchant/merchant_sagepay_server.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

/*
 * CI-Merchant Library
 *
 * Copyright (c) 2011-2012 Adrian Macneil
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

require_once(MERCHANT_DRIVER_PATH.'/merchant_sagepay_base.php');

/**
 * Merchant SagePay Direct Class
 *
 * Payment processing using SagePay Direct
 */

class Merchant_sagepay_server extends Merchant_sagepay_base
{
	public function authorize()
	{
		$request = $this->_build_authorize_or_purchase('DEFERRED');
		return $this->_submit_request($request);
	}

	public function authorize_return()
	{
		return $this->purchase_return();
	}

	public function purchase()
	{
		$request = $this->_build_authorize_or_purchase('PAYMENT');
		return $this->_submit_request($request);
	}

	public function purchase_return()
	{
		$reference = $this->_decode_reference($this->param('reference'));

		// validate VPSSignature
		@$signature = md5(
			$reference->VPSTxId.
			$reference->VendorTxCode.
			$_POST['Status'].
			$_POST['TxAuthNo'].
			$this->setting('vendor').
			$_POST['AVSCV2'].
			$reference->SecurityKey.
			$_POST['AddressResult'].
			$_POST['PostCodeResult'].
			$_POST['CV2Result'].
			$_POST['GiftAid'].
			$_POST['3DSecureStatus'].
			$_POST['CAVV'].
			$_POST['AddressStatus'].
			$_POST['PayerStatus'].
			$_POST['CardType'].
			$_POST['Last4Digits']);

		if (isset($_POST['VPSSignature']) AND strtolower($_POST['VPSSignature']) == $signature)
		{
			// add SecurityKey to response so we can record it with the payment
			$_POST['SecurityKey'] = $reference->SecurityKey;

			return new Merchant_sagepay_response($_POST);
		}

		echo "Status=INVALID\r\n";
		echo "RedirectUrl=".$this->param('failure_url');
		exit;
	}

	/**
	 * Because Sage Pay does things backwards compared to every other gateway
	 * (the confirm url is called by their server, not the customer, and doesn't send a
	 * separate post back to Sage Pay to confirm the payment),
	 * after calling purchase_return() and recording the success/failure, the calling
	 * script must end with a call to this method, to let Sage Pay know that the message
	 * was received successfully, and where to send the customer.
	 */
	public function confirm_return($redirect_url)
	{
		echo "Status=OK\r\n";
		echo "RedirectUrl=".$redirect_url;
		exit;
	}

	protected function _build_authorize_or_purchase($method)
	{
		$this->require_params('return_url');

		$request = parent::_build_authorize_or_purchase($method);
		$request['NotificationURL'] = $this->param('return_url');

		return $request;
	}

	protected function _process_url($service)
	{
		$service = strtolower($service);
		if ($service == 'payment' OR $service == 'deferred')
		{
			$service = 'vspserver-register';
		}

		return parent::_process_url($service);
	}
}

/* End of file ./libraries/merchant/drivers/merchant_sagepay_direct.php */