Files

123 lines
2.8 KiB
PHP
Raw Permalink Normal View History

<?php
/**
* Mutation - writeReview
*
* Registers mutation for creating a new product review.
*
* @package WPGraphQL\WooCommerce\Mutation
* @since 0.5.1
*/
namespace WPGraphQL\WooCommerce\Mutation;
use GraphQL\Type\Definition\ResolveInfo;
use WPGraphQL\AppContext;
use WPGraphQL\Model\Comment;
use WPGraphQL\Mutation\CommentCreate;
/**
* Class Review_Write
*/
class Review_Write {
/**
* Registers mutation
2023-06-13 23:17:02 +03:00
*
* @return void
*/
public static function register_mutation() {
register_graphql_mutation(
'writeReview',
[
'inputFields' => self::get_input_fields(),
'outputFields' => self::get_output_fields(),
'mutateAndGetPayload' => self::mutate_and_get_payload(),
]
);
}
/**
* Defines the mutation input field configuration
*
* @return array
*/
public static function get_input_fields() {
2021-01-21 22:41:43 -05:00
$comment_input_fields = CommentCreate::get_input_fields();
unset( $comment_input_fields['type'] );
return array_merge(
$comment_input_fields,
[
'rating' => [
'type' => [ 'non_null' => 'Int' ],
'description' => static function () {
return __( 'Product rating', 'graphql-for-ecommerce' );
},
],
]
);
}
/**
* Defines the mutation output field configuration
*
* @return array
*/
public static function get_output_fields() {
return [
'rating' => [
2021-01-21 22:41:43 -05:00
'type' => 'Float',
'description' => static function () {
return __( 'The product rating of the review that was created', 'graphql-for-ecommerce' );
},
'resolve' => static function ( $payload ) {
if ( ! isset( $payload['id'] ) || ! absint( $payload['id'] ) ) {
return null;
2021-01-21 22:41:43 -05:00
}
return (float) get_comment_meta( $payload['id'], 'rating', true );
},
],
'review' => [
2021-01-21 22:41:43 -05:00
'type' => 'Comment',
'description' => static function () {
return __( 'The product review that was created', 'graphql-for-ecommerce' );
},
'resolve' => static function ( $payload ) {
if ( ! isset( $payload['id'] ) || ! absint( $payload['id'] ) ) {
return null;
2021-01-21 22:41:43 -05:00
}
$comment = get_comment( $payload['id'] );
2023-06-13 23:17:02 +03:00
if ( null === $comment ) {
return null;
}
return new Comment( $comment );
},
],
];
}
/**
* Defines the mutation data modification closure.
*
* @return callable
*/
public static function mutate_and_get_payload() {
return static function ( $input, AppContext $context, ResolveInfo $info ) {
2021-01-21 22:41:43 -05:00
// Set comment type to "review".
$input['type'] = 'review';
2021-01-21 22:41:43 -05:00
$resolver = CommentCreate::mutate_and_get_payload();
2021-01-21 22:41:43 -05:00
$payload = $resolver( $input, $context, $info );
2021-01-21 22:41:43 -05:00
// Set product rating upon successful creation of the review.
if ( $payload['success'] ) {
add_comment_meta( $payload['id'], 'rating', $input['rating'] );
}
return $payload;
};
}
}