CreateCoupon.php
1 month ago
CreateProduct.php
1 month ago
DeleteCoupon.php
1 month ago
DeleteProduct.php
1 month ago
UpdateCoupon.php
1 month ago
UpdateProduct.php
1 month ago
UpdateProduct.php
161 lines
| 1 | <?php |
| 2 | declare(strict_types=1); |
| 3 | |
| 4 | // THIS FILE IS AUTO-GENERATED. DO NOT EDIT MANUALLY. |
| 5 | |
| 6 | namespace Automattic\WooCommerce\Internal\Api\Autogenerated\GraphQLMutations; |
| 7 | |
| 8 | use Automattic\WooCommerce\Api\Mutations\Products\UpdateProduct as UpdateProductCommand; |
| 9 | use Automattic\WooCommerce\Api\Infrastructure\QueryInfoExtractor; |
| 10 | use Automattic\WooCommerce\Api\Infrastructure\ResolverHelpers; |
| 11 | use Automattic\WooCommerce\Internal\Api\Autogenerated\GraphQLTypes\Interfaces\Product as ProductInterface; |
| 12 | use Automattic\WooCommerce\Internal\Api\Autogenerated\GraphQLTypes\Input\UpdateProduct as UpdateProductInput; |
| 13 | use Automattic\WooCommerce\Api\Infrastructure\Schema\ResolveInfo; |
| 14 | use Automattic\WooCommerce\Api\Infrastructure\Schema\Type; |
| 15 | |
| 16 | class UpdateProduct { |
| 17 | public static function get_field_definition(): array { |
| 18 | return array( |
| 19 | 'type' => Type::nonNull( ProductInterface::get() ), |
| 20 | 'description' => __( 'Update an existing product.', 'woocommerce' ), |
| 21 | 'authorization' => array( |
| 22 | array( |
| 23 | 'attribute' => 'RequiredCapability', |
| 24 | 'args' => array( |
| 25 | 0 => 'manage_woocommerce', |
| 26 | ), |
| 27 | ), |
| 28 | ), |
| 29 | 'args' => array( |
| 30 | 'input' => array( |
| 31 | 'type' => Type::nonNull( UpdateProductInput::get() ), |
| 32 | 'description' => __( 'The fields to update.', 'woocommerce' ), |
| 33 | ), |
| 34 | ), |
| 35 | 'resolve' => array( self::class, 'resolve' ), |
| 36 | ); |
| 37 | } |
| 38 | |
| 39 | public static function resolve( mixed $root, array $args, mixed $context, ResolveInfo $info ): mixed { |
| 40 | // Standalone authorization gate: no authorize() method on the command, |
| 41 | // so the autodiscovered authorization attributes are the sole guard. |
| 42 | if ( ! self::compute_preauthorized( $context['principal'] ) ) { |
| 43 | throw ResolverHelpers::build_authorization_error( $context['principal'] ); |
| 44 | } |
| 45 | |
| 46 | // Publish the root query's metadata so downstream field-level |
| 47 | // authorization gates can read it via `$_metadata['query']`. |
| 48 | // $context is an ArrayObject (see GraphQLController::process_request()) |
| 49 | // so the mutation propagates to nested resolvers. |
| 50 | $context['_query_metadata'] = array(); |
| 51 | |
| 52 | $command = \Automattic\WooCommerce\Api\Infrastructure\ClassResolver::resolve_class( UpdateProductCommand::class ); |
| 53 | |
| 54 | $execute_args = array(); |
| 55 | if ( array_key_exists( 'input', $args ) ) { |
| 56 | $execute_args['input'] = self::convert_update_product_input( $args['input'] ); |
| 57 | } |
| 58 | |
| 59 | $result = ResolverHelpers::execute_command( $command, $execute_args ); |
| 60 | |
| 61 | return $result; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Compute the value `_preauthorized` would carry for a given principal — |
| 66 | * the AND of the autodiscovered authorization attributes' authorize() |
| 67 | * outcomes on this command. Single source of truth for both the resolver's |
| 68 | * own gates and external (code-API) callers asking about authorization |
| 69 | * without going through GraphQL execution. |
| 70 | * |
| 71 | * Returns true vacuously when the command has no authorization attributes |
| 72 | * (in that case authorize() on the command is the sole guard, and that |
| 73 | * method should be consulted instead). |
| 74 | */ |
| 75 | public static function compute_preauthorized( \Automattic\WooCommerce\Api\Infrastructure\Principal $principal ): bool { |
| 76 | return ( new \Automattic\WooCommerce\Api\Attributes\RequiredCapability( 'manage_woocommerce' ) )->authorize( $principal ); |
| 77 | } |
| 78 | |
| 79 | private static function convert_dimensions_input( array $data ): \Automattic\WooCommerce\Api\InputTypes\Products\DimensionsInput { |
| 80 | $input = new \Automattic\WooCommerce\Api\InputTypes\Products\DimensionsInput(); |
| 81 | |
| 82 | if ( array_key_exists( 'length', $data ) ) { |
| 83 | $input->mark_provided( 'length' ); |
| 84 | $input->length = $data['length']; |
| 85 | } |
| 86 | if ( array_key_exists( 'width', $data ) ) { |
| 87 | $input->mark_provided( 'width' ); |
| 88 | $input->width = $data['width']; |
| 89 | } |
| 90 | if ( array_key_exists( 'height', $data ) ) { |
| 91 | $input->mark_provided( 'height' ); |
| 92 | $input->height = $data['height']; |
| 93 | } |
| 94 | if ( array_key_exists( 'weight', $data ) ) { |
| 95 | $input->mark_provided( 'weight' ); |
| 96 | $input->weight = $data['weight']; |
| 97 | } |
| 98 | |
| 99 | return $input; |
| 100 | } |
| 101 | |
| 102 | private static function convert_update_product_input( array $data ): \Automattic\WooCommerce\Api\InputTypes\Products\UpdateProductInput { |
| 103 | $input = new \Automattic\WooCommerce\Api\InputTypes\Products\UpdateProductInput(); |
| 104 | |
| 105 | if ( array_key_exists( 'id', $data ) ) { |
| 106 | $input->mark_provided( 'id' ); |
| 107 | $input->id = $data['id']; |
| 108 | } |
| 109 | if ( array_key_exists( 'name', $data ) ) { |
| 110 | $input->mark_provided( 'name' ); |
| 111 | $input->name = $data['name']; |
| 112 | } |
| 113 | if ( array_key_exists( 'slug', $data ) ) { |
| 114 | $input->mark_provided( 'slug' ); |
| 115 | $input->slug = $data['slug']; |
| 116 | } |
| 117 | if ( array_key_exists( 'sku', $data ) ) { |
| 118 | $input->mark_provided( 'sku' ); |
| 119 | $input->sku = $data['sku']; |
| 120 | } |
| 121 | if ( array_key_exists( 'description', $data ) ) { |
| 122 | $input->mark_provided( 'description' ); |
| 123 | $input->description = $data['description']; |
| 124 | } |
| 125 | if ( array_key_exists( 'short_description', $data ) ) { |
| 126 | $input->mark_provided( 'short_description' ); |
| 127 | $input->short_description = $data['short_description']; |
| 128 | } |
| 129 | if ( array_key_exists( 'status', $data ) ) { |
| 130 | $input->mark_provided( 'status' ); |
| 131 | $input->status = $data['status']; |
| 132 | } |
| 133 | if ( array_key_exists( 'product_type', $data ) ) { |
| 134 | $input->mark_provided( 'product_type' ); |
| 135 | $input->product_type = $data['product_type']; |
| 136 | } |
| 137 | if ( array_key_exists( 'regular_price', $data ) ) { |
| 138 | $input->mark_provided( 'regular_price' ); |
| 139 | $input->regular_price = $data['regular_price']; |
| 140 | } |
| 141 | if ( array_key_exists( 'sale_price', $data ) ) { |
| 142 | $input->mark_provided( 'sale_price' ); |
| 143 | $input->sale_price = $data['sale_price']; |
| 144 | } |
| 145 | if ( array_key_exists( 'manage_stock', $data ) ) { |
| 146 | $input->mark_provided( 'manage_stock' ); |
| 147 | $input->manage_stock = $data['manage_stock']; |
| 148 | } |
| 149 | if ( array_key_exists( 'stock_quantity', $data ) ) { |
| 150 | $input->mark_provided( 'stock_quantity' ); |
| 151 | $input->stock_quantity = $data['stock_quantity']; |
| 152 | } |
| 153 | if ( array_key_exists( 'dimensions', $data ) ) { |
| 154 | $input->mark_provided( 'dimensions' ); |
| 155 | $input->dimensions = null !== $data['dimensions'] ? self::convert_dimensions_input( $data['dimensions'] ) : null; |
| 156 | } |
| 157 | |
| 158 | return $input; |
| 159 | } |
| 160 | } |
| 161 |