103 lines
3.5 KiB
PHP
103 lines
3.5 KiB
PHP
|
<?php
|
||
|
namespace WapplerSystems\Meilisearch\ViewHelpers\Uri\Facet;
|
||
|
|
||
|
/*
|
||
|
* 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 WapplerSystems\Meilisearch\Domain\Search\ResultSet\Facets\AbstractFacet;
|
||
|
use WapplerSystems\Meilisearch\Domain\Search\ResultSet\Facets\AbstractFacetItem;
|
||
|
use WapplerSystems\Meilisearch\Domain\Search\ResultSet\SearchResultSet;
|
||
|
use WapplerSystems\Meilisearch\ViewHelpers\Uri\AbstractUriViewHelper;
|
||
|
|
||
|
/**
|
||
|
* Class AbstractValueViewHelper
|
||
|
*
|
||
|
* @author Frans Saris <frans@beech.it>
|
||
|
* @author Timo Hund <timo.hund@dkd.de>
|
||
|
*/
|
||
|
abstract class AbstractValueViewHelper extends AbstractUriViewHelper
|
||
|
{
|
||
|
/**
|
||
|
* Initializes the arguments
|
||
|
*/
|
||
|
public function initializeArguments()
|
||
|
{
|
||
|
parent::initializeArguments();
|
||
|
$this->registerArgument('facet', AbstractFacet::class, 'The facet', false, null);
|
||
|
$this->registerArgument('facetName', 'string', 'The facet name', false, null);
|
||
|
$this->registerArgument('facetItem', AbstractFacetItem::class, 'The facet item', false, null);
|
||
|
$this->registerArgument('facetItemValue', 'string', 'The facet item', false, null);
|
||
|
$this->registerArgument('resultSet', SearchResultSet::class, 'The result set', false, null);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param $arguments
|
||
|
* @return string
|
||
|
* @throws \InvalidArgumentException
|
||
|
*/
|
||
|
protected static function getValueFromArguments($arguments)
|
||
|
{
|
||
|
if (isset($arguments['facetItem'])) {
|
||
|
/** @var $facetItem AbstractFacetItem */
|
||
|
$facetItem = $arguments['facetItem'];
|
||
|
$facetValue = $facetItem->getUriValue();
|
||
|
} elseif (isset($arguments['facetItemValue'])) {
|
||
|
$facetValue = $arguments['facetItemValue'];
|
||
|
} else {
|
||
|
throw new \InvalidArgumentException('No facetItem was passed, please pass either facetItem or facetItemValue');
|
||
|
}
|
||
|
|
||
|
return $facetValue;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param $arguments
|
||
|
* @return string
|
||
|
* @throws \InvalidArgumentException
|
||
|
*/
|
||
|
protected static function getNameFromArguments($arguments)
|
||
|
{
|
||
|
if (isset($arguments['facet'])) {
|
||
|
/** @var $facet AbstractFacet */
|
||
|
$facet = $arguments['facet'];
|
||
|
$facetName = $facet->getName();
|
||
|
} elseif (isset($arguments['facetName'])) {
|
||
|
$facetName = $arguments['facetName'];
|
||
|
} else {
|
||
|
throw new \InvalidArgumentException('No facet was passed, please pass either facet or facetName');
|
||
|
}
|
||
|
|
||
|
return $facetName;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param $arguments
|
||
|
* @return string
|
||
|
* @throws \InvalidArgumentException
|
||
|
*/
|
||
|
protected static function getResultSetFromArguments($arguments)
|
||
|
{
|
||
|
if (isset($arguments['facet'])) {
|
||
|
/** @var $facet AbstractFacet */
|
||
|
$facet = $arguments['facet'];
|
||
|
$resultSet = $facet->getResultSet();
|
||
|
} elseif (isset($arguments['facetName'])) {
|
||
|
$resultSet = $arguments['resultSet'];
|
||
|
} else {
|
||
|
throw new \InvalidArgumentException('No facet was passed, please pass either facet or resultSet');
|
||
|
}
|
||
|
|
||
|
return $resultSet;
|
||
|
}
|
||
|
}
|