mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-08-04 03:40:45 +08:00
85 lines
3 KiB
PHP
85 lines
3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Subscriptions renewal handler.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\WcSubscriptions
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\PayPalSubscriptions;
|
|
|
|
use WooCommerce\PayPalCommerce\Vendor\Psr\Log\LoggerInterface;
|
|
use WC_Data_Exception;
|
|
use WC_Order;
|
|
use WC_Subscription;
|
|
use WooCommerce\PayPalCommerce\WcGateway\Processor\TransactionIdHandlingTrait;
|
|
/**
|
|
* Class RenewalHandler
|
|
*/
|
|
class RenewalHandler
|
|
{
|
|
use TransactionIdHandlingTrait;
|
|
/**
|
|
* The logger.
|
|
*
|
|
* @var LoggerInterface
|
|
*/
|
|
private $logger;
|
|
/**
|
|
* RenewalHandler constructor.
|
|
*
|
|
* @param LoggerInterface $logger The logger.
|
|
*/
|
|
public function __construct(LoggerInterface $logger)
|
|
{
|
|
$this->logger = $logger;
|
|
}
|
|
/**
|
|
* Process subscription renewal.
|
|
*
|
|
* @param WC_Subscription[] $subscriptions WC Subscriptions.
|
|
* @param string $transaction_id PayPal transaction ID.
|
|
* @return void
|
|
* @throws WC_Data_Exception If something goes wrong while setting payment method.
|
|
*/
|
|
public function process(array $subscriptions, string $transaction_id): void
|
|
{
|
|
foreach ($subscriptions as $subscription) {
|
|
if ($this->is_for_renewal_order($subscription)) {
|
|
$subscription->update_status('on-hold');
|
|
$renewal_order = wcs_create_renewal_order($subscription);
|
|
if ($renewal_order instanceof WC_Order) {
|
|
$this->logger->info(sprintf('Processing renewal order #%s for subscription #%s', $renewal_order->get_id(), $subscription->get_id()));
|
|
$renewal_order->set_payment_method($subscription->get_payment_method());
|
|
$renewal_order->payment_complete();
|
|
$this->update_transaction_id($transaction_id, $renewal_order, $this->logger);
|
|
break;
|
|
}
|
|
}
|
|
$parent_order = wc_get_order($subscription->get_parent());
|
|
if ($parent_order instanceof WC_Order) {
|
|
$this->logger->info(sprintf('Processing parent order #%s for subscription #%s', $parent_order->get_id(), $subscription->get_id()));
|
|
$subscription->update_meta_data('_ppcp_is_subscription_renewal', 'true');
|
|
$subscription->save_meta_data();
|
|
$this->update_transaction_id($transaction_id, $parent_order, $this->logger);
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* Checks whether subscription order is for renewal or not.
|
|
*
|
|
* @param WC_Subscription $subscription WC Subscription.
|
|
* @return bool
|
|
*/
|
|
private function is_for_renewal_order(WC_Subscription $subscription): bool
|
|
{
|
|
$subscription_renewal_meta = $subscription->get_meta('_ppcp_is_subscription_renewal') ?? '';
|
|
if ($subscription_renewal_meta === 'true') {
|
|
return \true;
|
|
}
|
|
if (time() >= $subscription->get_time('start') && time() - $subscription->get_time('start') <= 8 * HOUR_IN_SECONDS) {
|
|
return \false;
|
|
}
|
|
return \true;
|
|
}
|
|
}
|