| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-quote-graph-ql/Model/Resolver/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-quote-graph-ql/Model/Resolver/Cart.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\QuoteGraphQl\Model\Resolver;
use Magento\Framework\GraphQl\Config\Element\Field;
use Magento\Framework\GraphQl\Exception\GraphQlInputException;
use Magento\Framework\GraphQl\Query\ResolverInterface;
use Magento\Framework\GraphQl\Schema\Type\ResolveInfo;
use Magento\QuoteGraphQl\Model\Cart\GetCartForUser;
/**
* @inheritdoc
*/
class Cart implements ResolverInterface
{
/**
* @var GetCartForUser
*/
private $getCartForUser;
/**
* @param GetCartForUser $getCartForUser
*/
public function __construct(
GetCartForUser $getCartForUser
) {
$this->getCartForUser = $getCartForUser;
}
/**
* @inheritdoc
*/
public function resolve(Field $field, $context, ResolveInfo $info, array $value = null, array $args = null)
{
if (empty($args['cart_id'])) {
throw new GraphQlInputException(__('Required parameter "cart_id" is missing'));
}
$maskedCartId = $args['cart_id'];
$currentUserId = $context->getUserId();
$storeId = (int)$context->getExtensionAttributes()->getStore()->getId();
$cart = $this->getCartForUser->execute($maskedCartId, $currentUserId, $storeId);
return [
'model' => $cart,
];
}
}