0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-30 14:40:03 +00:00

Searching: Added negation support to UI and term handling

Updated/added tests to cover.
Support for actual search queries still remains.
This commit is contained in:
Dan Brown 2024-10-03 15:59:50 +01:00
parent 177cfd72bf
commit 93c677a6a9
No known key found for this signature in database
GPG key ID: 46D9F943C24A2EF9
11 changed files with 252 additions and 96 deletions

View file

@ -0,0 +1,13 @@
<?php
namespace BookStack\Search\Options;
class ExactSearchOption extends SearchOption
{
public function toString(): string
{
$escaped = str_replace('\\', '\\\\', $this->value);
$escaped = str_replace('"', '\"', $escaped);
return ($this->negated ? '-' : '') . '"' . $escaped . '"';
}
}

View file

@ -0,0 +1,37 @@
<?php
namespace BookStack\Search\Options;
class FilterSearchOption extends SearchOption
{
protected string $name;
public function __construct(
string $value,
string $name,
bool $negated = false,
) {
parent::__construct($value, $negated);
$this->name = $name;
}
public function toString(): string
{
$valueText = ($this->value ? ':' . $this->value : '');
$filterBrace = '{' . $this->name . $valueText . '}';
return ($this->negated ? '-' : '') . $filterBrace;
}
public function getKey(): string
{
return $this->name;
}
public static function fromContentString(string $value, bool $negated = false): self
{
$explodedFilter = explode(':', $value, 2);
$filterValue = (count($explodedFilter) > 1) ? $explodedFilter[1] : '';
$filterName = $explodedFilter[0];
return new self($filterValue, $filterName, $negated);
}
}

View file

@ -0,0 +1,26 @@
<?php
namespace BookStack\Search\Options;
abstract class SearchOption
{
public function __construct(
public string $value,
public bool $negated = false,
) {
}
/**
* Get the key used for this option when used in a map.
* Null indicates to use the index of the containing array.
*/
public function getKey(): string|null
{
return null;
}
/**
* Get the search string representation for this search option.
*/
abstract public function toString(): string;
}

View file

@ -0,0 +1,11 @@
<?php
namespace BookStack\Search\Options;
class TagSearchOption extends SearchOption
{
public function toString(): string
{
return ($this->negated ? '-' : '') . "[{$this->value}]";
}
}

View file

@ -0,0 +1,11 @@
<?php
namespace BookStack\Search\Options;
class TermSearchOption extends SearchOption
{
public function toString(): string
{
return $this->value;
}
}

View file

@ -1,12 +0,0 @@
<?php
namespace BookStack\Search;
class SearchOption
{
public function __construct(
public string $value,
public bool $negated = false,
) {
}
}

View file

@ -2,12 +2,14 @@
namespace BookStack\Search; namespace BookStack\Search;
use BookStack\Search\Options\SearchOption;
class SearchOptionSet class SearchOptionSet
{ {
/** /**
* @var SearchOption[] * @var SearchOption[]
*/ */
public array $options = []; protected array $options = [];
public function __construct(array $options = []) public function __construct(array $options = [])
{ {
@ -22,7 +24,8 @@ class SearchOptionSet
public function toValueMap(): array public function toValueMap(): array
{ {
$map = []; $map = [];
foreach ($this->options as $key => $option) { foreach ($this->options as $index => $option) {
$key = $option->getKey() ?? $index;
$map[$key] = $option->value; $map[$key] = $option->value;
} }
return $map; return $map;
@ -35,22 +38,32 @@ class SearchOptionSet
public function filterEmpty(): self public function filterEmpty(): self
{ {
$filteredOptions = array_filter($this->options, fn (SearchOption $option) => !empty($option->value)); $filteredOptions = array_values(array_filter($this->options, fn (SearchOption $option) => !empty($option->value)));
return new self($filteredOptions); return new self($filteredOptions);
} }
public static function fromValueArray(array $values): self /**
* @param class-string<SearchOption> $class
*/
public static function fromValueArray(array $values, string $class): self
{ {
$options = array_map(fn($val) => new SearchOption($val), $values); $options = array_map(fn($val) => new $class($val), $values);
return new self($options); return new self($options);
} }
public static function fromMapArray(array $values): self /**
* @return SearchOption[]
*/
public function all(): array
{ {
$options = []; return $this->options;
foreach ($values as $key => $value) { }
$options[$key] = new SearchOption($value);
} /**
return new self($options); * @return SearchOption[]
*/
public function negated(): array
{
return array_values(array_filter($this->options, fn (SearchOption $option) => $option->negated));
} }
} }

View file

@ -2,6 +2,11 @@
namespace BookStack\Search; namespace BookStack\Search;
use BookStack\Search\Options\ExactSearchOption;
use BookStack\Search\Options\FilterSearchOption;
use BookStack\Search\Options\SearchOption;
use BookStack\Search\Options\TagSearchOption;
use BookStack\Search\Options\TermSearchOption;
use Illuminate\Http\Request; use Illuminate\Http\Request;
class SearchOptions class SearchOptions
@ -45,29 +50,38 @@ class SearchOptions
} }
$instance = new SearchOptions(); $instance = new SearchOptions();
$inputs = $request->only(['search', 'types', 'filters', 'exact', 'tags']); $inputs = $request->only(['search', 'types', 'filters', 'exact', 'tags', 'extras']);
$parsedStandardTerms = static::parseStandardTermString($inputs['search'] ?? ''); $parsedStandardTerms = static::parseStandardTermString($inputs['search'] ?? '');
$inputExacts = array_filter($inputs['exact'] ?? []); $inputExacts = array_filter($inputs['exact'] ?? []);
$instance->searches = SearchOptionSet::fromValueArray(array_filter($parsedStandardTerms['terms'])); $instance->searches = SearchOptionSet::fromValueArray(array_filter($parsedStandardTerms['terms']), TermSearchOption::class);
$instance->exacts = SearchOptionSet::fromValueArray(array_filter($parsedStandardTerms['exacts'])); $instance->exacts = SearchOptionSet::fromValueArray(array_filter($parsedStandardTerms['exacts']), ExactSearchOption::class);
$instance->exacts = $instance->exacts->merge(SearchOptionSet::fromValueArray($inputExacts)); $instance->exacts = $instance->exacts->merge(SearchOptionSet::fromValueArray($inputExacts, ExactSearchOption::class));
$instance->tags = SearchOptionSet::fromValueArray(array_filter($inputs['tags'] ?? [])); $instance->tags = SearchOptionSet::fromValueArray(array_filter($inputs['tags'] ?? []), TagSearchOption::class);
$keyedFilters = []; $cleanedFilters = [];
foreach (($inputs['filters'] ?? []) as $filterKey => $filterVal) { foreach (($inputs['filters'] ?? []) as $filterKey => $filterVal) {
if (empty($filterVal)) { if (empty($filterVal)) {
continue; continue;
} }
$cleanedFilterVal = $filterVal === 'true' ? '' : $filterVal; $cleanedFilterVal = $filterVal === 'true' ? '' : $filterVal;
$keyedFilters[$filterKey] = new SearchOption($cleanedFilterVal); $cleanedFilters[] = new FilterSearchOption($cleanedFilterVal, $filterKey);
} }
if (isset($inputs['types']) && count($inputs['types']) < 4) { if (isset($inputs['types']) && count($inputs['types']) < 4) {
$keyedFilters['type'] = new SearchOption(implode('|', $inputs['types'])); $cleanedFilters[] = new FilterSearchOption(implode('|', $inputs['types']), 'types');
} }
$instance->filters = new SearchOptionSet($keyedFilters); $instance->filters = new SearchOptionSet($cleanedFilters);
// Parse and merge in extras if provided
if (!empty($inputs['extras'])) {
$extras = static::fromString($inputs['extras']);
$instance->searches = $instance->searches->merge($extras->searches);
$instance->exacts = $instance->exacts->merge($extras->exacts);
$instance->tags = $instance->tags->merge($extras->tags);
$instance->filters = $instance->filters->merge($extras->filters);
}
return $instance; return $instance;
} }
@ -77,7 +91,7 @@ class SearchOptions
*/ */
protected function addOptionsFromString(string $searchString): void protected function addOptionsFromString(string $searchString): void
{ {
/** @var array<string, string[]> $terms */ /** @var array<string, SearchOption[]> $terms */
$terms = [ $terms = [
'exacts' => [], 'exacts' => [],
'tags' => [], 'tags' => [],
@ -85,9 +99,15 @@ class SearchOptions
]; ];
$patterns = [ $patterns = [
'exacts' => '/"((?:\\\\.|[^"\\\\])*)"/', 'exacts' => '/-?"((?:\\\\.|[^"\\\\])*)"/',
'tags' => '/\[(.*?)\]/', 'tags' => '/-?\[(.*?)\]/',
'filters' => '/\{(.*?)\}/', 'filters' => '/-?\{(.*?)\}/',
];
$constructors = [
'exacts' => fn(string $value, bool $negated) => new ExactSearchOption($value, $negated),
'tags' => fn(string $value, bool $negated) => new TagSearchOption($value, $negated),
'filters' => fn(string $value, bool $negated) => FilterSearchOption::fromContentString($value, $negated),
]; ];
// Parse special terms // Parse special terms
@ -95,36 +115,32 @@ class SearchOptions
$matches = []; $matches = [];
preg_match_all($pattern, $searchString, $matches); preg_match_all($pattern, $searchString, $matches);
if (count($matches) > 0) { if (count($matches) > 0) {
$terms[$termType] = $matches[1]; foreach ($matches[1] as $index => $value) {
$negated = str_starts_with($matches[0][$index], '-');
$terms[$termType][] = $constructors[$termType]($value, $negated);
}
$searchString = preg_replace($pattern, '', $searchString); $searchString = preg_replace($pattern, '', $searchString);
} }
} }
// Unescape exacts and backslash escapes // Unescape exacts and backslash escapes
$escapedExacts = array_map(fn(string $term) => static::decodeEscapes($term), $terms['exacts']); foreach ($terms['exacts'] as $exact) {
$exact->value = static::decodeEscapes($exact->value);
}
// Parse standard terms // Parse standard terms
$parsedStandardTerms = static::parseStandardTermString($searchString); $parsedStandardTerms = static::parseStandardTermString($searchString);
$this->searches = $this->searches $this->searches = $this->searches
->merge(SearchOptionSet::fromValueArray($parsedStandardTerms['terms'])) ->merge(SearchOptionSet::fromValueArray($parsedStandardTerms['terms'], TermSearchOption::class))
->filterEmpty(); ->filterEmpty();
$this->exacts = $this->exacts $this->exacts = $this->exacts
->merge(SearchOptionSet::fromValueArray($escapedExacts)) ->merge(new SearchOptionSet($terms['exacts']))
->merge(SearchOptionSet::fromValueArray($parsedStandardTerms['exacts'])) ->merge(SearchOptionSet::fromValueArray($parsedStandardTerms['exacts'], ExactSearchOption::class))
->filterEmpty(); ->filterEmpty();
// Add tags // Add tags & filters
$this->tags = $this->tags->merge(SearchOptionSet::fromValueArray($terms['tags'])); $this->tags = $this->tags->merge(new SearchOptionSet($terms['tags']));
$this->filters = $this->filters->merge(new SearchOptionSet($terms['filters']));
// Split filter values out
/** @var array<string, SearchOption> $splitFilters */
$splitFilters = [];
foreach ($terms['filters'] as $filter) {
$explodedFilter = explode(':', $filter, 2);
$filterValue = (count($explodedFilter) > 1) ? $explodedFilter[1] : '';
$splitFilters[$explodedFilter[0]] = new SearchOption($filterValue);
}
$this->filters = $this->filters->merge(new SearchOptionSet($splitFilters));
} }
/** /**
@ -185,7 +201,7 @@ class SearchOptions
public function setFilter(string $filterName, string $filterValue = ''): void public function setFilter(string $filterName, string $filterValue = ''): void
{ {
$this->filters = $this->filters->merge( $this->filters = $this->filters->merge(
new SearchOptionSet([$filterName => new SearchOption($filterValue)]) new SearchOptionSet([new FilterSearchOption($filterValue, $filterName)])
); );
} }
@ -194,21 +210,14 @@ class SearchOptions
*/ */
public function toString(): string public function toString(): string
{ {
$parts = $this->searches->toValueArray(); $options = [
...$this->searches->all(),
...$this->exacts->all(),
...$this->tags->all(),
...$this->filters->all(),
];
foreach ($this->exacts->toValueArray() as $term) { $parts = array_map(fn(SearchOption $o) => $o->toString(), $options);
$escaped = str_replace('\\', '\\\\', $term);
$escaped = str_replace('"', '\"', $escaped);
$parts[] = '"' . $escaped . '"';
}
foreach ($this->tags->toValueArray() as $term) {
$parts[] = "[{$term}]";
}
foreach ($this->filters->toValueMap() as $filterName => $filterVal) {
$parts[] = '{' . $filterName . ($filterVal ? ':' . $filterVal : '') . '}';
}
return implode(' ', $parts); return implode(' ', $parts);
} }
@ -217,24 +226,24 @@ class SearchOptions
* Get the search options that don't have UI controls provided for. * Get the search options that don't have UI controls provided for.
* Provided back as a key => value array with the keys being expected * Provided back as a key => value array with the keys being expected
* input names for a search form, and values being the option value. * input names for a search form, and values being the option value.
*
* @return array<string, string>
*/ */
public function getHiddenInputValuesByFieldName(): array public function getAdditionalOptionsString(): string
{ {
$options = []; $options = [];
// Non-[created/updated]-by-me options // Non-[created/updated]-by-me options
$filterMap = $this->filters->toValueMap(); $userFilters = ['updated_by', 'created_by', 'owned_by'];
foreach (['updated_by', 'created_by', 'owned_by'] as $filter) { foreach ($this->filters->all() as $filter) {
$value = $filterMap[$filter] ?? null; if (in_array($filter->getKey(), $userFilters, true) && $filter->value !== null && $filter->value !== 'me') {
if ($value !== null && $value !== 'me') { $options[] = $filter;
$options["filters[$filter]"] = $value;
} }
} }
// TODO - Negated // Negated items
array_push($options, ...$this->exacts->negated());
array_push($options, ...$this->tags->negated());
array_push($options, ...$this->filters->negated());
return $options; return implode(' ', array_map(fn(SearchOption $o) => $o->toString(), $options));
} }
} }

View file

@ -25,8 +25,8 @@
@include('search.parts.type-filter', ['checked' => !$hasTypes || in_array('page', $types), 'entity' => 'page', 'transKey' => 'page']) @include('search.parts.type-filter', ['checked' => !$hasTypes || in_array('page', $types), 'entity' => 'page', 'transKey' => 'page'])
@include('search.parts.type-filter', ['checked' => !$hasTypes || in_array('chapter', $types), 'entity' => 'chapter', 'transKey' => 'chapter']) @include('search.parts.type-filter', ['checked' => !$hasTypes || in_array('chapter', $types), 'entity' => 'chapter', 'transKey' => 'chapter'])
<br> <br>
@include('search.parts.type-filter', ['checked' => !$hasTypes || in_array('book', $types), 'entity' => 'book', 'transKey' => 'book']) @include('search.parts.type-filter', ['checked' => !$hasTypes || in_array('book', $types), 'entity' => 'book', 'transKey' => 'book'])
@include('search.parts.type-filter', ['checked' => !$hasTypes || in_array('bookshelf', $types), 'entity' => 'bookshelf', 'transKey' => 'shelf']) @include('search.parts.type-filter', ['checked' => !$hasTypes || in_array('bookshelf', $types), 'entity' => 'bookshelf', 'transKey' => 'shelf'])
</div> </div>
<h6>{{ trans('entities.search_exact_matches') }}</h6> <h6>{{ trans('entities.search_exact_matches') }}</h6>
@ -64,10 +64,7 @@
@include('search.parts.date-filter', ['name' => 'created_after', 'filters' => $filterMap]) @include('search.parts.date-filter', ['name' => 'created_after', 'filters' => $filterMap])
@include('search.parts.date-filter', ['name' => 'created_before', 'filters' => $filterMap]) @include('search.parts.date-filter', ['name' => 'created_before', 'filters' => $filterMap])
@foreach($options->getHiddenInputValuesByFieldName() as $fieldName => $value) <input type="hidden" name="extras" value="{{ $options->getAdditionalOptionsString() }}">
<input type="hidden" name="{{ $fieldName }}" value="{{ $value }}">
@endforeach
<button type="submit" class="button">{{ trans('entities.search_update') }}</button> <button type="submit" class="button">{{ trans('entities.search_update') }}</button>
</form> </form>
@ -77,8 +74,9 @@
<div class="card content-wrap"> <div class="card content-wrap">
<h1 class="list-heading">{{ trans('entities.search_results') }}</h1> <h1 class="list-heading">{{ trans('entities.search_results') }}</h1>
<form action="{{ url('/search') }}" method="GET" class="search-box flexible hide-over-l"> <form action="{{ url('/search') }}" method="GET" class="search-box flexible hide-over-l">
<input value="{{$searchTerm}}" type="text" name="term" placeholder="{{ trans('common.search') }}"> <input value="{{$searchTerm}}" type="text" name="term"
placeholder="{{ trans('common.search') }}">
<button type="submit" <button type="submit"
aria-label="{{ trans('common.search') }}" aria-label="{{ trans('common.search') }}"
tabindex="-1">@icon('search')</button> tabindex="-1">@icon('search')</button>

View file

@ -545,11 +545,10 @@ class EntitySearchTest extends TestCase
$search->assertSee($page->getUrl(), false); $search->assertSee($page->getUrl(), false);
} }
public function test_searches_with_user_filters_adds_them_into_advanced_search_form() public function test_searches_with_terms_without_controls_includes_them_in_extras()
{ {
$resp = $this->asEditor()->get('/search?term=' . urlencode('test {updated_by:dan} {created_by:dan}')); $resp = $this->asEditor()->get('/search?term=' . urlencode('test {updated_by:dan} {created_by:dan} -{viewed_by_me} -[a=b] -"dog"'));
$this->withHtml($resp)->assertElementExists('form input[name="filters[updated_by]"][value="dan"]'); $this->withHtml($resp)->assertFieldHasValue('extras', '{updated_by:dan} {created_by:dan} -"dog" -[a=b] -{viewed_by_me}');
$this->withHtml($resp)->assertElementExists('form input[name="filters[created_by]"][value="dan"]');
} }
public function test_searches_with_user_filters_using_me_adds_them_into_advanced_search_form() public function test_searches_with_user_filters_using_me_adds_them_into_advanced_search_form()

View file

@ -2,6 +2,10 @@
namespace Tests\Entity; namespace Tests\Entity;
use BookStack\Search\Options\ExactSearchOption;
use BookStack\Search\Options\FilterSearchOption;
use BookStack\Search\Options\TagSearchOption;
use BookStack\Search\Options\TermSearchOption;
use BookStack\Search\SearchOptions; use BookStack\Search\SearchOptions;
use BookStack\Search\SearchOptionSet; use BookStack\Search\SearchOptionSet;
use Illuminate\Http\Request; use Illuminate\Http\Request;
@ -19,6 +23,16 @@ class SearchOptionsTest extends TestCase
$this->assertEquals(['is_tree' => ''], $options->filters->toValueMap()); $this->assertEquals(['is_tree' => ''], $options->filters->toValueMap());
} }
public function test_from_string_parses_negations()
{
$options = SearchOptions::fromString('cat -"dog" -[tag=good] -{is_tree}');
$this->assertEquals(['cat'], $options->searches->toValueArray());
$this->assertTrue($options->exacts->all()[0]->negated);
$this->assertTrue($options->tags->all()[0]->negated);
$this->assertTrue($options->filters->all()[0]->negated);
}
public function test_from_string_properly_parses_escaped_quotes() public function test_from_string_properly_parses_escaped_quotes()
{ {
$options = SearchOptions::fromString('"\"cat\"" surprise "\"\"" "\"donkey" "\"" "\\\\"'); $options = SearchOptions::fromString('"\"cat\"" surprise "\"\"" "\"donkey" "\"" "\\\\"');
@ -28,12 +42,32 @@ class SearchOptionsTest extends TestCase
public function test_to_string_includes_all_items_in_the_correct_format() public function test_to_string_includes_all_items_in_the_correct_format()
{ {
$expected = 'cat "dog" [tag=good] {is_tree}'; $expected = 'cat "dog" [tag=good] {is_tree} {beans:valid}';
$options = new SearchOptions(); $options = new SearchOptions();
$options->searches = SearchOptionSet::fromValueArray(['cat']); $options->searches = SearchOptionSet::fromValueArray(['cat'], TermSearchOption::class);
$options->exacts = SearchOptionSet::fromValueArray(['dog']); $options->exacts = SearchOptionSet::fromValueArray(['dog'], ExactSearchOption::class);
$options->tags = SearchOptionSet::fromValueArray(['tag=good']); $options->tags = SearchOptionSet::fromValueArray(['tag=good'], TagSearchOption::class);
$options->filters = SearchOptionSet::fromMapArray(['is_tree' => '']); $options->filters = new SearchOptionSet([
new FilterSearchOption('', 'is_tree'),
new FilterSearchOption('valid', 'beans'),
]);
$output = $options->toString();
foreach (explode(' ', $expected) as $term) {
$this->assertStringContainsString($term, $output);
}
}
public function test_to_string_handles_negations_as_expected()
{
$expected = 'cat -"dog" -[tag=good] -{is_tree}';
$options = new SearchOptions();
$options->searches = new SearchOptionSet([new TermSearchOption('cat')]);
$options->exacts = new SearchOptionSet([new ExactSearchOption('dog', true)]);
$options->tags = new SearchOptionSet([new TagSearchOption('tag=good', true)]);
$options->filters = new SearchOptionSet([
new FilterSearchOption('', 'is_tree', true),
]);
$output = $options->toString(); $output = $options->toString();
foreach (explode(' ', $expected) as $term) { foreach (explode(' ', $expected) as $term) {
@ -44,7 +78,7 @@ class SearchOptionsTest extends TestCase
public function test_to_string_escapes_as_expected() public function test_to_string_escapes_as_expected()
{ {
$options = new SearchOptions(); $options = new SearchOptions();
$options->exacts = SearchOptionSet::fromValueArray(['"cat"', '""', '"donkey', '"', '\\', '\\"']); $options->exacts = SearchOptionSet::fromValueArray(['"cat"', '""', '"donkey', '"', '\\', '\\"'], ExactSearchOption::class);
$output = $options->toString(); $output = $options->toString();
$this->assertEquals('"\"cat\"" "\"\"" "\"donkey" "\"" "\\\\" "\\\\\""', $output); $this->assertEquals('"\"cat\"" "\"\"" "\"donkey" "\"" "\\\\" "\\\\\""', $output);
@ -78,4 +112,21 @@ class SearchOptionsTest extends TestCase
$this->assertEquals(["biscuits"], $options->searches->toValueArray()); $this->assertEquals(["biscuits"], $options->searches->toValueArray());
$this->assertEquals(['"cheese"', '""', '"baked', 'beans"'], $options->exacts->toValueArray()); $this->assertEquals(['"cheese"', '""', '"baked', 'beans"'], $options->exacts->toValueArray());
} }
public function test_from_request_properly_parses_out_extras_as_string()
{
$request = new Request([
'search' => '',
'tags' => ['a=b'],
'extras' => '-[b=c] -{viewed_by_me} -"dino"'
]);
$options = SearchOptions::fromRequest($request);
$this->assertCount(2, $options->tags->all());
$this->assertEquals('b=c', $options->tags->negated()[0]->value);
$this->assertEquals('viewed_by_me', $options->filters->all()[0]->getKey());
$this->assertTrue($options->filters->all()[0]->negated);
$this->assertEquals('dino', $options->exacts->all()[0]->value);
$this->assertTrue($options->exacts->all()[0]->negated);
}
} }