mirror of
https://github.com/pronamic/woocommerce-subscriptions.git
synced 2025-10-17 23:02:56 +00:00
144 lines
4.3 KiB
PHP
Executable File
144 lines
4.3 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* WooCommerce Subscriptions Renewal Functions
|
|
*
|
|
* Functions for managing renewal of a subscription.
|
|
*
|
|
* @author Prospress
|
|
* @category Core
|
|
* @package WooCommerce Subscriptions/Functions
|
|
* @version 2.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
/**
|
|
* Create a renewal order to record a scheduled subscription payment.
|
|
*
|
|
* This method simply creates an order with the same post meta, order items and order item meta as the subscription
|
|
* passed to it.
|
|
*
|
|
* @param int | WC_Subscription $subscription Post ID of a 'shop_subscription' post, or instance of a WC_Subscription object
|
|
* @return WC_Order | WP_Error
|
|
* @since 2.0
|
|
*/
|
|
function wcs_create_renewal_order( $subscription ) {
|
|
|
|
$renewal_order = wcs_create_order_from_subscription( $subscription, 'renewal_order' );
|
|
|
|
if ( is_wp_error( $renewal_order ) ) {
|
|
do_action( 'wcs_failed_to_create_renewal_order', $renewal_order, $subscription );
|
|
return new WP_Error( 'renewal-order-error', $renewal_order->get_error_message() );
|
|
}
|
|
|
|
WCS_Related_Order_Store::instance()->add_relation( $renewal_order, $subscription, 'renewal' );
|
|
|
|
return apply_filters( 'wcs_renewal_order_created', $renewal_order, $subscription );
|
|
}
|
|
|
|
/**
|
|
* Check if a given order is a subscription renewal order.
|
|
*
|
|
* @param WC_Order|int $order The WC_Order object or ID of a WC_Order order.
|
|
* @since 2.0
|
|
*/
|
|
function wcs_order_contains_renewal( $order ) {
|
|
|
|
if ( ! is_a( $order, 'WC_Abstract_Order' ) ) {
|
|
$order = wc_get_order( $order );
|
|
}
|
|
|
|
$related_subscriptions = wcs_get_subscriptions_for_renewal_order( $order );
|
|
|
|
if ( wcs_is_order( $order ) && ! empty( $related_subscriptions ) ) {
|
|
$is_renewal = true;
|
|
} else {
|
|
$is_renewal = false;
|
|
}
|
|
|
|
return apply_filters( 'woocommerce_subscriptions_is_renewal_order', $is_renewal, $order );
|
|
}
|
|
|
|
/**
|
|
* Checks the cart to see if it contains a subscription product renewal.
|
|
*
|
|
* @param bool | Array The cart item containing the renewal, else false.
|
|
* @return string
|
|
* @since 2.0
|
|
*/
|
|
function wcs_cart_contains_renewal() {
|
|
|
|
$contains_renewal = false;
|
|
|
|
if ( ! empty( WC()->cart->cart_contents ) ) {
|
|
foreach ( WC()->cart->cart_contents as $cart_item ) {
|
|
if ( isset( $cart_item['subscription_renewal'] ) ) {
|
|
$contains_renewal = $cart_item;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return apply_filters( 'wcs_cart_contains_renewal', $contains_renewal );
|
|
}
|
|
|
|
/**
|
|
* Checks the cart to see if it contains a subscription product renewal for a failed renewal payment.
|
|
*
|
|
* @return bool|array The cart item containing the renewal, else false.
|
|
* @since 2.0
|
|
*/
|
|
function wcs_cart_contains_failed_renewal_order_payment() {
|
|
|
|
$contains_renewal = false;
|
|
$cart_item = wcs_cart_contains_renewal();
|
|
|
|
if ( false !== $cart_item && isset( $cart_item['subscription_renewal']['renewal_order_id'] ) ) {
|
|
$renewal_order = wc_get_order( $cart_item['subscription_renewal']['renewal_order_id'] );
|
|
$is_failed_renewal_order = apply_filters( 'woocommerce_subscriptions_is_failed_renewal_order', $renewal_order->has_status( 'failed' ), $cart_item['subscription_renewal']['renewal_order_id'], $renewal_order->get_status() );
|
|
|
|
if ( $is_failed_renewal_order ) {
|
|
$contains_renewal = $cart_item;
|
|
}
|
|
}
|
|
|
|
return apply_filters( 'wcs_cart_contains_failed_renewal_order_payment', $contains_renewal );
|
|
}
|
|
|
|
/**
|
|
* Get the subscription/s to which a resubscribe order relates.
|
|
*
|
|
* @param WC_Order|int $order The WC_Order object or ID of a WC_Order order.
|
|
* @since 2.0
|
|
*/
|
|
function wcs_get_subscriptions_for_renewal_order( $order ) {
|
|
return wcs_get_subscriptions_for_order( $order, array( 'order_type' => 'renewal' ) );
|
|
}
|
|
|
|
/**
|
|
* Get the last renewal order which isn't an early renewal order.
|
|
*
|
|
* @since 2.6.0
|
|
*
|
|
* @param WC_Subscription $subscription The subscription object.
|
|
* @return WC_Order|bool The last non-early renewal order, otherwise false.
|
|
*/
|
|
function wcs_get_last_non_early_renewal_order( $subscription ) {
|
|
$last_non_early_renewal = false;
|
|
$renewal_orders = $subscription->get_related_orders( 'all', 'renewal' );
|
|
|
|
// We need the orders sorted by the date they were created, with the newest first.
|
|
wcs_sort_objects( $renewal_orders, 'date_created', 'descending' );
|
|
|
|
foreach ( $renewal_orders as $renewal_order ) {
|
|
if ( ! wcs_order_contains_early_renewal( $renewal_order ) ) {
|
|
$last_non_early_renewal = $renewal_order;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return $last_non_early_renewal;
|
|
}
|