/**
  * Sets up renewal for subscriptions managed by Subscriptions.
  *
  * This function is hooked early on the scheduled subscription payment hook and will:
  * - place the subscription on-hold
  * - create a renewal order, with the pending status if it requires payment, or processing/complete
  *   if the recurring total is $0.
  *
  * @param int $subscription_id The ID of a 'shop_subscription' post
  * @since 2.0
  */
 public static function prepare_renewal($subscription_id)
 {
     $subscription = wcs_get_subscription($subscription_id);
     if (empty($subscription) || !$subscription->has_status('active')) {
         return false;
     }
     // If the subscription is using manual payments, the gateway isn't active or it manages scheduled payments
     if (0 == $subscription->get_total() || $subscription->is_manual() || empty($subscription->payment_method) || !$subscription->payment_method_supports('gateway_scheduled_payments')) {
         // Always put the subscription on hold in case something goes wrong while trying to process renewal
         $subscription->update_status('on-hold', __('Subscription renewal payment due:', 'woocommerce-subscriptions'));
         // Generate a renewal order for payment gateways to use to record the payment (and determine how much is due)
         $renewal_order = wcs_create_renewal_order($subscription);
         if (0 == $subscription->get_total()) {
             $renewal_order->payment_complete();
             $subscription->update_status('active');
             // don't call payment_complete() because technically, no payment was received
         } else {
             if ($subscription->is_manual()) {
                 do_action('woocommerce_generated_manual_renewal_order', $renewal_order->id);
             } else {
                 $renewal_order->set_payment_method($subscription->payment_gateway);
             }
         }
     }
 }
 /**
  * Process a PayPal Standard Subscription IPN request
  *
  * @param array $transaction_details Post data after wp_unslash
  * @since 2.0
  */
 protected function process_ipn_request($transaction_details)
 {
     // Get the subscription ID and order_key with backward compatibility
     $subscription_id_and_key = self::get_order_id_and_key($transaction_details, 'shop_subscription');
     $subscription = wcs_get_subscription($subscription_id_and_key['order_id']);
     $subscription_key = $subscription_id_and_key['order_key'];
     // We have an invalid $subscription, probably because invoice_prefix has changed since the subscription was first created, so get the subscription by order key
     if (!isset($subscription->id)) {
         $subscription = wcs_get_subscription(wc_get_order_id_by_order_key($subscription_key));
     }
     if ('recurring_payment_suspended_due_to_max_failed_payment' == $transaction_details['txn_type'] && empty($subscription)) {
         WC_Gateway_Paypal::log('Returning as "recurring_payment_suspended_due_to_max_failed_payment" transaction is for a subscription created with Express Checkout');
         return;
     }
     if (empty($subscription)) {
         WC_Gateway_Paypal::log('Subscription IPN Error: Could not find matching Subscription.');
         exit;
     }
     if ($subscription->order_key != $subscription_key) {
         WC_Gateway_Paypal::log('Subscription IPN Error: Subscription Key does not match invoice.');
         exit;
     }
     if (isset($transaction_details['ipn_track_id'])) {
         // Make sure the IPN request has not already been handled
         $handled_ipn_requests = get_post_meta($subscription->id, '_paypal_ipn_tracking_ids', true);
         if (empty($handled_ipn_requests)) {
             $handled_ipn_requests = array();
         }
         // The 'ipn_track_id' is not a unique ID and is shared between different transaction types, so create a unique ID by prepending the transaction type
         $ipn_id = $transaction_details['txn_type'] . '_' . $transaction_details['ipn_track_id'];
         if (in_array($ipn_id, $handled_ipn_requests)) {
             WC_Gateway_Paypal::log('Subscription IPN Error: IPN ' . $ipn_id . ' message has already been correctly handled.');
             exit;
         }
         // Make sure we're not in the process of handling this IPN request on a server under extreme load and therefore, taking more than a minute to process it (which is the amount of time PayPal allows before resending the IPN request)
         $ipn_lock_transient_name = 'wcs_pp_' . $ipn_id;
         // transient names need to be less than 45 characters and the $ipn_id will be around 30 characters, e.g. subscr_payment_5ab4c38e1f39d
         if ('in-progress' == get_transient($ipn_lock_transient_name) && 'recurring_payment_suspended_due_to_max_failed_payment' !== $transaction_details['txn_type']) {
             WC_Gateway_Paypal::log('Subscription IPN Error: an older IPN request with ID ' . $ipn_id . ' is still in progress.');
             // We need to send an error code to make sure PayPal does retry the IPN after our lock expires, in case something is actually going wrong and the server isn't just taking a long time to process the request
             status_header(503);
             exit;
         }
         // Set a transient to block IPNs with this transaction ID for the next 5 minutes
         set_transient($ipn_lock_transient_name, 'in-progress', apply_filters('woocommerce_subscriptions_paypal_ipn_request_lock_time', 5 * MINUTE_IN_SECONDS));
     }
     if (isset($transaction_details['txn_id'])) {
         // Make sure the IPN request has not already been handled
         $handled_transactions = get_post_meta($subscription->id, '_paypal_transaction_ids', true);
         if (empty($handled_transactions)) {
             $handled_transactions = array();
         }
         $transaction_id = $transaction_details['txn_id'];
         if (isset($transaction_details['txn_type'])) {
             $transaction_id .= '_' . $transaction_details['txn_type'];
         }
         // The same transaction ID is used for different payment statuses, so make sure we handle it only once. See: http://stackoverflow.com/questions/9240235/paypal-ipn-unique-identifier
         if (isset($transaction_details['payment_status'])) {
             $transaction_id .= '_' . $transaction_details['payment_status'];
         }
         if (in_array($transaction_id, $handled_transactions)) {
             WC_Gateway_Paypal::log('Subscription IPN Error: transaction ' . $transaction_id . ' has already been correctly handled.');
             exit;
         }
     }
     WC_Gateway_Paypal::log('Subscription transaction details: ' . print_r($transaction_details, true));
     WC_Gateway_Paypal::log('Subscription Transaction Type: ' . $transaction_details['txn_type']);
     $is_renewal_sign_up_after_failure = false;
     // If the invoice ID doesn't match the default invoice ID and contains the string '-wcsfrp-', the IPN is for a subscription payment to fix up a failed payment
     if (in_array($transaction_details['txn_type'], array('subscr_signup', 'subscr_payment')) && false !== strpos($transaction_details['invoice'], '-wcsfrp-')) {
         $renewal_order = wc_get_order(substr($transaction_details['invoice'], strrpos($transaction_details['invoice'], '-') + 1));
         // check if the failed signup has been previously recorded
         if ($renewal_order->id != get_post_meta($subscription->id, '_paypal_failed_sign_up_recorded', true)) {
             $is_renewal_sign_up_after_failure = true;
         }
     }
     // If the invoice ID doesn't match the default invoice ID and contains the string '-wcscpm-', the IPN is for a subscription payment method change
     if ('subscr_signup' == $transaction_details['txn_type'] && false !== strpos($transaction_details['invoice'], '-wcscpm-')) {
         $is_payment_change = true;
     } else {
         $is_payment_change = false;
     }
     // Ignore IPN messages when the payment method isn't PayPal
     if ('paypal' != $subscription->payment_method) {
         // The 'recurring_payment_suspended' transaction is actually an Express Checkout transaction type, but PayPal also send it for PayPal Standard Subscriptions suspended by admins at PayPal, so we need to handle it *if* the subscription has PayPal as the payment method, or leave it if the subscription is using a different payment method (because it might be using PayPal Express Checkout or PayPal Digital Goods)
         if ('recurring_payment_suspended' == $transaction_details['txn_type']) {
             WC_Gateway_Paypal::log('"recurring_payment_suspended" IPN ignored: recurring payment method is not "PayPal". Returning to allow another extension to process the IPN, like PayPal Digital Goods.');
             return;
         } elseif (false === $is_renewal_sign_up_after_failure && false === $is_payment_change) {
             WC_Gateway_Paypal::log('IPN ignored, recurring payment method has changed.');
             exit;
         }
     }
     if ($is_renewal_sign_up_after_failure || $is_payment_change) {
         // Store the old profile ID on the order (for the first IPN message that comes through)
         $existing_profile_id = wcs_get_paypal_id($subscription);
         if (empty($existing_profile_id) || $existing_profile_id !== $transaction_details['subscr_id']) {
             update_post_meta($subscription->id, '_old_paypal_subscriber_id', $existing_profile_id);
             update_post_meta($subscription->id, '_old_payment_method', $subscription->payment_method);
         }
     }
     // Save the profile ID if it's not a cancellation/expiration request
     if (isset($transaction_details['subscr_id']) && !in_array($transaction_details['txn_type'], array('subscr_cancel', 'subscr_eot'))) {
         wcs_set_paypal_id($subscription, $transaction_details['subscr_id']);
         if (wcs_is_paypal_profile_a($transaction_details['subscr_id'], 'out_of_date_id') && 'disabled' != get_option('wcs_paypal_invalid_profile_id')) {
             update_option('wcs_paypal_invalid_profile_id', 'yes');
         }
     }
     $is_first_payment = $subscription->get_completed_payment_count() < 1 ? true : false;
     if ($subscription->has_status('switched')) {
         WC_Gateway_Paypal::log('IPN ignored, subscription has been switched.');
         exit;
     }
     switch ($transaction_details['txn_type']) {
         case 'subscr_signup':
             // Store PayPal Details on Subscription and Order
             $this->save_paypal_meta_data($subscription, $transaction_details);
             $this->save_paypal_meta_data($subscription->order, $transaction_details);
             // When there is a free trial & no initial payment amount, we need to mark the order as paid and activate the subscription
             if (!$is_payment_change && !$is_renewal_sign_up_after_failure && 0 == $subscription->order->get_total()) {
                 // Safe to assume the subscription has an order here because otherwise we wouldn't get a 'subscr_signup' IPN
                 $subscription->order->payment_complete();
                 // No 'txn_id' value for 'subscr_signup' IPN messages
                 update_post_meta($subscription->id, '_paypal_first_ipn_ignored_for_pdt', 'true');
             }
             // Payment completed
             if ($is_payment_change) {
                 // Set PayPal as the new payment method
                 WC_Subscriptions_Change_Payment_Gateway::update_payment_method($subscription, 'paypal');
                 // We need to cancel the subscription now that the method has been changed successfully
                 if ('paypal' == get_post_meta($subscription->id, '_old_payment_method', true)) {
                     self::cancel_subscription($subscription, get_post_meta($subscription->id, '_old_paypal_subscriber_id', true));
                 }
                 $subscription->add_order_note(_x('IPN subscription payment method changed to PayPal.', 'when it is a payment change, and there is a subscr_signup message, this will be a confirmation message that PayPal accepted it being the new payment method', 'woocommerce-subscriptions'));
             } else {
                 $subscription->add_order_note(__('IPN subscription sign up completed.', 'woocommerce-subscriptions'));
             }
             if ($is_payment_change) {
                 WC_Gateway_Paypal::log('IPN subscription payment method changed for subscription ' . $subscription->id);
             } else {
                 WC_Gateway_Paypal::log('IPN subscription sign up completed for subscription ' . $subscription->id);
             }
             break;
         case 'subscr_payment':
             if (!$is_first_payment && !$is_renewal_sign_up_after_failure) {
                 if ($subscription->has_status('active')) {
                     remove_action('woocommerce_subscription_on-hold_paypal', 'WCS_PayPal_Status_Manager::suspend_subscription');
                     $subscription->update_status('on-hold');
                     add_action('woocommerce_subscription_on-hold_paypal', 'WCS_PayPal_Status_Manager::suspend_subscription');
                 }
                 // Generate a renewal order to record the payment (and determine how much is due)
                 $renewal_order = wcs_create_renewal_order($subscription);
                 // Set PayPal as the payment method (we can't use $renewal_order->set_payment_method() here as it requires an object we don't have)
                 $available_gateways = WC()->payment_gateways->get_available_payment_gateways();
                 $renewal_order->set_payment_method($available_gateways['paypal']);
             }
             if ('completed' == strtolower($transaction_details['payment_status'])) {
                 // Store PayPal Details
                 $this->save_paypal_meta_data($subscription, $transaction_details);
                 // Subscription Payment completed
                 $subscription->add_order_note(__('IPN subscription payment completed.', 'woocommerce-subscriptions'));
                 WC_Gateway_Paypal::log('IPN subscription payment completed for subscription ' . $subscription->id);
                 // First payment on order, process payment & activate subscription
                 if ($is_first_payment) {
                     $subscription->order->payment_complete($transaction_details['txn_id']);
                     // Store PayPal Details on Order
                     $this->save_paypal_meta_data($subscription->order, $transaction_details);
                     // IPN got here first or PDT will never arrive. Normally PDT would have arrived, so the first IPN would not be the first payment. In case the the first payment is an IPN, we need to make sure to not ignore the second one
                     update_post_meta($subscription->id, '_paypal_first_ipn_ignored_for_pdt', 'true');
                     // Ignore the first IPN message if the PDT should have handled it (if it didn't handle it, it will have been dealt with as first payment), but set a flag to make sure we only ignore it once
                 } elseif ($subscription->get_completed_payment_count() == 1 && '' !== WCS_PayPal::get_option('identity_token') && 'true' != get_post_meta($subscription->id, '_paypal_first_ipn_ignored_for_pdt', true) && false === $is_renewal_sign_up_after_failure) {
                     WC_Gateway_Paypal::log('IPN subscription payment ignored for subscription ' . $subscription->id . ' due to PDT previously handling the payment.');
                     update_post_meta($subscription->id, '_paypal_first_ipn_ignored_for_pdt', 'true');
                     // Process the payment if the subscription is active
                 } elseif (!$subscription->has_status(array('cancelled', 'expired', 'switched', 'trash'))) {
                     if (true === $is_renewal_sign_up_after_failure && is_object($renewal_order)) {
                         update_post_meta($subscription->id, '_paypal_failed_sign_up_recorded', $renewal_order->id);
                         // We need to cancel the old subscription now that the method has been changed successfully
                         if ('paypal' == get_post_meta($subscription->id, '_old_payment_method', true)) {
                             $profile_id = get_post_meta($subscription->id, '_old_paypal_subscriber_id', true);
                             // Make sure we don't cancel the current profile
                             if ($profile_id !== $transaction_details['subscr_id']) {
                                 self::cancel_subscription($subscription, $profile_id);
                             }
                             $subscription->add_order_note(__('IPN subscription failing payment method changed.', 'woocommerce-subscriptions'));
                         }
                     }
                     try {
                         // to cover the case when PayPal drank too much coffee and sent IPNs early - needs to happen before $renewal_order->payment_complete
                         $update_dates = array();
                         if ($subscription->get_time('trial_end') > gmdate('U')) {
                             $update_dates['trial_end'] = gmdate('Y-m-d H:i:s', gmdate('U') - 1);
                             WC_Gateway_Paypal::log(sprintf('IPN subscription payment for subscription %d: trial_end is in futute (date: %s) setting to %s.', $subscription->id, $subscription->get_date('trial_end'), $update_dates['trial_end']));
                         } else {
                             WC_Gateway_Paypal::log(sprintf('IPN subscription payment for subscription %d: trial_end is in past (date: %s).', $subscription->id, $subscription->get_date('trial_end')));
                         }
                         if ($subscription->get_time('next_payment') > gmdate('U')) {
                             $update_dates['next_payment'] = gmdate('Y-m-d H:i:s', gmdate('U') - 1);
                             WC_Gateway_Paypal::log(sprintf('IPN subscription payment for subscription %d: next_payment is in future (date: %s) setting to %s.', $subscription->id, $subscription->get_date('next_payment'), $update_dates['next_payment']));
                         } else {
                             WC_Gateway_Paypal::log(sprintf('IPN subscription payment for subscription %d: next_payment is in past (date: %s).', $subscription->id, $subscription->get_date('next_payment')));
                         }
                         if (!empty($update_dates)) {
                             $subscription->update_dates($update_dates);
                         }
                     } catch (Exception $e) {
                         WC_Gateway_Paypal::log(sprintf('IPN subscription payment exception subscription %d: %s.', $subscription->id, $e->getMessage()));
                     }
                     remove_action('woocommerce_subscription_activated_paypal', 'WCS_PayPal_Status_Manager::reactivate_subscription');
                     try {
                         $renewal_order->payment_complete($transaction_details['txn_id']);
                     } catch (Exception $e) {
                         WC_Gateway_Paypal::log(sprintf('IPN subscription payment exception calling $renewal_order->payment_complete() for subscription %d: %s.', $subscription->id, $e->getMessage()));
                     }
                     $renewal_order->add_order_note(__('IPN subscription payment completed.', 'woocommerce-subscriptions'));
                     add_action('woocommerce_subscription_activated_paypal', 'WCS_PayPal_Status_Manager::reactivate_subscription');
                     wcs_set_paypal_id($renewal_order, $transaction_details['subscr_id']);
                 }
             } elseif (in_array(strtolower($transaction_details['payment_status']), array('pending', 'failed'))) {
                 // Subscription Payment completed
                 // translators: placeholder is payment status (e.g. "completed")
                 $subscription->add_order_note(sprintf(_x('IPN subscription payment %s.', 'used in order note', 'woocommerce-subscriptions'), $transaction_details['payment_status']));
                 if (!$is_first_payment) {
                     update_post_meta($renewal_order->id, '_transaction_id', $transaction_details['txn_id']);
                     // translators: placeholder is payment status (e.g. "completed")
                     $renewal_order->add_order_note(sprintf(_x('IPN subscription payment %s.', 'used in order note', 'woocommerce-subscriptions'), $transaction_details['payment_status']));
                     $subscription->payment_failed();
                 }
                 WC_Gateway_Paypal::log('IPN subscription payment failed for subscription ' . $subscription->id);
             } else {
                 WC_Gateway_Paypal::log('IPN subscription payment notification received for subscription ' . $subscription->id . ' with status ' . $transaction_details['payment_status']);
             }
             break;
             // Admins can suspend subscription at PayPal triggering this IPN
         // Admins can suspend subscription at PayPal triggering this IPN
         case 'recurring_payment_suspended':
             if ($subscription->has_status('active')) {
                 // We don't need to suspend the subscription at PayPal because it's already on-hold there
                 remove_action('woocommerce_subscription_on-hold_paypal', 'WCS_PayPal_Status_Manager::suspend_subscription');
                 $subscription->update_status('on-hold', __('IPN subscription suspended.', 'woocommerce-subscriptions'));
                 add_action('woocommerce_subscription_on-hold_paypal', 'WCS_PayPal_Status_Manager::suspend_subscription');
                 WC_Gateway_Paypal::log('IPN subscription suspended for subscription ' . $subscription->id);
             } else {
                 WC_Gateway_Paypal::log(sprintf('IPN "recurring_payment_suspended" ignored for subscription %d. Subscription already %s.', $subscription->id, $subscription->get_status()));
             }
             break;
         case 'subscr_cancel':
             // Make sure the subscription hasn't been linked to a new payment method
             if (wcs_get_paypal_id($subscription) != $transaction_details['subscr_id']) {
                 WC_Gateway_Paypal::log('IPN subscription cancellation request ignored - new PayPal Profile ID linked to this subscription, for subscription ' . $subscription->id);
             } else {
                 $subscription->cancel_order(__('IPN subscription cancelled.', 'woocommerce-subscriptions'));
                 WC_Gateway_Paypal::log('IPN subscription cancelled for subscription ' . $subscription->id);
             }
             break;
         case 'subscr_eot':
             // Subscription ended, either due to failed payments or expiration
             WC_Gateway_Paypal::log('IPN EOT request ignored for subscription ' . $subscription->id);
             break;
         case 'subscr_failed':
             // Subscription sign up failed
         // Subscription sign up failed
         case 'recurring_payment_suspended_due_to_max_failed_payment':
             // Recurring payment failed
             $ipn_failure_note = __('IPN subscription payment failure.', 'woocommerce-subscriptions');
             if (!$is_first_payment && !$is_renewal_sign_up_after_failure && $subscription->has_status('active')) {
                 // Generate a renewal order to record the failed payment
                 $renewal_order = wcs_create_renewal_order($subscription);
                 // Set PayPal as the payment method
                 $available_gateways = WC()->payment_gateways->get_available_payment_gateways();
                 $renewal_order->set_payment_method($available_gateways['paypal']);
                 $renewal_order->add_order_note($ipn_failure_note);
             }
             WC_Gateway_Paypal::log('IPN subscription payment failure for subscription ' . $subscription->id);
             // Subscription Payment completed
             $subscription->add_order_note($ipn_failure_note);
             try {
                 $subscription->payment_failed();
             } catch (Exception $e) {
                 WC_Gateway_Paypal::log(sprintf('IPN subscription payment failure, unable to process payment failure. Exception: %s ', $e->getMessage()));
             }
             break;
     }
     // Store the transaction IDs to avoid handling requests duplicated by PayPal
     if (isset($transaction_details['ipn_track_id'])) {
         $handled_ipn_requests[] = $ipn_id;
         update_post_meta($subscription->id, '_paypal_ipn_tracking_ids', $handled_ipn_requests);
     }
     if (isset($transaction_details['txn_id'])) {
         $handled_transactions[] = $transaction_id;
         update_post_meta($subscription->id, '_paypal_transaction_ids', $handled_transactions);
     }
     // And delete the transient that's preventing other IPN's being processed
     if (isset($ipn_lock_transient_name)) {
         delete_transient($ipn_lock_transient_name);
     }
     // Log completion
     $log_message = 'IPN subscription request processed for ' . $subscription->id;
     if (isset($ipn_id) && !empty($ipn_id)) {
         $log_message .= sprintf(' (%s)', $ipn_id);
     }
     WC_Gateway_Paypal::log($log_message);
     // Prevent default IPN handling for subscription txn_types
     exit;
 }
 /**
  * Check if the subscription needs to use the failed payment process to repair its status after it incorrectly expired due to a date migration
  * bug in upgrade process for 2.0.0 of Subscriptions (i.e. not 2.0.1 or newer). See WCS_Repair_2_0_2::maybe_repair_status() for more details.
  *
  * @param int $subscription_id The ID of a 'shop_subscription' post
  * @since 2.0.2
  */
 public static function maybe_process_failed_renewal_for_repair($subscription_id)
 {
     if ('true' == get_post_meta($subscription_id, '_wcs_repaired_2_0_2_needs_failed_payment', true)) {
         $subscription = wcs_get_subscription($subscription_id);
         // Always put the subscription on hold in case something goes wrong while trying to process renewal
         $subscription->update_status('on-hold', _x('Subscription renewal payment due:', 'used in order note as reason for why subscription status changed', 'woocommerce-subscriptions'));
         // Create a renewal order to record the failed payment which can then be used by the customer to reactivate the subscription
         $renewal_order = wcs_create_renewal_order($subscription);
         // Mark the payment as failed so the customer can login to fix up the failed payment
         $subscription->payment_failed();
         // Only force the failed payment once
         update_post_meta($subscription_id, '_wcs_repaired_2_0_2_needs_failed_payment', 'false');
         // We've already processed the renewal
         remove_action('woocommerce_scheduled_subscription_payment', __CLASS__ . '::prepare_renewal');
         remove_action('woocommerce_scheduled_subscription_payment', 'WC_Subscriptions_Payment_Gateways::gateway_scheduled_subscription_payment', 10, 1);
     }
 }
 /**
  * Created a new order for renewing a subscription product based on the details of a previous order.
  *
  * @param WC_Order|int $order The WC_Order object or ID of the order for which the a new order should be created.
  * @param string $product_id The ID of the subscription product in the order which needs to be added to the new order.
  * @param array $args (optional) An array of name => value flags:
  *         'new_order_role' string A flag to indicate whether the new order should become the master order for the subscription. Accepts either 'parent' or 'child'. Defaults to 'parent' - replace the existing order.
  *         'checkout_renewal' bool Indicates if invoked from an interactive cart/checkout session and certain order items are not set, like taxes, shipping as they need to be set in teh calling function, like @see WC_Subscriptions_Checkout::filter_woocommerce_create_order(). Default false.
  *         'failed_order_id' int For checkout_renewal true, indicates order id being replaced
  * @since 1.2
  * @deprecated 2.0
  */
 public static function generate_renewal_order($original_order, $product_id, $args = array())
 {
     _deprecated_function(__METHOD__, '2.0', 'wcs_create_renewal_order() or wcs_create_resubscribe_order()');
     if (!wcs_order_contains_subscription($original_order, 'parent')) {
         return false;
     }
     $args = wp_parse_args($args, array('new_order_role' => 'parent', 'checkout_renewal' => false));
     $subscriptions = wcs_get_subscriptions_for_order($original_order, array('order_type' => 'parent'));
     $subscription = array_shift($subscriptions);
     if ('parent' == $args['new_order_role']) {
         $new_order = wcs_create_resubscribe_order($subscription);
     } else {
         $new_order = wcs_create_renewal_order($subscription);
     }
     return $new_order->id;
 }
 /**
  * Handles the action request to create a pending renewal order.
  *
  * @param array $subscription
  * @since 2.0
  */
 public static function create_pending_renewal_action_request($subscription)
 {
     $subscription->update_status('on-hold');
     $renewal_order = wcs_create_renewal_order($subscription);
     if (!$subscription->is_manual()) {
         $renewal_order->set_payment_method($subscription->payment_gateway);
     }
     $subscription->add_order_note(__('Create pending renewal order requested by admin action.', 'woocommerce-subscriptions'), false, true);
 }