mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 04:58:28 +08:00
106 lines
2.8 KiB
PHP
106 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* The API module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\ApiClient
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\ApiClient;
|
|
|
|
use WC_Order;
|
|
use WooCommerce\PayPalCommerce\ApiClient\Helper\FailureRegistry;
|
|
use WooCommerce\PayPalCommerce\ApiClient\Helper\OrderTransient;
|
|
use Inpsyde\Modularity\Module\ExecutableModule;
|
|
use Inpsyde\Modularity\Module\ExtendingModule;
|
|
use Inpsyde\Modularity\Module\ModuleClassNameIdTrait;
|
|
use Inpsyde\Modularity\Module\ServiceModule;
|
|
use Psr\Container\ContainerInterface;
|
|
use WooCommerce\PayPalCommerce\ApiClient\Entity\Order;
|
|
|
|
/**
|
|
* Class ApiModule
|
|
*/
|
|
class ApiModule implements ServiceModule, ExtendingModule, ExecutableModule {
|
|
use ModuleClassNameIdTrait;
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function services(): array {
|
|
return require __DIR__ . '/../services.php';
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function extensions(): array {
|
|
return require __DIR__ . '/../extensions.php';
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function run( ContainerInterface $c ): bool {
|
|
add_action(
|
|
'woocommerce_after_calculate_totals',
|
|
function ( \WC_Cart $cart ) {
|
|
$fees = $cart->fees_api()->get_fees();
|
|
WC()->session->set( 'ppcp_fees', $fees );
|
|
}
|
|
);
|
|
add_filter(
|
|
'ppcp_create_order_request_body_data',
|
|
function( array $data ) use ( $c ) {
|
|
|
|
foreach ( ( $data['purchase_units'] ?? array() ) as $purchase_unit_index => $purchase_unit ) {
|
|
foreach ( ( $purchase_unit['items'] ?? array() ) as $item_index => $item ) {
|
|
$data['purchase_units'][ $purchase_unit_index ]['items'][ $item_index ]['name'] =
|
|
apply_filters( 'woocommerce_paypal_payments_cart_line_item_name', $item['name'], $item['cart_item_key'] ?? null );
|
|
}
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
);
|
|
add_action(
|
|
'woocommerce_paypal_payments_paypal_order_created',
|
|
function ( Order $order ) use ( $c ) {
|
|
$transient = $c->has( 'api.helper.order-transient' ) ? $c->get( 'api.helper.order-transient' ) : null;
|
|
|
|
if ( $transient instanceof OrderTransient ) {
|
|
$transient->on_order_created( $order );
|
|
}
|
|
},
|
|
10,
|
|
1
|
|
);
|
|
add_action(
|
|
'woocommerce_paypal_payments_woocommerce_order_created',
|
|
function ( WC_Order $wc_order, Order $order ) use ( $c ) {
|
|
$transient = $c->has( 'api.helper.order-transient' ) ? $c->get( 'api.helper.order-transient' ) : null;
|
|
|
|
if ( $transient instanceof OrderTransient ) {
|
|
$transient->on_woocommerce_order_created( $wc_order, $order );
|
|
}
|
|
},
|
|
10,
|
|
2
|
|
);
|
|
add_action(
|
|
'woocommerce_paypal_payments_clear_apm_product_status',
|
|
function () use ( $c ) {
|
|
$failure_registry = $c->has( 'api.helper.failure-registry' ) ? $c->get( 'api.helper.failure-registry' ) : null;
|
|
|
|
if ( $failure_registry instanceof FailureRegistry ) {
|
|
$failure_registry->clear_failures( FailureRegistry::SELLER_STATUS_KEY );
|
|
}
|
|
},
|
|
10,
|
|
2
|
|
);
|
|
|
|
return true;
|
|
}
|
|
}
|