mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
228 lines
8.2 KiB
PHP
228 lines
8.2 KiB
PHP
<?php
|
|
/**
|
|
* The Applepay module services.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Applepay
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Applepay;
|
|
|
|
use Automattic\WooCommerce\Blocks\Payments\PaymentMethodTypeInterface;
|
|
use WooCommerce\PayPalCommerce\ApiClient\Helper\Cache;
|
|
use WooCommerce\PayPalCommerce\Applepay\Assets\ApplePayButton;
|
|
use WooCommerce\PayPalCommerce\Applepay\Assets\AppleProductStatus;
|
|
use WooCommerce\PayPalCommerce\Applepay\Assets\DataToAppleButtonScripts;
|
|
use WooCommerce\PayPalCommerce\Applepay\Assets\BlocksPaymentMethod;
|
|
use WooCommerce\PayPalCommerce\Applepay\Helper\ApmApplies;
|
|
use WooCommerce\PayPalCommerce\Applepay\Helper\AvailabilityNotice;
|
|
use WooCommerce\PayPalCommerce\Onboarding\Environment;
|
|
use WooCommerce\PayPalCommerce\Onboarding\State;
|
|
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface;
|
|
|
|
return array(
|
|
'applepay.eligible' => static function ( ContainerInterface $container ): bool {
|
|
$apm_applies = $container->get( 'applepay.helpers.apm-applies' );
|
|
assert( $apm_applies instanceof ApmApplies );
|
|
|
|
return $apm_applies->for_country_currency();
|
|
},
|
|
'applepay.helpers.apm-applies' => static function ( ContainerInterface $container ) : ApmApplies {
|
|
return new ApmApplies(
|
|
$container->get( 'applepay.supported-country-currency-matrix' ),
|
|
$container->get( 'api.shop.currency' ),
|
|
$container->get( 'api.shop.country' )
|
|
);
|
|
},
|
|
'applepay.status-cache' => static function( ContainerInterface $container ): Cache {
|
|
return new Cache( 'ppcp-paypal-apple-status-cache' );
|
|
},
|
|
|
|
// We assume it's a referral if we can check product status without API request failures.
|
|
'applepay.is_referral' => static function ( ContainerInterface $container ): bool {
|
|
$status = $container->get( 'applepay.apple-product-status' );
|
|
assert( $status instanceof AppleProductStatus );
|
|
|
|
return ! $status->has_request_failure();
|
|
},
|
|
|
|
'applepay.availability_notice' => static function ( ContainerInterface $container ): AvailabilityNotice {
|
|
$settings = $container->get( 'wcgateway.settings' );
|
|
|
|
return new AvailabilityNotice(
|
|
$container->get( 'applepay.apple-product-status' ),
|
|
$container->get( 'wcgateway.is-wc-gateways-list-page' ),
|
|
$container->get( 'wcgateway.is-ppcp-settings-page' ),
|
|
$container->get( 'applepay.available' ) || ( ! $container->get( 'applepay.is_referral' ) ),
|
|
$container->get( 'applepay.server_supported' ),
|
|
$settings->has( 'applepay_validated' ) ? $settings->get( 'applepay_validated' ) === true : false,
|
|
$container->get( 'applepay.button' )
|
|
);
|
|
},
|
|
|
|
'applepay.apple-product-status' => static function( ContainerInterface $container ): AppleProductStatus {
|
|
return new AppleProductStatus(
|
|
$container->get( 'wcgateway.settings' ),
|
|
$container->get( 'api.endpoint.partners' ),
|
|
$container->get( 'onboarding.state' ),
|
|
$container->get( 'api.helper.failure-registry' )
|
|
);
|
|
},
|
|
'applepay.available' => static function ( ContainerInterface $container ): bool {
|
|
if ( apply_filters( 'woocommerce_paypal_payments_applepay_validate_product_status', true ) ) {
|
|
$status = $container->get( 'applepay.apple-product-status' );
|
|
assert( $status instanceof AppleProductStatus );
|
|
/**
|
|
* If merchant isn't onboarded via /v1/customer/partner-referrals this returns false as the API call fails.
|
|
*/
|
|
return apply_filters( 'woocommerce_paypal_payments_applepay_product_status', $status->is_active() );
|
|
}
|
|
return true;
|
|
},
|
|
'applepay.server_supported' => static function ( ContainerInterface $container ): bool {
|
|
return ! empty( $_SERVER['HTTPS'] ) && $_SERVER['HTTPS'] !== 'off';
|
|
},
|
|
'applepay.url' => static function ( ContainerInterface $container ): string {
|
|
$path = realpath( __FILE__ );
|
|
if ( false === $path ) {
|
|
return '';
|
|
}
|
|
return plugins_url(
|
|
'/modules/ppcp-applepay/',
|
|
dirname( $path, 3 ) . '/woocommerce-paypal-payments.php'
|
|
);
|
|
},
|
|
'applepay.sdk_script_url' => static function ( ContainerInterface $container ): string {
|
|
return 'https://applepay.cdn-apple.com/jsapi/v1/apple-pay-sdk.js';
|
|
},
|
|
'applepay.data_to_scripts' => static function ( ContainerInterface $container ): DataToAppleButtonScripts {
|
|
return new DataToAppleButtonScripts( $container->get( 'applepay.sdk_script_url' ), $container->get( 'wcgateway.settings' ) );
|
|
},
|
|
'applepay.button' => static function ( ContainerInterface $container ): ApplePayButton {
|
|
return new ApplePayButton(
|
|
$container->get( 'wcgateway.settings' ),
|
|
$container->get( 'woocommerce.logger.woocommerce' ),
|
|
$container->get( 'wcgateway.order-processor' ),
|
|
$container->get( 'applepay.url' ),
|
|
$container->get( 'ppcp.asset-version' ),
|
|
$container->get( 'applepay.data_to_scripts' ),
|
|
$container->get( 'wcgateway.settings.status' ),
|
|
$container->get( 'button.helper.cart-products' )
|
|
);
|
|
},
|
|
'applepay.blocks-payment-method' => static function ( ContainerInterface $container ): PaymentMethodTypeInterface {
|
|
return new BlocksPaymentMethod(
|
|
'ppcp-applepay',
|
|
$container->get( 'applepay.url' ),
|
|
$container->get( 'ppcp.asset-version' ),
|
|
$container->get( 'applepay.button' ),
|
|
$container->get( 'blocks.method' )
|
|
);
|
|
},
|
|
/**
|
|
* The matrix which countries and currency combinations can be used for ApplePay.
|
|
*/
|
|
'applepay.supported-country-currency-matrix' => static function ( ContainerInterface $container ) : array {
|
|
/**
|
|
* Returns which countries and currency combinations can be used for ApplePay.
|
|
*/
|
|
return apply_filters(
|
|
'woocommerce_paypal_payments_applepay_supported_country_currency_matrix',
|
|
array(
|
|
'GB' => array(
|
|
'AUD',
|
|
'CAD',
|
|
'CHF',
|
|
'CZK',
|
|
'DKK',
|
|
'EUR',
|
|
'GBP',
|
|
'HKD',
|
|
'HUF',
|
|
'JPY',
|
|
'NOK',
|
|
'NZD',
|
|
'PLN',
|
|
'SEK',
|
|
'SGD',
|
|
'USD',
|
|
),
|
|
'US' => array(
|
|
'AUD',
|
|
'CAD',
|
|
'EUR',
|
|
'GBP',
|
|
'JPY',
|
|
'USD',
|
|
),
|
|
'CA' => array(
|
|
'AUD',
|
|
'CAD',
|
|
'CHF',
|
|
'CZK',
|
|
'DKK',
|
|
'EUR',
|
|
'GBP',
|
|
'HKD',
|
|
'HUF',
|
|
'JPY',
|
|
'NOK',
|
|
'NZD',
|
|
'PLN',
|
|
'SEK',
|
|
'SGD',
|
|
'USD',
|
|
),
|
|
)
|
|
);
|
|
},
|
|
|
|
'applepay.enable-url-sandbox' => static function ( ContainerInterface $container ): string {
|
|
return 'https://www.sandbox.paypal.com/bizsignup/add-product?product=payment_methods&capabilities=APPLE_PAY';
|
|
},
|
|
|
|
'applepay.enable-url-live' => static function ( ContainerInterface $container ): string {
|
|
return 'https://www.paypal.com/bizsignup/add-product?product=payment_methods&capabilities=APPLE_PAY';
|
|
},
|
|
|
|
'applepay.settings.connection.status-text' => static function ( ContainerInterface $container ): string {
|
|
$state = $container->get( 'onboarding.state' );
|
|
if ( $state->current_state() < State::STATE_ONBOARDED ) {
|
|
return '';
|
|
}
|
|
|
|
$product_status = $container->get( 'applepay.apple-product-status' );
|
|
assert( $product_status instanceof AppleProductStatus );
|
|
|
|
$environment = $container->get( 'onboarding.environment' );
|
|
assert( $environment instanceof Environment );
|
|
|
|
$enabled = $product_status->is_active();
|
|
|
|
$enabled_status_text = esc_html__( 'Status: Available', 'woocommerce-paypal-payments' );
|
|
$disabled_status_text = esc_html__( 'Status: Not yet enabled', 'woocommerce-paypal-payments' );
|
|
|
|
$button_text = $enabled
|
|
? esc_html__( 'Settings', 'woocommerce-paypal-payments' )
|
|
: esc_html__( 'Enable Apple Pay', 'woocommerce-paypal-payments' );
|
|
|
|
$enable_url = $environment->current_environment_is( Environment::PRODUCTION )
|
|
? $container->get( 'applepay.enable-url-live' )
|
|
: $container->get( 'applepay.enable-url-sandbox' );
|
|
|
|
$button_url = $enabled
|
|
? admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=ppcp-gateway#field-alternative_payment_methods' )
|
|
: $enable_url;
|
|
|
|
return sprintf(
|
|
'<p>%1$s %2$s</p><p><a target="%3$s" href="%4$s" class="button">%5$s</a></p>',
|
|
$enabled ? $enabled_status_text : $disabled_status_text,
|
|
$enabled ? '<span class="dashicons dashicons-yes"></span>' : '<span class="dashicons dashicons-no"></span>',
|
|
$enabled ? '_self' : '_blank',
|
|
esc_url( $button_url ),
|
|
esc_html( $button_text )
|
|
);
|
|
},
|
|
|
|
);
|