| Current Path : /home/rtorresani/www/vendor/magento/module-wishlist-graph-ql/Model/Resolver/ |
| Current File : //home/rtorresani/www/vendor/magento/module-wishlist-graph-ql/Model/Resolver/WishlistResolver.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\WishlistGraphQl\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\Wishlist\Model\ResourceModel\Wishlist as WishlistResourceModel;
use Magento\Wishlist\Model\Wishlist;
use Magento\Wishlist\Model\Wishlist\Config as WishlistConfig;
use Magento\Wishlist\Model\WishlistFactory;
use Magento\Framework\GraphQl\Exception\GraphQlAuthorizationException;
/**
* Fetches the Wishlist data according to the GraphQL schema
*/
class WishlistResolver implements ResolverInterface
{
/**
* @var WishlistResourceModel
*/
private $wishlistResource;
/**
* @var WishlistFactory
*/
private $wishlistFactory;
/**
* @var WishlistConfig
*/
private $wishlistConfig;
/**
* @param WishlistResourceModel $wishlistResource
* @param WishlistFactory $wishlistFactory
* @param WishlistConfig $wishlistConfig
*/
public function __construct(
WishlistResourceModel $wishlistResource,
WishlistFactory $wishlistFactory,
WishlistConfig $wishlistConfig
) {
$this->wishlistResource = $wishlistResource;
$this->wishlistFactory = $wishlistFactory;
$this->wishlistConfig = $wishlistConfig;
}
/**
* @inheritdoc
*/
public function resolve(
Field $field,
$context,
ResolveInfo $info,
array $value = null,
array $args = null
) {
if (!$this->wishlistConfig->isEnabled()) {
throw new GraphQlInputException(__('The wishlist configuration is currently disabled.'));
}
$customerId = $context->getUserId();
/* Guest checking */
if (!$customerId && 0 === $customerId) {
throw new GraphQlAuthorizationException(__('The current user cannot perform operations on wishlist'));
}
/** @var Wishlist $wishlist */
$wishlist = $this->wishlistFactory->create();
$this->wishlistResource->load($wishlist, $customerId, 'customer_id');
if (null === $wishlist->getId()) {
return [];
}
return [
'sharing_code' => $wishlist->getSharingCode(),
'updated_at' => $wishlist->getUpdatedAt(),
'items_count' => $wishlist->getItemsCount(),
'name' => $wishlist->getName(),
'model' => $wishlist,
];
}
}