<?php
declare(strict_types=1);
/*
* CoreShop
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - CoreShop Commercial License (CCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) CoreShop GmbH (https://www.coreshop.org)
* @license https://www.coreshop.org/license GPLv3 and CCL
*
*/
namespace CoreShop\Bundle\IndexBundle\Factory;
use CoreShop\Component\Index\Factory\ListingFactoryInterface;
use CoreShop\Component\Index\Listing\ListingInterface;
use CoreShop\Component\Index\Model\IndexInterface;
use CoreShop\Component\Index\Worker\WorkerInterface;
use CoreShop\Component\Registry\ServiceRegistryInterface;
use Symfony\Component\Intl\Exception\InvalidArgumentException;
class ListingFactory implements ListingFactoryInterface
{
public function __construct(
private ServiceRegistryInterface $workerServiceRegistry,
) {
}
public function createList(IndexInterface $index): ListingInterface
{
$worker = $index->getWorker();
if (!$this->workerServiceRegistry->has($worker)) {
throw new InvalidArgumentException(sprintf('%s Worker not found', $worker));
}
/**
* @var WorkerInterface $worker
*/
$worker = $this->workerServiceRegistry->get($worker);
return $worker->getList($index);
}
}