2016-12-09 11:47:28 +01:00
|
|
|
<?php
|
2017-07-06 23:48:47 +02:00
|
|
|
namespace Codappix\SearchCore\Connection;
|
2016-12-09 11:47:28 +01:00
|
|
|
|
|
|
|
/*
|
2016-12-09 13:19:35 +01:00
|
|
|
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
|
2016-12-09 11:47:28 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2018-03-06 17:40:49 +01:00
|
|
|
use Codappix\SearchCore\Connection\ConnectionInterface;
|
|
|
|
use Codappix\SearchCore\Connection\FacetRequestInterface;
|
2018-03-06 09:04:47 +01:00
|
|
|
use Codappix\SearchCore\Domain\Search\SearchService;
|
2017-08-08 17:07:23 +02:00
|
|
|
use TYPO3\CMS\Extbase\Persistence\QueryInterface;
|
|
|
|
|
|
|
|
interface SearchRequestInterface extends QueryInterface
|
2016-12-09 11:47:28 +01:00
|
|
|
{
|
2016-12-09 13:19:35 +01:00
|
|
|
/**
|
|
|
|
* Returns the actual string the user searched for.
|
|
|
|
*/
|
2018-03-06 17:40:49 +01:00
|
|
|
public function getSearchTerm() : string;
|
|
|
|
|
|
|
|
public function hasFilter() : bool;
|
|
|
|
|
|
|
|
public function getFilter() : array;
|
|
|
|
|
|
|
|
public function setFilter(array $filter);
|
|
|
|
|
2018-03-06 17:58:19 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-03-06 17:40:49 +01:00
|
|
|
public function addFacet(FacetRequestInterface $facet);
|
2017-06-06 13:53:08 +02:00
|
|
|
|
|
|
|
/**
|
2018-03-06 17:40:49 +01:00
|
|
|
* @return array<FacetRequestInterface>
|
2017-06-06 13:53:08 +02:00
|
|
|
*/
|
2018-03-06 17:40:49 +01:00
|
|
|
public function getFacets() : array;
|
2017-06-06 13:53:08 +02:00
|
|
|
|
|
|
|
/**
|
2018-03-06 17:40:49 +01:00
|
|
|
* Workaround for paginate widget support which will
|
|
|
|
* use the request to build another search.
|
2018-03-06 17:58:19 +01:00
|
|
|
*
|
|
|
|
* @return void
|
2017-06-06 13:53:08 +02:00
|
|
|
*/
|
2018-03-06 17:40:49 +01:00
|
|
|
public function setConnection(ConnectionInterface $connection);
|
2018-03-06 09:04:47 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Workaround for paginate widget support which will
|
|
|
|
* use the request to build another search.
|
2018-03-06 17:58:19 +01:00
|
|
|
*
|
|
|
|
* @return void
|
2018-03-06 09:04:47 +01:00
|
|
|
*/
|
|
|
|
public function setSearchService(SearchService $searchService);
|
2016-12-09 11:47:28 +01:00
|
|
|
}
|