Add GooglePay onboarding integration.

This commit is contained in:
Pedro Silva 2023-09-01 11:32:26 +01:00
parent 0ac4089bec
commit d6a564f24f
No known key found for this signature in database
GPG key ID: E2EE20C0669D24B3
4 changed files with 150 additions and 48 deletions

View file

@ -10,21 +10,28 @@ declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\Button\Assets;
/**
* Interface SmartButtonInterface
* Interface ButtonInterface
*/
interface ButtonInterface {
/**
* Initializes the button.
*/
public function initialize(): void;
/**
* Indicates if the button is enabled.
*
* @return bool
*/
public function is_enabled(): bool;
/**
* Renders the necessary HTML.
*
* @return bool
*/
public function render_buttons(): bool;
/**
* Whether any of the scripts should be loaded.
*/
public function should_load_script(): bool;
public function render(): bool;
/**
* Enqueues scripts/styles.

View file

@ -16,9 +16,16 @@ use WooCommerce\PayPalCommerce\Googlepay\Assets\Button;
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface;
return array(
'googlepay.button' => static function ( ContainerInterface $container ): ButtonInterface {
// TODO : check other statuses.
'googlepay.eligible' => static function ( ContainerInterface $container ): bool {
// TODO : add handlers.
return true;
},
'googlepay.available' => static function ( ContainerInterface $container ): bool {
// TODO : add handlers.
return true;
},
'googlepay.button' => static function ( ContainerInterface $container ): ButtonInterface {
return new Button(
$container->get( 'googlepay.url' ),
$container->get( 'googlepay.sdk_url' ),

View file

@ -9,10 +9,12 @@ declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\Googlepay\Assets;
use Exception;
use Psr\Log\LoggerInterface;
use WooCommerce\PayPalCommerce\Button\Assets\ButtonInterface;
use WooCommerce\PayPalCommerce\Onboarding\Environment;
use WooCommerce\PayPalCommerce\Session\SessionHandler;
use WooCommerce\PayPalCommerce\WcGateway\Exception\NotFoundException;
use WooCommerce\PayPalCommerce\WcGateway\Helper\SettingsStatus;
use WooCommerce\PayPalCommerce\WcGateway\Settings\Settings;
@ -121,12 +123,110 @@ class Button implements ButtonInterface {
}
/**
* Registers the necessary action hooks to render the HTML depending on the settings.
* Initializes the button.
*/
public function initialize(): void {
add_filter( 'ppcp_onboarding_options', array( $this, 'add_onboarding_options' ), 10, 1 );
add_filter( 'ppcp_partner_referrals_data', array( $this, 'add_partner_referrals_data' ), 10, 1 );
}
/**
* Adds the GooglePay onboarding option.
*
* @param string $options The options.
* @return string
*
* @psalm-suppress MissingClosureParamType
*/
private function add_onboarding_options( $options ): string {
$checked = '';
try {
$onboard_with_apple = $this->settings->get( 'ppcp-onboarding-apple' );
if ( $onboard_with_apple === '1' ) {
$checked = 'checked';
}
} catch ( NotFoundException $exception ) {
$checked = '';
}
// TODO : the input has no name, is it doing anything?
return $options
. '<li><label><input type="checkbox" id="ppcp-onboarding-google" ' . $checked . '> '
. __( 'Onboard with GooglePay', 'woocommerce-paypal-payments' )
. '</label></li>';
}
/**
* Adds to partner referrals data.
*
* @param array $data The referrals data.
* @return array
*/
private function add_partner_referrals_data( array $data ): array {
try {
$onboard_with_google = $this->settings->get( 'ppcp-onboarding-google' );
if ( ! wc_string_to_bool( $onboard_with_google ) ) {
return $data;
}
} catch ( NotFoundException $exception ) {
return $data;
}
if ( ! in_array( 'PAYMENT_METHODS', $data['products'], true ) ) {
if ( in_array( 'PPCP', $data['products'], true ) ) {
$data['products'][] = 'PAYMENT_METHODS';
} elseif ( in_array( 'EXPRESS_CHECKOUT', $data['products'], true ) ) { // TODO A bit sketchy, maybe replace on the EXPRESS_CHECKOUT index.
$data['products'][0] = 'PAYMENT_METHODS';
}
}
$data['capabilities'][] = 'GOOGLE_PAY';
$nonce = $data['operations'][0]['api_integration_preference']['rest_api_integration']['first_party_details']['seller_nonce'];
$data['operations'][] = array(
'operation' => 'API_INTEGRATION',
'api_integration_preference' => array(
'rest_api_integration' => array(
'integration_method' => 'PAYPAL',
'integration_type' => 'THIRD_PARTY',
'third_party_details' => array(
'features' => array(
'PAYMENT',
'REFUND',
),
'seller_nonce' => $nonce,
),
),
),
);
return $data;
}
/**
* Returns if Google Pay button is enabled
*
* @return bool
*/
public function render_buttons(): bool {
if ( ! $this->isGooglePayButtonEnabled() ) {
public function is_enabled(): bool {
try {
return $this->settings->has( 'googlepay_button_enabled' ) && $this->settings->get( 'googlepay_button_enabled' );
} catch ( Exception $e ) {
return false;
}
}
/**
* Registers the necessary action hooks to render the HTML depending on the settings.
*
* @return bool
*
* @psalm-suppress RedundantCondition
*/
public function render(): bool {
if ( ! $this->is_enabled() ) {
return false;
}
@ -234,19 +334,14 @@ class Button implements ButtonInterface {
<?php
}
/**
* Whether any of the scripts should be loaded.
*
* @return bool
*/
public function should_load_script(): bool {
return $this->isGooglePayButtonEnabled();
}
/**
* Enqueues scripts/styles.
*/
public function enqueue(): void {
if ( ! $this->is_enabled() ) {
return;
}
wp_register_script(
'wc-ppcp-googlepay',
untrailingslashit( $this->module_url ) . '/assets/js/boot.js',
@ -316,13 +411,4 @@ class Button implements ButtonInterface {
return $values;
}
/**
* Returns if Google Pay button is enabled
*
* @return bool
*/
private function isGooglePayButtonEnabled(): bool {
return $this->settings->has('googlepay_button_enabled') && !!$this->settings->get('googlepay_button_enabled');
}
}

View file

@ -34,40 +34,42 @@ class GooglepayModule implements ModuleInterface {
* {@inheritDoc}
*/
public function run( ContainerInterface $c ): void {
$button = $c->get( 'googlepay.button' );
assert( $button instanceof ButtonInterface );
if ( ! $c->get( 'googlepay.eligible' ) ) {
return;
}
$button->initialize();
if ( ! $c->get( 'googlepay.available' ) ) {
return;
}
add_action(
'wp',
static function () use ( $c ) {
static function () use ( $c, $button ) {
if ( is_admin() ) {
return;
}
$button = $c->get( 'googlepay.button' );
/**
* The Button.
*
* @var ButtonInterface $button
*/
$button->render_buttons();
$button->render();
}
);
add_action(
'wp_enqueue_scripts',
static function () use ( $c ) {
$button = $c->get( 'googlepay.button' );
assert( $button instanceof ButtonInterface );
if ( $button->should_load_script() ) {
$button->enqueue();
}
static function () use ( $c, $button ) {
$button->enqueue();
}
);
add_action(
'woocommerce_blocks_payment_method_type_registration',
function( PaymentMethodRegistry $payment_method_registry ) use ( $c ): void {
$payment_method_registry->register( $c->get( 'googlepay.blocks-payment-method' ) );
function( PaymentMethodRegistry $payment_method_registry ) use ( $c, $button ): void {
if ( $button->is_enabled() ) {
$payment_method_registry->register( $c->get( 'googlepay.blocks-payment-method' ) );
}
}
);
}