File "payment.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/vikbooking/libraries/adapter/payment/payment.php
File size: 26.36 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/** 
 * @package     VikWP - Libraries
 * @subpackage  adapter.payment
 * @author      E4J s.r.l.
 * @copyright   Copyright (C) 2023 E4J s.r.l. All Rights Reserved.
 * @license     http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 * @link        https://vikwp.com
 */

// No direct access
defined('ABSPATH') or die('No script kiddies please!');

JLoader::import('adapter.payment.status');

/**
 * This class describes the events that an abstract payment should handle.
 * 
 * @since 10.1
 */
abstract class JPayment
{
	/**
	 * The name of the plugin that has requested the payment.
	 *
	 * @var string
	 */
	protected $caller;

	/**
	 * The driver identifier of the gateway.
	 *
	 * @var string
	 */
	protected $driver;

	/**
	 * The order details.
	 *
	 * @var JObject
	 */
	protected $order;

	/**
	 * The payment configuration parameters.
	 *
	 * @var JObject
	 */
	protected $params;

	/**
	 * Class constructor.
	 *
	 * @param 	string 	$caller  The name of the plugin that requested the payment.
	 * @param 	mixed 	$order 	 The order details to start the transaction.
	 * @param 	mixed 	$params  The configuration of the payment.
	 */
	public function __construct($caller, $order, $params = array())
	{
		if (is_string($params))
		{
			$params = (array) json_decode($params);
		}

		$this->caller = $caller;
		$this->order  = new JObject($order);
		$this->params = new JObject($params);
	}

	/**
	 * Returns the name of the plugin that dispatched the payment.
	 *
	 * @return 	string
	 */
	public function getCaller()
	{
		return $this->caller;
	}

	/**
	 * Checks if the given caller matches the current one.
	 *
	 * @param 	string 	 $caller  The caller to check.
	 *
	 * @return 	boolean  True if the callers are equal, otherwise false.
	 *
	 * @uses 	getCaller()
	 *
	 * @since 	10.1.1
	 */
	public function isCaller($caller)
	{
		return !strcasecmp($this->getCaller(), $caller);
	}

	/**
	 * Returns the name of the driver.
	 *
	 * @return 	string
	 */
	public function getDriver()
	{
		if (!$this->driver)
		{
			/**
			 * Fixed driver name calculation, which was
			 * based on the file name instead of the classname.
			 *
			 * @since 10.1.1 
			 */
			$class = get_class($this);

			// extract the string between the plugin name and "payment"
			$this->driver = preg_replace_callback("/{$this->caller}(.*?)Payment$/i", function($match)
			{
				return $match[1];
			}, $class);

			$this->driver = strtolower($this->driver);
		}

		return $this->driver;
	}

	/**
	 * Checks if the given driver matches the current one.
	 *
	 * @param 	string 	 $driver  The driver to check.
	 *
	 * @return 	boolean  True if the drivers are equal, otherwise false.
	 *
	 * @uses 	getDriver()
	 */
	public function isDriver($driver)
	{
		return !strcasecmp($this->getDriver(), $driver);
	}

	/**
	 * Returns the order detail related to the specified key.
	 *
	 * @param 	string 	$key 	The registry key.
	 * @param 	mixed 	$def 	The default value if the key is not set.
	 *
	 * @return 	mixed 	The registry value, or the default one.
	 */
	public function get($key, $def = null)
	{
		return $this->order->get($key, $def);
	}

	/**
	 * Updates the specified key into the order details object.
	 *
	 * @param 	string 	$key 	The registry key.
	 * @param 	mixed 	$val 	The value to update.
	 *
	 * @param 	mixed 	The old value.
	 */
	public function set($key, $val)
	{
		return $this->order->set($key, $val);
	}

	/**
	 * Returns an associative array containing the order details.
	 *
	 * @return 	array
	 *
	 * @since 	10.1.30
	 */
	public function getOrder()
	{
		return $this->order->getProperties();
	}

	/**
	 * Returns the configuration parameter related to the specified key.
	 *
	 * @param 	string 	$key 	The registry key.
	 * @param 	mixed 	$def 	The default value if the key is not set.
	 *
	 * @return 	mixed 	The registry value, or the default one.
	 */
	public function getParam($key, $def = null)
	{
		return $this->params->get($key, $def);
	}

	/**
	 * Updates the specified key into the configuration object.
	 *
	 * @param 	string 	$key 	The registry key.
	 * @param 	mixed 	$val 	The value to update.
	 *
	 * @param 	mixed 	The old value.
	 */
	public function setParam($key, $val)
	{
		return $this->params->set($key, $val);
	}

	/**
	 * Returns an associative array containing the payments parameters.
	 *
	 * @return 	array
	 *
	 * @since 	10.1.30
	 */
	public function getParams()
	{
		return $this->params->getProperties();
	}

	/**
	 * Returns an associative array containing the form
	 * fields used to construct the configuration of the payment.
	 *
	 * This method triggers two ACTIONS to manipulate the 
	 * configuration array before it is returned:
	 * - payment_before_admin_params
	 * - payment_after_admin_params
	 *
	 * @return 	array 	The payment configuration.
	 *
	 * @uses 	buildAdminParameters()
	 */
	public function getAdminParameters()
	{
		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the configuration array is generated.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.1
		 */
		do_action($this->getHook('payment_before_admin_params'), array(&$this));

		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the configuration array is generated.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.32
		 */
		do_action($this->getDriverHook('payment_before_admin_params'), array(&$this));

		// children payments will create the configuration form (as array)
		$config = $this->buildAdminParameters();

		/**
		 * Plugins can manipulate the configuration form of the payment.
		 * Fires after generating the config form.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 	A reference to this object.
		 * @param 	array 	A reference to the configuration array.
		 *
		 * @since 	10.1.32
		 */
		do_action_ref_array($this->getDriverHook('payment_after_admin_params'), array(&$this, &$config));

		/**
		 * Plugins can manipulate the configuration form of the payment.
		 * Fires after generating the config form.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 	A reference to this object.
		 * @param 	array 	A reference to the configuration array.
		 *
		 * @since 	10.1.1
		 */
		do_action_ref_array($this->getHook('payment_after_admin_params'), array(&$this, &$config));

		return $config;
	}

	/**
	 * Abstract method used to build the associative array 
	 * to allow the plugins to construct a configuration form.
	 *
	 * In case the payment needs an API Key, the array should
	 * be built as follows:
	 *
	 * {"apikey": {"type": "text", "label": "API Key"}}
	 *
	 * @return 	array 	The associative array.
	 */
	protected function buildAdminParameters()
	{
		// return an empty array because a payment
		// may not need a configuration
		return array();
	}

	/**
	 * Returns the HTML of the payment that should be used
	 * to begin the transaction, such as a "Pay Now" button
	 * for hosted integrations or a credit card form for seamleass
	 * solutions.
	 *
	 * This method triggers the ACTION below to manipulate the payment details
	 * before they are used to display the HTML form:
	 * - payment_before_begin_transaction
	 *
	 * This method triggers the ACTION below to manipulate the HTML form
	 * before it is returned to the plugin that requested it:
	 * - payment_after_begin_transaction
	 *
	 * @return 	string 	The payment form.
	 *
	 * @uses 	beginTransaction()
	 */
	public function showPayment()
	{
		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the payment form is initiated.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.1
		 */
		do_action($this->getHook('payment_before_begin_transaction'), array(&$this));

		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the payment form is initiated.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.32
		 */
		do_action($this->getDriverHook('payment_before_begin_transaction'), array(&$this));

		// start buffer
		ob_start();
		// children payments will start the transaction
		$this->beginTransaction();
		// get buffered contents
		$html = ob_get_contents();
		// clean buffer
		ob_end_clean();

		/**
		 * Plugins can manipulate the generated HTML form.
		 * Fires after generating the HTML payment form.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 	A reference to this object.
		 * @param 	string	A reference to the resulting HTML string.
		 *
		 * @since 	10.1.32
		 */
		do_action_ref_array($this->getDriverHook('payment_after_begin_transaction'), array(&$this, &$html));

		/**
		 * Plugins can manipulate the generated HTML form.
		 * Fires after generating the HTML payment form.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 	A reference to this object.
		 * @param 	string	A reference to the resulting HTML string.
		 *
		 * @since 	10.1.1
		 */
		do_action_ref_array($this->getHook('payment_after_begin_transaction'), array(&$this, &$html));

		return $html;
	}

	/**
	 * Abstract method used to begin a payment transaction.
	 * This method usually generates the HTML form of the payment.
	 * The HTML contents can be echoed directly because this method
	 * is executed always within a buffer.
	 *
	 * @return 	void
	 */
	abstract protected function beginTransaction();

	/**
	 * Provides the validation of the payment transaction.
	 *
	 * This method triggers the ACTION below to manipulate the payment details
	 * before they are used to validate the transaction:
	 * - payment_before_validate_transaction
	 *
	 * This method triggers the ACTION below to manipulate the
	 * response evaluated by the payment:
	 * - payment_after_validate_transaction
	 *
	 * @return 	mixed 	An object describing the status of the transaction.
	 *
	 * @uses 	validateTransaction()
	 */
	public function validatePayment()
	{
		$status = new JPaymentStatus();

		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the payment transaction is validated.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.1
		 */
		do_action($this->getHook('payment_before_validate_transaction'), array(&$this));

		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the payment transaction is validated.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.32
		 */
		do_action($this->getDriverHook('payment_before_validate_transaction'), array(&$this));

		// children payments will validate the transaction to confirm the owner has been paid
		$this->validateTransaction($status);

		$response = null;

		/**
		 * Plugins can manipulate the response object to return.
		 * By filling the &$response variable, this method will return
		 * it instead of the default &$status one.
		 * Fires after validating the payment transaction.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 			A reference to this object.
		 * @param 	JPaymentStatus 	A reference to the status object.
		 * @param 	mixed 			A reference to the final response (null by default).
		 *
		 * @since 	10.1.32
		 */
		do_action_ref_array($this->getDriverHook('payment_after_validate_transaction'), array(&$this, &$status, &$response));

		/**
		 * Plugins can manipulate the response object to return.
		 * By filling the &$response variable, this method will return
		 * it instead of the default &$status one.
		 * Fires after validating the payment transaction.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 			A reference to this object.
		 * @param 	JPaymentStatus 	A reference to the status object.
		 * @param 	mixed 			A reference to the final response (null by default).
		 *
		 * @since 	10.1.1
		 */
		do_action_ref_array($this->getHook('payment_after_validate_transaction'), array(&$this, &$status, &$response));

		if (is_null($response))
		{
			// no hook fired, the response will be equals to the status object
			$response = $status;
		}

		return $response;
	}

	/**
	 * Abstract method used to validate the payment transaction.
	 * It is usually an end-point that the providers use to POST the
	 * transaction data.
	 *
	 * @param 	JPaymentStatus 	&$status 	The status object. In case the payment was 
	 * 										successful, you should invoke: $status->verified().
	 *
	 * @return 	void
	 *
	 * @see 	JPaymentStatus
	 */
	abstract protected function validateTransaction(JPaymentStatus &$status);

	/**
	 * Method called to complete the transaction, for example to redirect
	 * the customers to a specific landing page.
	 *
	 * This method triggers the ACTION below before the payment is finalised:
	 * - payment_on_after_validation
	 *
	 * @param 	boolean  $res 	True if the payment was successful, otherwise false.
	 *
	 * @return 	void
	 *
	 * @uses 	complete()
	 */
	public function afterValidation($res = false)
	{
		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the payment process is completed.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 	 A reference to this object.
		 * @param 	boolean  The result of the transaction.
		 *
		 * @since 	10.1.1
		 */
		do_action_ref_array($this->getHook('payment_on_after_validation'), array(&$this, $res));

		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the payment process is completed.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 	 A reference to this object.
		 * @param 	boolean  The result of the transaction.
		 *
		 * @since 	10.1.32
		 */
		do_action_ref_array($this->getDriverHook('payment_on_after_validation'), array(&$this, $res));

		// finalise payment
		$this->complete($res);
	}

	/**
	 * Abstract method used to finalise the payment.
	 * e.g. enter here the code used to redirect the
	 * customers to a specific landing page.
	 *
	 * @param 	boolean  $res 	True if the payment was successful, otherwise false.
	 *
	 * @return 	void
	 */
	protected function complete($res)
	{
		// do nothing as a plugin may
		// not need to finalise the payment
	}

	/**
	 * Checks whether the payment method supports
	 * refund requests (false by default).
	 * Inherits method in children classes in case
	 * the payment supports refunds.
	 *
	 * @return 	boolean
	 *
	 * @since 	10.1.32
	 */
	public function isRefundSupported()
	{
		// not supported by default
		return false;
	}

	/**
	 * Performs the refund request of a payment.
	 *
	 * This method triggers the ACTION below to manipulate the payment details
	 * before they are used to refund the transaction:
	 * - payment_before_refund_transaction
	 *
	 * This method triggers the ACTION below to manipulate the
	 * response evaluated by the refund:
	 * - payment_after_refund_transaction
	 *
	 * @return 	mixed 	An object describing the status of the transaction.
	 *
	 * @uses 	isRefundSupported()
	 * @uses 	doRefund()
	 *
	 * @since 	10.1.32
	 */
	public function refund()
	{
		// make sure the refund request is supported
		if (!$this->isRefundSupported())
		{
			// refund requests are not supported
			throw new Exception('Refund method not supported', 405);
		}

		$status = new JPaymentStatus();

		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the refund request is made.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.32
		 */
		do_action($this->getHook('payment_before_refund_transaction'), array(&$this));

		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the refund request is made.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.32
		 */
		do_action($this->getDriverHook('payment_before_refund_transaction'), array(&$this));

		// children payments will perform the refund request
		$this->doRefund($status);

		$response = null;

		/**
		 * Plugins can manipulate the response object to return.
		 * By filling the &$response variable, this method will return
		 * it instead of the default &$status one.
		 * Fires after completing the refund request.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 			A reference to this object.
		 * @param 	JPaymentStatus 	A reference to the status object.
		 * @param 	mixed 			A reference to the final response (null by default).
		 *
		 * @since 	10.1.32
		 */
		do_action_ref_array($this->getDriverHook('payment_after_refund_transaction'), array(&$this, &$status, &$response));

		/**
		 * Plugins can manipulate the response object to return.
		 * By filling the &$response variable, this method will return
		 * it instead of the default &$status one.
		 * Fires after completing the refund request.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 			A reference to this object.
		 * @param 	JPaymentStatus 	A reference to the status object.
		 * @param 	mixed 			A reference to the final response (null by default).
		 *
		 * @since 	10.1.32
		 */
		do_action_ref_array($this->getHook('payment_after_refund_transaction'), array(&$this, &$status, &$response));

		if (is_null($response))
		{
			// no hook fired, the response will be equals to the status object
			$response = $status;
		}

		return $response;
	}

	/**
	 * Refund request implementor.
	 * Children classes can inherit this method to use the API of the
	 * payment in order to perform a refund request.
	 *
	 * @param 	JPaymentStatus 	&$status 	The status object. In case the refund was 
	 * 										successful, you should invoke: $status->verified().
	 *
	 * @return 	void
	 *
	 * @see 	JPaymentStatus
	 *
	 * @since 	10.1.32
	 */
	protected function doRefund(JPaymentStatus &$status)
	{
		// do nothing as a plugin may
		// not support refund requests
	}

	/**
	 * Checks whether the payment method supports
	 * direct charge requests (false by default).
	 * Inherits method in children classes in case
	 * the payment supports direct debits.
	 *
	 * @return 	boolean
	 *
	 * @since 	10.1.46
	 */
	public function isDirectChargeSupported()
	{
		// not supported by default
		return false;
	}

	/**
	 * Performs the direct charge request of a CC.
	 *
	 * This method triggers the ACTION below to manipulate the payment details
	 * before they are used to execute the direct charge:
	 * - payment_before_direct_charge
	 *
	 * This method triggers the ACTION below to manipulate the
	 * response evaluated by the direct charge:
	 * - payment_after_direct_charge
	 *
	 * @return 	mixed 	An object describing the status of the transaction.
	 *
	 * @uses 	isDirectChargeSupported()
	 * @uses 	doDirectCharge()
	 *
	 * @since 	10.1.46
	 */
	public function directCharge()
	{
		// make sure direct charge requests are supported
		if (!$this->isDirectChargeSupported())
		{
			// direct charge requests are not supported
			throw new Exception('Direct charge method not supported', 405);
		}

		$status = new JPaymentStatus();

		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the direct charge request is made.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.46
		 */
		do_action($this->getHook('payment_before_direct_charge'), array($this));

		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the direct charge request is made.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.46
		 */
		do_action($this->getDriverHook('payment_before_direct_charge'), array($this));

		// children payments will perform the direct charge
		$this->doDirectCharge($status);

		$response = null;

		/**
		 * Plugins can manipulate the response object to return.
		 * By filling the &$response variable, this method will return
		 * it instead of the default &$status one.
		 * Fires after completing the direct charge.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 			A reference to this object.
		 * @param 	JPaymentStatus 	A reference to the status object.
		 * @param 	mixed 			A reference to the final response (null by default).
		 *
		 * @since 	10.1.32
		 */
		do_action_ref_array($this->getDriverHook('payment_after_direct_charge'), array($this, $status, &$response));

		/**
		 * Plugins can manipulate the response object to return.
		 * By filling the &$response variable, this method will return
		 * it instead of the default &$status one.
		 * Fires after completing the direct charge.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 			A reference to this object.
		 * @param 	JPaymentStatus 	A reference to the status object.
		 * @param 	mixed 			A reference to the final response (null by default).
		 *
		 * @since 	10.1.32
		 */
		do_action_ref_array($this->getHook('payment_after_direct_charge'), array($this, $status, &$response));

		if (is_null($response))
		{
			// no hook fired, the response will be equal to the status object
			$response = $status;
		}

		return $response;
	}

	/**
	 * Direct charge implementor.
	 * Children classes can inherit this method to use the API of the
	 * payment in order to perform a direct charge.
	 *
	 * @param 	JPaymentStatus 	$status 	The status object. In case the direct charge was 
	 * 										successful, you should invoke: $status->verified().
	 *
	 * @return 	void
	 *
	 * @see 	JPaymentStatus
	 *
	 * @since 	10.1.46
	 */
	protected function doDirectCharge(JPaymentStatus $status)
	{
		// do nothing as a plugin may
		// not support direct charges
	}

	/**
	 * Checks whether the payment method allows off-session capturing.
	 *
	 * @return 	boolean
	 *
	 * @since 	10.1.63
	 */
	public function isOffSessionCaptureSupported()
	{
		// not supported by default
		return false;
	}

	/**
	 * Performs the off-session capture transaction.
	 *
	 * This method triggers the ACTION below to manipulate the payment details
	 * before they are used to execute the capture:
	 * - payment_before_offsession_capture
	 *
	 * This method triggers the ACTION below to manipulate the
	 * response evaluated by the capture:
	 * - payment_after_offsession_capture
	 *
	 * @return 	mixed 	An object describing the status of the transaction.
	 *
	 * @uses 	isOffSessionCaptureSupported()
	 * @uses 	doOffSessionCapture()
	 *
	 * @since 	10.1.63
	 */
	public function offSessionCapture()
	{
		// make sure off-session capturing is supported
		if (!$this->isOffSessionCaptureSupported())
		{
			// not supported
			throw new Exception('Off session capturing not supported', 405);
		}

		$status = new JPaymentStatus();

		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the off-session capturing is made.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.63
		 */
		do_action($this->getHook('payment_before_offsession_capture'), array($this));

		/**
		 * Plugins can manipulate the properties of this object.
		 * Fires before the off-session capturing is made.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 	A reference to this object.
		 *
		 * @since 	10.1.63
		 */
		do_action($this->getDriverHook('payment_before_offsession_capture'), array($this));

		// children payments will perform the off-session capturing
		$this->doOffSessionCapture($status);

		$response = null;

		/**
		 * Plugins can manipulate the response object to return.
		 * By filling the &$response variable, this method will return
		 * it instead of the default &$status one.
		 * Fires after completing the off-session capturing.
		 * Hook specific for the current driver.
		 *
		 * @param 	self 			A reference to this object.
		 * @param 	JPaymentStatus 	A reference to the status object.
		 * @param 	mixed 			A reference to the final response (null by default).
		 *
		 * @since 	10.1.63
		 */
		do_action_ref_array($this->getDriverHook('payment_after_offsession_capture'), array($this, $status, &$response));

		/**
		 * Plugins can manipulate the response object to return.
		 * By filling the &$response variable, this method will return
		 * it instead of the default &$status one.
		 * Fires after completing the off-session capturing.
		 * Global hook accessible by any drivers.
		 *
		 * @param 	self 			A reference to this object.
		 * @param 	JPaymentStatus 	A reference to the status object.
		 * @param 	mixed 			A reference to the final response (null by default).
		 *
		 * @since 	10.1.63
		 */
		do_action_ref_array($this->getHook('payment_after_offsession_capture'), array($this, $status, &$response));

		if (is_null($response))
		{
			// no hook fired, the response will be equal to the status object
			$response = $status;
		}

		return $response;
	}

	/**
	 * Off-session capturing implementor.
	 * Children classes can inherit this method to use the API of the
	 * payment in order to perform an off-session capturing.
	 *
	 * @param 	JPaymentStatus 	$status 	The status object. In case the capturing was 
	 * 										successful, you should invoke: $status->verified().
	 *
	 * @return 	void
	 *
	 * @see 	JPaymentStatus
	 * 
	 * @see 	Visibility must be public.
	 *
	 * @since 	10.1.63
	 */
	public function doOffSessionCapture(JPaymentStatus $status)
	{
		// do nothing as a plugin may
		// not support off-session capturing
	}

	/**
	 * Returns the final hook that will be used for actions
	 * and filters. This hook can be accessed by any plugin.
	 *
	 * @param 	string 	$hook  The base hook.
	 *
	 * @return 	string 	The final hook.
	 *
	 * @since 	10.1.32
	 */
	protected function getHook($hook)
	{
		// build the hook according to the latest standards, by adding the
		// plugin name at the beginning instead of at the end:
		// [PLUGIN]_[HOOK]
		$_hook = strtolower($this->caller) . '_' . $hook;

		// check if we have at least a plugin attached to this hook
		if (has_action($_hook))
		{
			// return hook as the plugins are already using it
			return $_hook;
		}

		// otherwise fallback to the old notation:
		// [HOOK]_[PLUGIN]
		return $hook . '_' . strtolower($this->caller);
	}

	/**
	 * Returns the final hook that will be used for actions
	 * and filters. This hook is related to the current driver.
	 *
	 * @param 	string 	$hook  The base hook.
	 *
	 * @return 	string 	The final hook.
	 *
	 * @since 	10.1.32
	 */
	protected function getDriverHook($hook)
	{
		// build the hook according to the latest standards, in order
		// to avoid checking whether the drivers match:
		// [PLUGIN]_[HOOK]_[DRIVER]
		return strtolower($this->caller) . '_' . $hook . '_' . $this->getDriver();
	}
}