Files

179 lines
5.2 KiB
PHP
Raw Permalink Normal View History

2019-07-10 15:21:01 -04:00
<?php
/**
* Mutation - deleteOrderItems
*
* Registers mutation for delete an items from an order.
*
2019-10-25 19:13:36 -04:00
* @package WPGraphQL\WooCommerce\Mutation
2019-07-10 15:21:01 -04:00
* @since 0.2.0
*/
2019-10-25 19:13:36 -04:00
namespace WPGraphQL\WooCommerce\Mutation;
2019-07-10 15:21:01 -04:00
use GraphQL\Error\UserError;
use GraphQL\Type\Definition\ResolveInfo;
use WPGraphQL\AppContext;
use WPGraphQL\Utils\Utils;
2019-10-25 19:13:36 -04:00
use WPGraphQL\WooCommerce\Data\Mutation\Order_Mutation;
use WPGraphQL\WooCommerce\Model\Order;
2019-07-10 15:21:01 -04:00
/**
* Class Order_Delete_Items
*/
class Order_Delete_Items {
/**
* Registers mutation
2023-06-13 23:17:02 +03:00
*
* @return void
2019-07-10 15:21:01 -04:00
*/
public static function register_mutation() {
register_graphql_mutation(
'deleteOrderItems',
[
2019-07-10 15:21:01 -04:00
'inputFields' => self::get_input_fields(),
'outputFields' => self::get_output_fields(),
'mutateAndGetPayload' => self::mutate_and_get_payload(),
]
2019-07-10 15:21:01 -04:00
);
}
/**
* Defines the mutation input field configuration
*
* @return array
*/
public static function get_input_fields() {
return array_merge(
[
'id' => [
2019-07-10 15:21:01 -04:00
'type' => 'ID',
'description' => static function () {
return __( 'Database ID or global ID of the order', 'graphql-for-ecommerce' );
},
],
'orderId' => [
'type' => 'Int',
'description' => static function () {
return __( 'Order WP ID', 'graphql-for-ecommerce' );
},
'deprecationReason' => __( 'Use "id" field instead.', 'graphql-for-ecommerce' ),
],
'itemIds' => [
'type' => [ 'list_of' => 'Int' ],
'description' => static function () {
return __( 'ID Order items being deleted', 'graphql-for-ecommerce' );
},
],
]
2019-07-10 15:21:01 -04:00
);
}
/**
* Defines the mutation output field configuration
*
* @return array
*/
public static function get_output_fields() {
return [
'order' => [
2019-07-10 15:21:01 -04:00
'type' => 'Order',
'resolve' => static function ( $payload ) {
2019-07-10 15:21:01 -04:00
return $payload['order'];
},
],
];
2019-07-10 15:21:01 -04:00
}
/**
* Defines the mutation data modification closure.
*
* @return callable
*/
public static function mutate_and_get_payload() {
return static function ( $input, AppContext $context, ResolveInfo $info ) {
2019-07-10 15:21:01 -04:00
// Retrieve order ID.
$order_id = null;
if ( ! empty( $input['id'] ) ) {
$order_id = Utils::get_database_id_from_id( $input['id'] );
2019-07-10 15:21:01 -04:00
} elseif ( ! empty( $input['orderId'] ) ) {
$order_id = absint( $input['orderId'] );
} else {
throw new UserError( __( 'Order ID provided is missing or invalid. Please check input and try again.', 'graphql-for-ecommerce' ) );
}
if ( ! $order_id ) {
throw new UserError( __( 'Order ID provided is invalid. Please check input and try again.', 'graphql-for-ecommerce' ) );
2019-07-10 15:21:01 -04:00
}
2020-01-13 23:36:23 -05:00
// Check if authorized to delete items on this order.
if ( ! Order_Mutation::authorized( $input, $context, $info, 'delete-items', $order_id ) ) {
throw new UserError( __( 'User does not have the capabilities necessary to delete order items.', 'graphql-for-ecommerce' ) );
2020-01-13 23:36:23 -05:00
}
2019-07-10 15:21:01 -04:00
// Confirm item IDs.
if ( empty( $input['itemIds'] ) ) {
throw new UserError( __( 'No item IDs provided.', 'graphql-for-ecommerce' ) );
2019-07-10 15:21:01 -04:00
} elseif ( ! is_array( $input['itemIds'] ) ) {
throw new UserError( __( 'The "itemIds" provided is invalid', 'graphql-for-ecommerce' ) );
2019-07-10 15:21:01 -04:00
}
$ids = $input['itemIds'];
// Get Order model instance for output.
2023-06-13 23:17:02 +03:00
/**
* Order model instance.
*
* @var \WC_Order $order
*/
2019-07-10 15:21:01 -04:00
$order = new Order( $order_id );
// Cache items to prevent null value errors.
// @codingStandardsIgnoreStart
2023-06-13 23:17:02 +03:00
$order->get_downloadable_items();
2019-07-10 15:21:01 -04:00
$order->get_items();
$order->get_items( 'fee' );
$order->get_items( 'shipping' );
$order->get_items( 'tax' );
$order->get_items( 'coupon' );
// @codingStandardsIgnoreEnd.
2023-06-13 23:17:02 +03:00
/**
* Working order model instance.
*
* @var \WC_Order $working_order
*/
2019-07-10 15:21:01 -04:00
$working_order = new Order( $order_id );
/**
* Action called before order is deleted.
*
2023-06-13 23:17:02 +03:00
* @param array $item_ids Order item IDs of items being deleted.
* @param \WC_Order|\WPGraphQL\WooCommerce\Model\Order $order Order model instance.
2023-06-13 23:17:02 +03:00
* @param array $input Input data describing order.
* @param \WPGraphQL\AppContext $context Request AppContext instance.
* @param \GraphQL\Type\Definition\ResolveInfo $info Request ResolveInfo instance.
2019-07-10 15:21:01 -04:00
*/
do_action( 'graphql_woocommerce_before_order_items_delete', $ids, $working_order, $input, $context, $info );
2019-07-10 15:21:01 -04:00
// Delete order.
$errors = '';
foreach ( $ids as $id ) {
$working_order->remove_item( $id );
}
$working_order->save();
/**
* Action called before order is deleted.
*
2023-06-13 23:17:02 +03:00
* @param array $item_ids Order item IDs of items being deleted.
* @param \WC_Order|\WPGraphQL\WooCommerce\Model\Order $order Order model instance.
2023-06-13 23:17:02 +03:00
* @param array $input Input data describing order
* @param \WPGraphQL\AppContext $context Request AppContext instance.
* @param \GraphQL\Type\Definition\ResolveInfo $info Request ResolveInfo instance.
2019-07-10 15:21:01 -04:00
*/
do_action( 'graphql_woocommerce_after_order_delete', $ids, $working_order, $input, $context, $info );
2019-07-10 15:21:01 -04:00
return [ 'order' => $order ];
2019-07-10 15:21:01 -04:00
};
}
}