2011-08-09 15:16:18 +00:00
|
|
|
<?php
|
2015-11-06 09:22:19 +00:00
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* WooCommerce Payment Gateways class
|
2012-08-15 18:15:06 +00:00
|
|
|
*
|
2011-08-10 17:11:11 +00:00
|
|
|
* Loads payment gateways via hooks for use in the store.
|
|
|
|
*
|
2012-01-27 16:38:39 +00:00
|
|
|
* @class WC_Payment_Gateways
|
2014-08-15 09:56:19 +00:00
|
|
|
* @version 2.2.0
|
2012-08-15 18:15:06 +00:00
|
|
|
* @package WooCommerce/Classes/Payment
|
2013-02-20 17:14:46 +00:00
|
|
|
* @category Class
|
2012-08-15 18:15:06 +00:00
|
|
|
* @author WooThemes
|
2011-08-10 17:11:11 +00:00
|
|
|
*/
|
2012-01-27 16:38:39 +00:00
|
|
|
class WC_Payment_Gateways {
|
2012-08-15 18:15:06 +00:00
|
|
|
|
|
|
|
/** @var array Array of payment gateway classes. */
|
2014-08-15 09:28:23 +00:00
|
|
|
public $payment_gateways;
|
2012-08-15 18:15:06 +00:00
|
|
|
|
2013-09-12 13:41:02 +00:00
|
|
|
/**
|
2014-06-19 19:43:05 +00:00
|
|
|
* @var WC_Payment_Gateways The single instance of the class
|
2013-09-12 13:41:02 +00:00
|
|
|
* @since 2.1
|
|
|
|
*/
|
|
|
|
protected static $_instance = null;
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Main WC_Payment_Gateways Instance.
|
2013-09-12 13:41:02 +00:00
|
|
|
*
|
2014-06-19 19:43:05 +00:00
|
|
|
* Ensures only one instance of WC_Payment_Gateways is loaded or can be loaded.
|
2013-09-12 13:41:02 +00:00
|
|
|
*
|
|
|
|
* @since 2.1
|
|
|
|
* @static
|
2014-06-19 19:43:05 +00:00
|
|
|
* @return WC_Payment_Gateways Main instance
|
2013-09-12 13:41:02 +00:00
|
|
|
*/
|
|
|
|
public static function instance() {
|
2014-08-15 09:28:23 +00:00
|
|
|
if ( is_null( self::$_instance ) ) {
|
2013-09-12 13:41:02 +00:00
|
|
|
self::$_instance = new self();
|
2014-08-15 09:28:23 +00:00
|
|
|
}
|
2013-09-12 13:41:02 +00:00
|
|
|
return self::$_instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cloning is forbidden.
|
|
|
|
*
|
|
|
|
* @since 2.1
|
|
|
|
*/
|
|
|
|
public function __clone() {
|
2018-02-07 22:01:12 +00:00
|
|
|
wc_doing_it_wrong( __FUNCTION__, __( 'Cloning is forbidden.', 'woocommerce' ), '2.1' );
|
2013-09-12 13:41:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unserializing instances of this class is forbidden.
|
|
|
|
*
|
|
|
|
* @since 2.1
|
|
|
|
*/
|
|
|
|
public function __wakeup() {
|
2018-02-07 22:01:12 +00:00
|
|
|
wc_doing_it_wrong( __FUNCTION__, __( 'Unserializing instances of this class is forbidden.', 'woocommerce' ), '2.1' );
|
2013-09-12 13:41:02 +00:00
|
|
|
}
|
|
|
|
|
2013-01-07 17:23:09 +00:00
|
|
|
/**
|
2015-07-16 19:55:48 +00:00
|
|
|
* Initialize payment gateways.
|
2013-01-07 17:23:09 +00:00
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
$this->init();
|
|
|
|
}
|
|
|
|
|
2014-09-02 14:11:21 +00:00
|
|
|
/**
|
|
|
|
* Load gateways and hook in functions.
|
|
|
|
*/
|
|
|
|
public function init() {
|
|
|
|
$load_gateways = array(
|
|
|
|
'WC_Gateway_BACS',
|
2013-09-12 13:41:02 +00:00
|
|
|
'WC_Gateway_Cheque',
|
|
|
|
'WC_Gateway_COD',
|
2014-08-15 09:28:23 +00:00
|
|
|
'WC_Gateway_Paypal',
|
2014-09-02 14:11:21 +00:00
|
|
|
);
|
2014-08-15 09:28:23 +00:00
|
|
|
|
2016-04-19 12:14:13 +00:00
|
|
|
/**
|
|
|
|
* Simplify Commerce is @deprecated in 2.6.0. Only load when enabled.
|
|
|
|
*/
|
|
|
|
if ( ! class_exists( 'WC_Gateway_Simplify_Commerce_Loader' ) && in_array( WC()->countries->get_base_country(), apply_filters( 'woocommerce_gateway_simplify_commerce_supported_countries', array( 'US', 'IE' ) ) ) ) {
|
|
|
|
$simplify_options = get_option( 'woocommerce_simplify_commerce_settings', array() );
|
2015-08-26 12:24:24 +00:00
|
|
|
|
2016-04-19 12:14:13 +00:00
|
|
|
if ( ! empty( $simplify_options['enabled'] ) && 'yes' === $simplify_options['enabled'] ) {
|
|
|
|
if ( function_exists( 'wcs_create_renewal_order' ) ) {
|
2015-07-21 23:50:24 +00:00
|
|
|
$load_gateways[] = 'WC_Addons_Gateway_Simplify_Commerce';
|
2016-04-19 12:14:13 +00:00
|
|
|
} else {
|
|
|
|
$load_gateways[] = 'WC_Gateway_Simplify_Commerce';
|
2015-07-21 23:50:24 +00:00
|
|
|
}
|
2014-08-15 09:56:19 +00:00
|
|
|
}
|
2014-09-02 14:11:21 +00:00
|
|
|
}
|
2012-08-15 18:15:06 +00:00
|
|
|
|
2014-09-02 14:11:21 +00:00
|
|
|
// Filter
|
|
|
|
$load_gateways = apply_filters( 'woocommerce_payment_gateways', $load_gateways );
|
2014-08-15 09:28:23 +00:00
|
|
|
|
|
|
|
// Get sort order option
|
2014-09-02 13:21:42 +00:00
|
|
|
$ordering = (array) get_option( 'woocommerce_gateway_order' );
|
|
|
|
$order_end = 999;
|
2012-08-15 18:15:06 +00:00
|
|
|
|
2011-12-06 16:45:08 +00:00
|
|
|
// Load gateways in order
|
2014-08-15 09:28:23 +00:00
|
|
|
foreach ( $load_gateways as $gateway ) {
|
2015-01-08 02:11:24 +00:00
|
|
|
$load_gateway = is_string( $gateway ) ? new $gateway() : $gateway;
|
2012-08-15 18:15:06 +00:00
|
|
|
|
2014-08-15 09:28:23 +00:00
|
|
|
if ( isset( $ordering[ $load_gateway->id ] ) && is_numeric( $ordering[ $load_gateway->id ] ) ) {
|
2011-12-06 16:45:08 +00:00
|
|
|
// Add in position
|
2014-08-15 09:28:23 +00:00
|
|
|
$this->payment_gateways[ $ordering[ $load_gateway->id ] ] = $load_gateway;
|
|
|
|
} else {
|
2011-12-06 16:45:08 +00:00
|
|
|
// Add to end of the array
|
2014-08-15 09:28:23 +00:00
|
|
|
$this->payment_gateways[ $order_end ] = $load_gateway;
|
2011-12-06 16:45:08 +00:00
|
|
|
$order_end++;
|
2014-08-15 09:28:23 +00:00
|
|
|
}
|
|
|
|
}
|
2012-08-15 18:15:06 +00:00
|
|
|
|
2012-12-31 18:25:09 +00:00
|
|
|
ksort( $this->payment_gateways );
|
2014-09-02 14:11:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get gateways.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function payment_gateways() {
|
2011-08-09 15:16:18 +00:00
|
|
|
$_available_gateways = array();
|
2012-08-15 18:15:06 +00:00
|
|
|
|
2014-08-15 09:28:23 +00:00
|
|
|
if ( sizeof( $this->payment_gateways ) > 0 ) {
|
|
|
|
foreach ( $this->payment_gateways as $gateway ) {
|
2012-12-31 18:25:09 +00:00
|
|
|
$_available_gateways[ $gateway->id ] = $gateway;
|
2014-08-15 09:28:23 +00:00
|
|
|
}
|
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
|
|
|
|
return $_available_gateways;
|
|
|
|
}
|
2012-08-15 18:15:06 +00:00
|
|
|
|
2016-05-26 14:46:14 +00:00
|
|
|
/**
|
|
|
|
* Get array of registered gateway ids
|
|
|
|
* @since 2.6.0
|
|
|
|
* @return array of strings
|
|
|
|
*/
|
|
|
|
public function get_payment_gateway_ids() {
|
|
|
|
return wp_list_pluck( $this->payment_gateways, 'id' );
|
|
|
|
}
|
|
|
|
|
2012-08-15 18:15:06 +00:00
|
|
|
/**
|
|
|
|
* Get available gateways.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2014-08-15 09:28:23 +00:00
|
|
|
public function get_available_payment_gateways() {
|
2011-08-09 15:16:18 +00:00
|
|
|
$_available_gateways = array();
|
2012-08-15 18:15:06 +00:00
|
|
|
|
2014-08-15 09:28:23 +00:00
|
|
|
foreach ( $this->payment_gateways as $gateway ) {
|
2013-11-01 21:14:27 +00:00
|
|
|
if ( $gateway->is_available() ) {
|
2014-08-15 09:28:23 +00:00
|
|
|
if ( ! is_add_payment_method_page() ) {
|
|
|
|
$_available_gateways[ $gateway->id ] = $gateway;
|
2017-08-07 11:39:16 +00:00
|
|
|
} elseif ( $gateway->supports( 'add_payment_method' ) || $gateway->supports( 'tokenization' ) ) {
|
2014-08-15 09:28:23 +00:00
|
|
|
$_available_gateways[ $gateway->id ] = $gateway;
|
|
|
|
}
|
2013-11-01 21:14:27 +00:00
|
|
|
}
|
2014-08-15 09:28:23 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2012-05-17 09:40:50 +00:00
|
|
|
return apply_filters( 'woocommerce_available_payment_gateways', $_available_gateways );
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2012-08-15 18:15:06 +00:00
|
|
|
|
2014-11-26 14:19:53 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Set the current, active gateway.
|
2015-12-05 01:17:33 +00:00
|
|
|
*
|
2017-05-15 11:50:52 +00:00
|
|
|
* @param array $gateways Available payment gateways.
|
2014-11-26 14:19:53 +00:00
|
|
|
*/
|
|
|
|
public function set_current_gateway( $gateways ) {
|
2015-12-05 01:17:33 +00:00
|
|
|
// Be on the defensive
|
|
|
|
if ( ! is_array( $gateways ) || empty( $gateways ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-01 19:37:06 +00:00
|
|
|
if ( is_user_logged_in() ) {
|
|
|
|
$default_token = WC_Payment_Tokens::get_customer_default_token( get_current_user_id() );
|
|
|
|
if ( ! is_null( $default_token ) ) {
|
|
|
|
$default_token_gateway = $default_token->get_gateway_id();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$current = ( isset( $default_token_gateway ) ? $default_token_gateway : WC()->session->get( 'chosen_payment_method' ) );
|
2014-11-26 14:19:53 +00:00
|
|
|
|
2015-12-05 01:17:33 +00:00
|
|
|
if ( $current && isset( $gateways[ $current ] ) ) {
|
|
|
|
$current_gateway = $gateways[ $current ];
|
|
|
|
|
2015-10-22 15:39:15 +00:00
|
|
|
} else {
|
2015-12-05 01:17:33 +00:00
|
|
|
$current_gateway = current( $gateways );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure we can make a call to set_current() without triggering an error
|
|
|
|
if ( $current_gateway && is_callable( array( $current_gateway, 'set_current' ) ) ) {
|
|
|
|
$current_gateway->set_current();
|
2014-11-26 14:19:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-15 18:15:06 +00:00
|
|
|
/**
|
|
|
|
* Save options in admin.
|
|
|
|
*/
|
2014-08-15 09:28:23 +00:00
|
|
|
public function process_admin_options() {
|
2015-10-22 15:39:15 +00:00
|
|
|
$gateway_order = isset( $_POST['gateway_order'] ) ? $_POST['gateway_order'] : '';
|
|
|
|
$order = array();
|
2012-08-15 18:15:06 +00:00
|
|
|
|
2012-10-17 12:46:35 +00:00
|
|
|
if ( is_array( $gateway_order ) && sizeof( $gateway_order ) > 0 ) {
|
2011-12-06 16:45:08 +00:00
|
|
|
$loop = 0;
|
2012-10-17 12:46:35 +00:00
|
|
|
foreach ( $gateway_order as $gateway_id ) {
|
|
|
|
$order[ esc_attr( $gateway_id ) ] = $loop;
|
2011-12-06 16:45:08 +00:00
|
|
|
$loop++;
|
2012-10-17 12:46:35 +00:00
|
|
|
}
|
|
|
|
}
|
2012-08-15 18:15:06 +00:00
|
|
|
|
2011-12-06 16:45:08 +00:00
|
|
|
update_option( 'woocommerce_gateway_order', $order );
|
|
|
|
}
|
2014-09-02 13:21:42 +00:00
|
|
|
}
|