Automattic\WooCommerce\StoreApi\Routes\V1

Checkout::get_route_post_response()protectedWC 1.0

Process an order.

  1. Obtain Draft Order
  2. Process Request
  3. Process Customer
  4. Validate Order
  5. Process Payment

Метод класса: Checkout{}

Возвращает

\WP_REST_Response.

Использование

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->get_route_post_response( $request );
$request(\WP_REST_Request) (обязательный)
Request object.

Код Checkout::get_route_post_response() WC 8.7.0

protected function get_route_post_response( \WP_REST_Request $request ) {
	/**
	 * Validate items etc are allowed in the order before the order is processed. This will fix violations and tell
	 * the customer.
	 */
	$this->cart_controller->validate_cart();

	/**
	 * Obtain Draft Order and process request data.
	 *
	 * Note: Customer data is persisted from the request first so that OrderController::update_addresses_from_cart
	 * uses the up to date customer address.
	 */
	$this->update_customer_from_request( $request );
	$this->create_or_update_draft_order( $request );
	$this->update_order_from_request( $request );

	/**
	 * Process customer data.
	 *
	 * Update order with customer details, and sign up a user account as necessary.
	 */
	$this->process_customer( $request );

	/**
	 * Validate order.
	 *
	 * This logic ensures the order is valid before payment is attempted.
	 */
	$this->order_controller->validate_order_before_payment( $this->order );

	wc_do_deprecated_action(
		'__experimental_woocommerce_blocks_checkout_order_processed',
		array(
			$this->order,
		),
		'6.3.0',
		'woocommerce_store_api_checkout_order_processed',
		'This action was deprecated in WooCommerce Blocks version 6.3.0. Please use woocommerce_store_api_checkout_order_processed instead.'
	);

	wc_do_deprecated_action(
		'woocommerce_blocks_checkout_order_processed',
		array(
			$this->order,
		),
		'7.2.0',
		'woocommerce_store_api_checkout_order_processed',
		'This action was deprecated in WooCommerce Blocks version 7.2.0. Please use woocommerce_store_api_checkout_order_processed instead.'
	);

	/**
	 * Fires before an order is processed by the Checkout Block/Store API.
	 *
	 * This hook informs extensions that $order has completed processing and is ready for payment.
	 *
	 * This is similar to existing core hook woocommerce_checkout_order_processed. We're using a new action:
	 * - To keep the interface focused (only pass $order, not passing request data).
	 * - This also explicitly indicates these orders are from checkout block/StoreAPI.
	 *
	 * @since 7.2.0
	 *
	 * @see https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/3238
	 * @example See docs/examples/checkout-order-processed.md

	 * @param \WC_Order $order Order object.
	 */
	do_action( 'woocommerce_store_api_checkout_order_processed', $this->order );

	/**
	 * Process the payment and return the results.
	 */
	$payment_result = new PaymentResult();

	if ( $this->order->needs_payment() ) {
		$this->process_payment( $request, $payment_result );
	} else {
		$this->process_without_payment( $request, $payment_result );
	}

	return $this->prepare_item_for_response(
		(object) [
			'order'          => wc_get_order( $this->order ),
			'payment_result' => $payment_result,
		],
		$request
	);
}