Files
Geoff TaylorandGitHub 088d337ef5 fix: address WordPress.org plugin review (rename + prefixing + headers) (#1019)
* fix: address WordPress.org plugin review feedback

- Prefix the session transaction queue transient with the plugin's
  graphql_woocommerce_ namespace instead of the generic "woo_" word, to
  avoid collisions (Plugin Directory: prefix data storage).
- Declare the WooCommerce dependency via the "Requires Plugins: woocommerce"
  plugin header.
- Bump README.txt "Tested up to" to 7.0.
- Ship composer.json in the distributed plugin (drop it, and composer.lock,
  from composer archive excludes) so the build is reproducible/reviewable.

* chore: rename plugin to "GraphQL for eCommerce" for trademark compliance

The WordPress.org plugin review flagged the display name/slug for beginning
with the "WPGraphQL" trademark (and the "WooGraphQL" portmanteau of the
WooCommerce mark), which can imply official affiliation.

- Display name (plugin header + readme title) -> "GraphQL for eCommerce".
- Slug/text domain -> "graphql-for-ecommerce" (header, all i18n string
  literals, and the PHPCS WordPress.WP.I18n text_domain config).
- Update user-facing notices/errors that named the old plugin.

"WooGraphQL" remains the project's informal nickname (repo, docs, community),
just not in the WordPress.org directory's official name/slug. Internal file
names and GitHub URLs are unchanged.

* fix: keep test-only dev deps out of the committed composer.json

The committed manifest mirrors develop (lint/stan dev deps only); CI adds the
test suite deps at runtime via `composer installTestEnv`. A previous commit
captured the installTestEnv-modified composer.json, desyncing it from
composer.lock and breaking `composer install` in CI.

* chore: regenerate composer.lock (refresh dev dependencies)

Regenerate the lock from the manifest so it is in sync (fixes the CI
`composer install` failure) and refresh dependencies in the process —
firebase/php-jwt v7.0.4 -> v7.1.0 plus 11 others, with vendor-prefixed
re-strauss'd to match. Full wpunit suite passes against the updated deps
(305 tests, 835 assertions).

* chore: rename text domain in createdVia/attribution strings from #1018

#1018 (createdVia + order attribution) merged into develop after the rename
commit was authored, so its new i18n strings still used the old
'wp-graphql-woocommerce' text domain. Update them to 'graphql-for-ecommerce'
to match the rename.
2026-06-30 10:16:21 -04:00

364 lines
11 KiB
PHP

<?php
/**
* Connection - Orders
*
* Registers connections to Order
*
* @package WPGraphQL\WooCommerce\Connection
*/
namespace WPGraphQL\WooCommerce\Connection;
use GraphQL\Type\Definition\ResolveInfo;
use WPGraphQL\AppContext;
use WPGraphQL\WooCommerce\Data\Connection\Order_Connection_Resolver;
use WPGraphQL\WooCommerce\Model\Customer;
/**
* Class - Orders
*/
class Orders {
/**
* Registers the various connections from other Types to Customer
*
* @return void
*/
public static function register_connections() {
// From RootQuery To Orders.
register_graphql_connection(
self::get_connection_config()
);
// From Customer To Orders.
register_graphql_connection(
self::get_connection_config(
[
'fromType' => 'Customer',
'fromFieldName' => 'orders',
'resolve' => static function ( $source, array $args, AppContext $context, ResolveInfo $info ) {
$resolver = new Order_Connection_Resolver( $source, $args, $context, $info );
return self::get_customer_order_connection( $resolver, $source );
},
]
)
);
// From RootQuery To Refunds.
register_graphql_connection(
self::get_connection_config(
[
'toType' => 'Refund',
'fromFieldName' => 'refunds',
'connectionArgs' => self::get_refund_connection_args(),
],
'shop_order_refund'
)
);
// From Order To Refunds.
register_graphql_connection(
self::get_connection_config(
[
'fromType' => 'Order',
'toType' => 'Refund',
'fromFieldName' => 'refunds',
'connectionArgs' => self::get_refund_connection_args(),
'resolve' => static function ( $source, array $args, AppContext $context, ResolveInfo $info ) {
$resolver = new Order_Connection_Resolver( $source, $args, $context, $info, 'shop_order_refund' );
$resolver->set_should_execute( true );
$resolver->set_query_arg( 'parent', $source->ID );
return $resolver->get_connection();
},
],
'shop_order_refund'
)
);
// From Customer To Refunds.
register_graphql_connection(
self::get_connection_config(
[
'fromType' => 'Customer',
'toType' => 'Refund',
'fromFieldName' => 'refunds',
'connectionArgs' => self::get_refund_connection_args(),
'resolve' => static function ( $source, array $args, AppContext $context, ResolveInfo $info ) {
$resolver = new Order_Connection_Resolver( $source, $args, $context, $info, 'shop_order_refund' );
return self::get_customer_refund_connection( $resolver, $source );
},
],
'shop_order_refund'
)
);
}
/**
* Given an array of $args, this returns the connection config, merging the provided args
* with the defaults.
*
* @param array $args Connection configuration.
* @param string $post_type Connection resolving post-type.
*
* @return array
*/
public static function get_connection_config( $args = [], $post_type = 'shop_order' ): array {
// Get Post type object for use in connection resolve function.
/**
* Get connection post type.
*
* @var \WP_Post_Type $post_object
*/
$post_object = get_post_type_object( $post_type );
return array_merge(
[
'fromType' => 'RootQuery',
'toType' => 'Order',
'fromFieldName' => 'orders',
'connectionArgs' => self::get_connection_args( 'private' ),
'resolve' => static function ( $source, array $args, AppContext $context, ResolveInfo $info ) use ( $post_object ) {
// Check if user shop manager.
$not_manager = ! current_user_can( $post_object->cap->edit_posts );
// Remove any where arguments that require querying user to have "shop manager" role.
if ( $not_manager && 'shop_order' === $post_object->name && isset( $args['where'] ) ) {
$args['where'] = \array_intersect_key( $args['where'], self::get_connection_args( 'public' ) );
}
// Initialize connection resolver.
$resolver = new Order_Connection_Resolver( $source, $args, $context, $info, $post_object->name );
/**
* If not shop manager, restrict results to orders/refunds owned by querying user
* and return the connection.
*/
if ( $not_manager ) {
return 'shop_order_refund' === $post_object->name
? self::get_customer_refund_connection( $resolver, new Customer( 'session', ! is_user_logged_in() ) )
: self::get_customer_order_connection( $resolver, new Customer( 'session', ! is_user_logged_in() ) );
}
return $resolver->get_connection();
},
],
$args
);
}
/**
* Returns array of where args.
*
* @param string $access Connection argument access-level.
* @return array
*/
public static function get_connection_args( $access = 'public' ): array {
switch ( $access ) {
case 'private':
return array_merge(
get_wc_cpt_connection_args(),
[
'statuses' => [
'type' => [ 'list_of' => 'OrderStatusEnum' ],
'description' => static function () {
return __( 'Limit result set to orders assigned a specific status.', 'graphql-for-ecommerce' );
},
],
'customerId' => [
'type' => 'Int',
'description' => static function () {
return __( 'Limit result set to orders assigned a specific customer.', 'graphql-for-ecommerce' );
},
],
'customersIn' => [
'type' => [ 'list_of' => 'Int' ],
'description' => static function () {
return __( 'Limit result set to orders assigned a specific group of customers.', 'graphql-for-ecommerce' );
},
],
'productId' => [
'type' => 'Int',
'description' => static function () {
return __( 'Limit result set to orders assigned a specific product.', 'graphql-for-ecommerce' );
},
],
'orderby' => [
'type' => [ 'list_of' => 'OrdersOrderbyInput' ],
'description' => static function () {
return __( 'What paramater to use to order the objects by.', 'graphql-for-ecommerce' );
},
],
'billingEmail' => [
'type' => 'String',
'description' => static function () {
return __( 'Limit result set to orders assigned a specific billing email.', 'graphql-for-ecommerce' );
},
],
]
);
case 'public':
default:
return array_merge(
get_wc_cpt_connection_args(),
[
'statuses' => [
'type' => [ 'list_of' => 'OrderStatusEnum' ],
'description' => static function () {
return __( 'Limit result set to orders assigned a specific status.', 'graphql-for-ecommerce' );
},
],
'productId' => [
'type' => 'Int',
'description' => static function () {
return __( 'Limit result set to orders assigned a specific product.', 'graphql-for-ecommerce' );
},
],
'orderby' => [
'type' => [ 'list_of' => 'OrdersOrderbyInput' ],
'description' => static function () {
return __( 'What paramater to use to order the objects by.', 'graphql-for-ecommerce' );
},
],
'search' => [
'type' => 'String',
'description' => static function () {
return __( 'Limit results to those matching a string.', 'graphql-for-ecommerce' );
},
],
'dateQuery' => [
'type' => 'DateQueryInput',
'description' => static function () {
return __( 'Filter the connection based on dates.', 'graphql-for-ecommerce' );
},
],
]
);
}//end switch
}
/**
* Returns array of where args.
*
* @return array
*/
public static function get_refund_connection_args(): array {
return array_merge(
get_wc_cpt_connection_args(),
[
'statuses' => [
'type' => [ 'list_of' => 'String' ],
'description' => static function () {
return __( 'Limit result set to refunds assigned a specific status.', 'graphql-for-ecommerce' );
},
],
'orderIn' => [
'type' => [ 'list_of' => 'Int' ],
'description' => static function () {
return __( 'Limit result set to refunds from a specific group of order IDs.', 'graphql-for-ecommerce' );
},
],
]
);
}
/**
* Returns order connection filter by customer.
*
* @param \WPGraphQL\WooCommerce\Data\Connection\Order_Connection_Resolver $resolver Connection resolver.
* @param \WPGraphQL\WooCommerce\Model\Customer $customer Customer object of querying user.
*
* @return array|\GraphQL\Deferred
*/
private static function get_customer_order_connection( $resolver, Customer $customer ) {
// If not "billing email" or "ID" set bail early by returning an empty connection.
if ( empty( $customer->billing['email'] ) && ( empty( absint( $customer->ID ) ) ) ) {
return [
'nodes' => [],
'edges' => [],
];
}
$target_customer_id = absint( $customer->ID );
$current_customer_id = absint( \WC()->customer->get_id() );
if ( ! empty( $target_customer_id ) ) {
$resolver->set_query_arg( 'customer_id', $target_customer_id );
$resolver->set_should_execute( $current_customer_id === $target_customer_id );
} elseif ( ! empty( $customer->billing['email'] ) ) {
$resolver->set_query_arg( 'billing_email', $customer->billing['email'] );
$resolver->set_should_execute( \WC()->customer->get_billing_email() === $customer->billing['email'] );
}
return $resolver->get_connection();
}
/**
* Returns refund connection filter by customer.
*
* @param \WPGraphQL\WooCommerce\Data\Connection\Order_Connection_Resolver $resolver Connection resolver.
* @param \WPGraphQL\WooCommerce\Model\Customer $customer Customer object of querying user.
*
* @return array|\GraphQL\Deferred
*/
private static function get_customer_refund_connection( Order_Connection_Resolver $resolver, Customer $customer ) {
$empty_results = [
'pageInfo' => null,
'nodes' => [],
'edges' => [],
];
// If not "billing email" or "ID" set bail early by returning an empty connection.
if ( empty( $customer->billing['email'] ) && empty( $customer->ID ) ) {
return $empty_results;
}
$order_ids = [];
$customer_id = $customer->ID;
$billing_email = $customer->billing['email'];
if ( ! empty( $customer_id ) ) {
$args = [
'customer_id' => $customer_id,
'return' => 'ids',
];
/** @var array<int> $order_ids_by_customer_id */
$order_ids_by_customer_id = wc_get_orders( $args );
if ( is_array( $order_ids_by_customer_id ) ) {
$order_ids = $order_ids_by_customer_id;
}
}
if ( ! empty( $billing_email ) ) {
$args = [
'billing_email' => $billing_email,
'return' => 'ids',
];
/** @var array<int> $order_ids_by_email */
$order_ids_by_email = wc_get_orders( $args );
// Merge the arrays of order IDs.
if ( is_array( $order_ids_by_email ) ) {
$order_ids = array_merge( $order_ids, $order_ids_by_email );
}
}
// If no orders found, return empty connection.
if ( empty( $order_ids ) ) {
return $empty_results;
}
// Remove duplicates.
$order_ids = array_unique( $order_ids );
// Set connection args.
$resolver->set_should_execute(
( 0 !== $customer_id && \WC()->customer->get_id() === $customer_id )
|| \WC()->customer->get_billing_email() === $billing_email
);
$resolver->set_query_arg( 'post_parent__in', array_map( 'absint', $order_ids ) );
// Execute and return connection.
return $resolver->get_connection();
}
}