2021-09-08 16:41:00 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Handles wcpay promotion
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Automattic\WooCommerce\Admin\Features\WcPayPromotion;
|
|
|
|
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
|
2021-11-16 13:57:23 +00:00
|
|
|
use Automattic\WooCommerce\Admin\DataSourcePoller;
|
2021-09-08 16:41:00 +00:00
|
|
|
use Automattic\WooCommerce\Admin\Loader;
|
2021-09-09 12:25:13 +00:00
|
|
|
use Automattic\WooCommerce\Admin\Features\PaymentGatewaySuggestions\EvaluateSuggestion;
|
2021-11-16 13:57:23 +00:00
|
|
|
use Automattic\WooCommerce\Admin\PaymentMethodSuggestionsDataSourcePoller;
|
2021-09-08 16:41:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* WC Pay Promotion engine.
|
|
|
|
*/
|
|
|
|
class Init {
|
2021-09-27 13:24:47 +00:00
|
|
|
const EXPLAT_VARIATION_PREFIX = 'woocommerce_wc_pay_promotion_payment_methods_table_';
|
2021-09-09 12:25:13 +00:00
|
|
|
|
2021-09-08 16:41:00 +00:00
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
include_once __DIR__ . '/WCPaymentGatewayPreInstallWCPayPromotion.php';
|
|
|
|
|
2021-09-09 12:25:13 +00:00
|
|
|
add_action( 'change_locale', array( __CLASS__, 'delete_specs_transient' ) );
|
2021-11-16 13:57:23 +00:00
|
|
|
add_filter( DataSourcePoller::FILTER_NAME_SPECS, array( __CLASS__, 'possibly_filter_recommended_payment_gateways' ), 10, 2 );
|
2021-09-08 16:41:00 +00:00
|
|
|
|
|
|
|
if ( ! isset( $_GET['page'] ) || 'wc-settings' !== $_GET['page'] || ! isset( $_GET['tab'] ) || 'checkout' !== $_GET['tab'] ) { // phpcs:ignore WordPress.Security.NonceVerification
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
add_filter( 'woocommerce_payment_gateways', array( __CLASS__, 'possibly_register_pre_install_wc_pay_promotion_gateway' ) );
|
|
|
|
add_filter( 'option_woocommerce_gateway_order', [ __CLASS__, 'set_gateway_top_of_list' ] );
|
|
|
|
add_filter( 'default_option_woocommerce_gateway_order', [ __CLASS__, 'set_gateway_top_of_list' ] );
|
|
|
|
|
|
|
|
$rtl = is_rtl() ? '.rtl' : '';
|
|
|
|
|
|
|
|
wp_enqueue_style(
|
2021-09-09 12:25:13 +00:00
|
|
|
'wc-admin-payment-method-promotions',
|
|
|
|
Loader::get_url( "payment-method-promotions/style{$rtl}", 'css' ),
|
2021-09-08 16:41:00 +00:00
|
|
|
array( 'wp-components' ),
|
|
|
|
Loader::get_file_version( 'css' )
|
|
|
|
);
|
|
|
|
|
2021-09-09 12:25:13 +00:00
|
|
|
$script_assets_filename = Loader::get_script_asset_filename( 'wp-admin-scripts', 'payment-method-promotions' );
|
2021-09-08 16:41:00 +00:00
|
|
|
$script_assets = require WC_ADMIN_ABSPATH . WC_ADMIN_DIST_JS_FOLDER . 'wp-admin-scripts/' . $script_assets_filename;
|
|
|
|
|
|
|
|
wp_enqueue_script(
|
2021-09-09 12:25:13 +00:00
|
|
|
'wc-admin-payment-method-promotions',
|
|
|
|
Loader::get_url( 'wp-admin-scripts/payment-method-promotions', 'js' ),
|
2021-09-08 16:41:00 +00:00
|
|
|
array_merge( array( WC_ADMIN_APP ), $script_assets ['dependencies'] ),
|
|
|
|
Loader::get_file_version( 'js' ),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Possibly registers the pre install wc pay promoted gateway.
|
|
|
|
*
|
|
|
|
* @param array $gateways list of gateway classes.
|
|
|
|
* @return array list of gateway classes.
|
|
|
|
*/
|
|
|
|
public static function possibly_register_pre_install_wc_pay_promotion_gateway( $gateways ) {
|
|
|
|
if ( self::should_register_pre_install_wc_pay_promoted_gateway() ) {
|
|
|
|
$gateways[] = 'Automattic\WooCommerce\Admin\Features\WCPayPromotion\WCPaymentGatewayPreInstallWCPayPromotion';
|
|
|
|
}
|
|
|
|
return $gateways;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Possibly filters out woocommerce-payments from recommended payment methods.
|
|
|
|
*
|
2021-11-16 13:57:23 +00:00
|
|
|
* @param array $specs list of payment methods.
|
|
|
|
* @param string $datasource_poller_id id of data source poller.
|
2021-09-08 16:41:00 +00:00
|
|
|
* @return array list of payment method.
|
|
|
|
*/
|
2021-11-16 13:57:23 +00:00
|
|
|
public static function possibly_filter_recommended_payment_gateways( $specs, $datasource_poller_id ) {
|
|
|
|
if ( PaymentMethodSuggestionsDataSourcePoller::ID === $datasource_poller_id && self::should_register_pre_install_wc_pay_promoted_gateway() ) {
|
2021-09-08 16:41:00 +00:00
|
|
|
return array_filter(
|
2021-11-16 13:57:23 +00:00
|
|
|
$specs,
|
|
|
|
function( $spec ) {
|
|
|
|
return 'woocommerce-payments' !== $spec->plugins[0];
|
2021-09-08 16:41:00 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2021-11-16 13:57:23 +00:00
|
|
|
return $specs;
|
2021-09-08 16:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if promoted gateway should be registered.
|
|
|
|
*
|
|
|
|
* @return boolean if promoted gateway should be registered.
|
|
|
|
*/
|
|
|
|
public static function should_register_pre_install_wc_pay_promoted_gateway() {
|
|
|
|
// Check if WC Pay is enabled.
|
|
|
|
if ( class_exists( '\WC_Payments' ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ( 'no' === get_option( 'woocommerce_show_marketplace_suggestions', 'yes' ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-09-09 12:25:13 +00:00
|
|
|
$wc_pay_spec = self::get_wc_pay_promotion_spec();
|
|
|
|
|
2021-09-10 13:50:58 +00:00
|
|
|
if ( ! $wc_pay_spec || ! isset( $wc_pay_spec->additional_info ) || ! isset( $wc_pay_spec->additional_info->experiment_version ) ) {
|
2021-09-09 12:25:13 +00:00
|
|
|
return false;
|
|
|
|
}
|
2021-09-10 13:50:58 +00:00
|
|
|
|
2021-09-21 18:40:14 +00:00
|
|
|
$anon_id = isset( $_COOKIE['tk_ai'] ) ? sanitize_text_field( wp_unslash( $_COOKIE['tk_ai'] ) ) : '';
|
2021-09-10 13:50:58 +00:00
|
|
|
$allow_tracking = 'yes' === get_option( 'woocommerce_allow_tracking' );
|
|
|
|
$abtest = new \WooCommerce\Admin\Experimental_Abtest(
|
|
|
|
$anon_id,
|
|
|
|
'woocommerce',
|
|
|
|
$allow_tracking
|
|
|
|
);
|
|
|
|
|
2021-09-27 13:24:47 +00:00
|
|
|
$variation_name = $abtest->get_variation( self::EXPLAT_VARIATION_PREFIX . $wc_pay_spec->additional_info->experiment_version );
|
2021-09-10 13:50:58 +00:00
|
|
|
|
|
|
|
if ( 'treatment' === $variation_name ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2021-09-08 16:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* By default, new payment gateways are put at the bottom of the list on the admin "Payments" settings screen.
|
|
|
|
* For visibility, we want WooCommerce Payments to be at the top of the list.
|
|
|
|
*
|
|
|
|
* @param array $ordering Existing ordering of the payment gateways.
|
|
|
|
*
|
|
|
|
* @return array Modified ordering.
|
|
|
|
*/
|
|
|
|
public static function set_gateway_top_of_list( $ordering ) {
|
|
|
|
$ordering = (array) $ordering;
|
|
|
|
$id = WCPaymentGatewayPreInstallWCPayPromotion::GATEWAY_ID;
|
|
|
|
// Only tweak the ordering if the list hasn't been reordered with WooCommerce Payments in it already.
|
|
|
|
if ( ! isset( $ordering[ $id ] ) || ! is_numeric( $ordering[ $id ] ) ) {
|
2021-11-18 04:53:50 +00:00
|
|
|
$is_empty = empty( $ordering ) || ( 1 === count( $ordering ) && false === $ordering[0] );
|
2021-09-08 16:41:00 +00:00
|
|
|
$ordering[ $id ] = $is_empty ? 0 : ( min( $ordering ) - 1 );
|
|
|
|
}
|
|
|
|
return $ordering;
|
|
|
|
}
|
2021-09-09 12:25:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get WC Pay promotion spec.
|
|
|
|
*/
|
|
|
|
public static function get_wc_pay_promotion_spec() {
|
|
|
|
$promotions = self::get_promotions();
|
|
|
|
$wc_pay_promotion_spec = array_values(
|
|
|
|
array_filter(
|
|
|
|
$promotions,
|
|
|
|
function( $promotion ) {
|
|
|
|
return isset( $promotion->plugins ) && in_array( 'woocommerce-payments', $promotion->plugins, true );
|
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
return current( $wc_pay_promotion_spec );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Go through the specs and run them.
|
|
|
|
*/
|
|
|
|
public static function get_promotions() {
|
|
|
|
$suggestions = array();
|
|
|
|
$specs = self::get_specs();
|
|
|
|
|
|
|
|
foreach ( $specs as $spec ) {
|
|
|
|
$suggestion = EvaluateSuggestion::evaluate( $spec );
|
|
|
|
$suggestions[] = $suggestion;
|
|
|
|
}
|
|
|
|
|
|
|
|
return array_values(
|
|
|
|
array_filter(
|
|
|
|
$suggestions,
|
|
|
|
function( $suggestion ) {
|
|
|
|
return ! property_exists( $suggestion, 'is_visible' ) || $suggestion->is_visible;
|
|
|
|
}
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete the specs transient.
|
|
|
|
*/
|
|
|
|
public static function delete_specs_transient() {
|
2021-10-20 18:53:43 +00:00
|
|
|
WcPayPromotionDataSourcePoller::get_instance()->delete_specs_transient();
|
2021-09-09 12:25:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get specs or fetch remotely if they don't exist.
|
|
|
|
*/
|
|
|
|
public static function get_specs() {
|
2021-10-20 18:53:43 +00:00
|
|
|
if ( 'no' === get_option( 'woocommerce_show_marketplace_suggestions', 'yes' ) ) {
|
|
|
|
return array();
|
2021-09-09 12:25:13 +00:00
|
|
|
}
|
2021-10-20 18:53:43 +00:00
|
|
|
return WcPayPromotionDataSourcePoller::get_instance()->get_specs_from_data_sources();
|
2021-09-09 12:25:13 +00:00
|
|
|
}
|
2021-09-08 16:41:00 +00:00
|
|
|
}
|
|
|
|
|