93 lines
2.5 KiB
PHP
93 lines
2.5 KiB
PHP
<?php
|
|
namespace WapplerSystems\Meilisearch\Domain\Search\ResultSet\Facets;
|
|
|
|
/*
|
|
* This file is part of the TYPO3 CMS project.
|
|
*
|
|
* It is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License, either version 2
|
|
* of the License, or any later version.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE.txt file that was distributed with this source code.
|
|
*
|
|
* The TYPO3 project - inspiring people to share!
|
|
*/
|
|
use TYPO3\CMS\Extbase\Object\ObjectManagerInterface;
|
|
|
|
/**
|
|
* Class AbstractFacetPackage
|
|
*/
|
|
abstract class AbstractFacetPackage {
|
|
/**
|
|
* @var ObjectManagerInterface
|
|
*/
|
|
protected $objectManager;
|
|
|
|
/**
|
|
* @param ObjectManagerInterface $objectManager
|
|
*/
|
|
public function setObjectManager(ObjectManagerInterface $objectManager)
|
|
{
|
|
$this->objectManager = $objectManager;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
abstract public function getParserClassName();
|
|
|
|
/**
|
|
* @return FacetParserInterface
|
|
* @throws InvalidFacetPackageException
|
|
*/
|
|
public function getParser()
|
|
{
|
|
$parser = $this->objectManager->get($this->getParserClassName());
|
|
if (!$parser instanceof FacetParserInterface) {
|
|
throw new InvalidFacetPackageException('Invalid parser for package ' . __CLASS__);
|
|
}
|
|
return $parser;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getUrlDecoderClassName() {
|
|
return (string)DefaultUrlDecoder::class;
|
|
}
|
|
|
|
/**
|
|
* @throws InvalidUrlDecoderException
|
|
* @return FacetUrlDecoderInterface
|
|
*/
|
|
public function getUrlDecoder()
|
|
{
|
|
$urlDecoder = $this->objectManager->get($this->getUrlDecoderClassName());
|
|
if (!$urlDecoder instanceof FacetUrlDecoderInterface) {
|
|
throw new InvalidUrlDecoderException('Invalid urldecoder for package ' . __CLASS__);
|
|
}
|
|
return $urlDecoder;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getQueryBuilderClassName() {
|
|
return (string)DefaultFacetQueryBuilder::class;
|
|
}
|
|
|
|
/**
|
|
* @throws InvalidQueryBuilderException
|
|
* @return FacetQueryBuilderInterface
|
|
*/
|
|
public function getQueryBuilder()
|
|
{
|
|
$urlDecoder = $this->objectManager->get($this->getQueryBuilderClassName());
|
|
if(!$urlDecoder instanceof FacetQueryBuilderInterface) {
|
|
throw new InvalidQueryBuilderException('Invalid querybuilder for package ' . __CLASS__);
|
|
}
|
|
return $urlDecoder;
|
|
}
|
|
}
|