Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-advanced-search/Model/Client/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-advanced-search/Model/Client/ClientFactory.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\AdvancedSearch\Model\Client;

use Magento\Framework\ObjectManagerInterface;
use Magento\AdvancedSearch\Helper\Data;

class ClientFactory implements ClientFactoryInterface
{
    /**
     * Object var
     *
     * @var ObjectManagerInterface
     */
    protected $objectManager;

    /**
     * @var string
     */
    private $clientClass;

    /**
     * @var string
     */
    private $openSearch;

    /**
     * @var Data
     */
    protected $helper;

    /**
     * @param ObjectManagerInterface $objectManager
     * @param string $clientClass
     * @param Data $helper
     * @param string|null $openSearch
     */
    public function __construct(
        ObjectManagerInterface $objectManager,
        $clientClass,
        Data $helper,
        $openSearch = null
    ) {
        $this->objectManager = $objectManager;
        $this->clientClass = $clientClass;
        $this->openSearch = $openSearch;
        $this->helper = $helper;
    }

    /**
     * Return search client
     *
     * @param array $options
     * @return ClientInterface
     */
    public function create(array $options = [])
    {
        $class = $this->clientClass;
        if ($this->helper->isClientOpenSearchV2()) {
            $class = $this->openSearch;
        }

        return $this->objectManager->create(
            $class,
            ['options' => $options]
        );
    }
}