Created
October 1, 2020 09:02
-
-
Save Tersoal/d45b0cc75cadf72cd7c0e49b892809b3 to your computer and use it in GitHub Desktop.
Full text search for API Platform with one or more strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Filter; | |
use ApiPlatform\Core\Bridge\Doctrine\Orm\Filter\SearchFilter; | |
use ApiPlatform\Core\Bridge\Doctrine\Orm\Util\QueryNameGeneratorInterface; | |
use ApiPlatform\Core\Exception\InvalidArgumentException; | |
use Doctrine\ORM\QueryBuilder; | |
/** | |
* inspired from : | |
* - https://gist.github.com/masseelch/47931f3a745409f8f44c69efa9ecb05c | |
* - https://gist.github.com/renta/b6ece3fec7896440fe52a9ec0e76571a | |
* - https://gist.github.com/masacc/94df641b3cb9814cbdaeb3f158d2e1f7 | |
* | |
* how to use : | |
* - add classAnnotation : | |
* ApiFilter(FullTextSearchFilter::class, properties={ | |
* "search_example1"={ | |
* "property1": "partial", | |
* "property2": "exact" | |
* }, | |
* "search_example2"={ | |
* "property1": "partial", | |
* "property3": "partial" | |
* } | |
* }) | |
* - use filter in query string as: | |
* + `/api/myresources?search_example1=String%20with%20spaces` => this will search "String with spaces" | |
* + `/api/myresources?search_example1%5B%5D=String%20with%20spaces` => this will search "String with spaces" | |
* + `/api/myresources?search_example1%5B%5D=String&search_example1%5B%5D=with&search_example1%5B%5D=spaces` => this will search "String" or "with" or "spaces" | |
*/ | |
class FullTextSearchFilter extends SearchFilter | |
{ | |
private const PROPERTY_NAME_PREFIX = 'search_'; | |
/** | |
* {@inheritdoc} | |
*/ | |
protected function filterProperty(string $property, $value, QueryBuilder $queryBuilder, QueryNameGeneratorInterface $queryNameGenerator, string $resourceClass, string $operationName = null) | |
{ | |
if (0 !== strpos($property, self::PROPERTY_NAME_PREFIX)) { | |
return; | |
} | |
if (false === isset($this->properties[$property])) { | |
return; | |
} | |
$values = $this->normalizeValues((array) $value, $property); | |
if (null === $values) { | |
return; | |
} | |
$orExpressions = []; | |
foreach ($values as $index => $value) { | |
foreach ($this->properties[$property] as $propertyName => $strategy) { | |
$strategy = $strategy ?? self::STRATEGY_EXACT; | |
$alias = $queryBuilder->getRootAliases()[0]; | |
$field = $propertyName; | |
$associations = []; | |
if ($this->isPropertyNested($propertyName, $resourceClass)) { | |
[$alias, $field, $associations] = $this->addJoinsForNestedProperty($propertyName, $alias, $queryBuilder, $queryNameGenerator, $resourceClass); | |
} | |
$caseSensitive = true; | |
$metadata = $this->getNestedMetadata($resourceClass, $associations); | |
if ($metadata->hasField($field)) { | |
if ('id' === $field) { | |
$value = $this->getIdFromValue($value); | |
} | |
if (!$this->hasValidValues((array)$value, $this->getDoctrineFieldType($propertyName, $resourceClass))) { | |
$this->logger->notice('Invalid filter ignored', [ | |
'exception' => new InvalidArgumentException(sprintf('Values for field "%s" are not valid according to the doctrine type.', $field)), | |
]); | |
continue; | |
} | |
// prefixing the strategy with i makes it case insensitive | |
if (0 === strpos($strategy, 'i')) { | |
$strategy = substr($strategy, 1); | |
$caseSensitive = false; | |
} | |
$orExpressions[] = $this->addWhereByStrategy($strategy, $queryBuilder, $queryNameGenerator, $alias, $field, $value, $caseSensitive); | |
} | |
} | |
} | |
$queryBuilder->andWhere($queryBuilder->expr()->orX(...$orExpressions)); | |
} | |
/** | |
* {@inheritDoc} | |
*/ | |
protected function addWhereByStrategy(string $strategy, QueryBuilder $queryBuilder, QueryNameGeneratorInterface $queryNameGenerator, string $alias, string $field, $value, bool $caseSensitive) | |
{ | |
$wrapCase = $this->createWrapCase($caseSensitive); | |
$valueParameter = $queryNameGenerator->generateParameterName($field); | |
$exprBuilder = $queryBuilder->expr(); | |
$queryBuilder->setParameter($valueParameter, $value); | |
switch ($strategy) { | |
case null: | |
case self::STRATEGY_EXACT: | |
return $exprBuilder->eq($wrapCase("$alias.$field"), $wrapCase(":$valueParameter")); | |
case self::STRATEGY_PARTIAL: | |
return $exprBuilder->like($wrapCase("$alias.$field"), $exprBuilder->concat("'%'", $wrapCase(":$valueParameter"), "'%'")); | |
case self::STRATEGY_START: | |
return $exprBuilder->like($wrapCase("$alias.$field"), $exprBuilder->concat($wrapCase(":$valueParameter"), "'%'")); | |
case self::STRATEGY_END: | |
return $exprBuilder->like($wrapCase("$alias.$field"), $exprBuilder->concat("'%'", $wrapCase(":$valueParameter"))); | |
case self::STRATEGY_WORD_START: | |
return $exprBuilder->orX( | |
$exprBuilder->like($wrapCase("$alias.$field"), $exprBuilder->concat($wrapCase(":$valueParameter"), "'%'")), | |
$exprBuilder->like($wrapCase("$alias.$field"), $exprBuilder->concat("'%'", $wrapCase(":$valueParameter"))) | |
); | |
default: | |
throw new InvalidArgumentException(sprintf('strategy %s does not exist.', $strategy)); | |
} | |
} | |
/** | |
* {@inheritdoc} | |
*/ | |
public function getDescription(string $resourceClass): array | |
{ | |
$descriptions = []; | |
foreach ($this->properties as $filterName => $properties) { | |
$propertyNames = []; | |
foreach ($properties as $property => $strategy) { | |
if (!$this->isPropertyMapped($property, $resourceClass, true)) { | |
continue; | |
} | |
$propertyNames[] = $this->normalizePropertyName($property); | |
} | |
$filterParameterName = $filterName . '[]'; | |
$descriptions[$filterParameterName] = [ | |
'property' => $filterName, | |
'type' => 'string', | |
'required' => false, | |
'is_collection' => true, | |
'openapi' => [ | |
'description' => 'Search involves the fields: ' . implode(', ', $propertyNames), | |
], | |
]; | |
} | |
return $descriptions; | |
} | |
} |
For me it works like a charm, I have relations in my app.
This makes no sense for me, you don't need a full text search for an only one field, you do?
@Tersoal it's because i want to use multiple id to get the result , I mean : WHERE id IN (value1, value2, ...)
is it possible without custom filter ?
I think so... Have you tried to send id param as array?
https://api-platform.com/docs/core/filters/#search-filter
Note: Search filters with the exact strategy can have multiple values for the same property (in this case the condition will be similar to a SQL IN clause).
Syntax: ?property[]=foo&property[]=bar
Does the trick nicely! Many thanks for your extended work on this :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Tersoal it supports Filtering by a relation's property ? I tried
but it doesn't work