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_paypal_express.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_paypal_base.php');

/**
 * Merchant Paypal Express Class
 *
 * Payment processing using Paypal Express Checkout
 * Documentation: https://cms.paypal.com/cms_content/US/en_US/files/developer/PP_ExpressCheckout_IntegrationGuide.pdf
 */

class Merchant_paypal_express extends Merchant_paypal_base
{
	public function default_settings()
	{
		return array(
			'username' => '',
			'password' => '',
			'signature' => '',
			'test_mode' => FALSE,
			'solution_type' => array('type' => 'select', 'default' => 'Sole', 'options' => array(
				'Sole' => 'merchant_solution_type_sole',
				'Mark' => 'merchant_solution_type_mark')),
			'landing_page' => array('type' => 'select', 'default' => 'Billing', 'options' => array(
				'Billing'	=> 'merchant_landing_page_billing',
				'Login'		=> 'merchant_landing_page_login'))
		);
	}
	
	public function authorize()
	{
		$request = $this->_build_authorize_or_purchase();
		$response = $this->_post_paypal_request($request);

		$this->redirect($this->_checkout_url().'?'.http_build_query(array(
			'cmd' => '_express-checkout',
			'useraction' => 'commit',
			'token' => $response['TOKEN'],
		)));
	}

	public function authorize_return()
	{
		$response = $this->_express_checkout_return('Authorization');
		return new Merchant_paypal_api_response($response, Merchant_response::AUTHORIZED);
	}

	public function purchase()
	{
		// authorize first then process as 'Sale' in DoExpressCheckoutPayment
		$this->authorize();
	}

	public function purchase_return()
	{
		$response = $this->_express_checkout_return('Sale');
		return new Merchant_paypal_api_response($response, Merchant_response::COMPLETE);
	}

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

		$request = $this->_new_request('SetExpressCheckout');
		$prefix = 'PAYMENTREQUEST_0_';
		$this->_add_request_details($request, 'Authorization', $prefix);

		// pp express specific fields
		$request['SOLUTIONTYPE'] = $this->setting('solution_type');
		$request['LANDINGPAGE'] = $this->setting('landing_page');
		$request['NOSHIPPING'] = 1;
		$request['ALLOWNOTE'] = 0;
		$request['RETURNURL'] = $this->param('return_url');
		$request['CANCELURL'] = $this->param('cancel_url');
		$request[$prefix.'SHIPTONAME'] = $this->param('name');
		$request[$prefix.'SHIPTOSTREET'] = $this->param('address1');
		$request[$prefix.'SHIPTOSTREET2'] = $this->param('address2');
		$request[$prefix.'SHIPTOCITY'] = $this->param('city');
		$request[$prefix.'SHIPTOSTATE'] = $this->param('region');
		$request[$prefix.'SHIPTOCOUNTRYCODE'] = $this->param('country');
		$request[$prefix.'SHIPTOZIP'] = $this->param('postcode');
		$request[$prefix.'SHIPTOPHONENUM'] = $this->param('phone');
		$request['EMAIL'] = $this->param('email');

		return $request;
	}

	protected function _express_checkout_return($action)
	{
		$request = $this->_new_request('DoExpressCheckoutPayment');
		$this->_add_request_details($request, $action, 'PAYMENTREQUEST_0_');

		$request['TOKEN'] = $this->CI->input->get_post('token');
		$request['PAYERID'] = $this->CI->input->get_post('PayerID');

		return $this->_post_paypal_request($request);
	}
}

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