-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add FULL TEXT SEARCH support (#235)
- Loading branch information
1 parent
0d6df00
commit 9be524f
Showing
11 changed files
with
506 additions
and
1 deletion.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
<?php | ||
/** | ||
* Copyright 2019 Colopl Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace Colopl\Spanner\Query\Concerns; | ||
|
||
trait UsesFullTextSearch | ||
{ | ||
/** | ||
* @param string $tokens | ||
* @param string $query | ||
* @param array<string, scalar> $options | ||
* @param string $boolean | ||
* @return $this | ||
*/ | ||
public function searchFullText( | ||
string $tokens, | ||
string $query, | ||
array $options = [], | ||
string $boolean = 'and', | ||
): static | ||
{ | ||
$this->addSearchCondition('SearchFullText', $tokens, $query, $options, $boolean); | ||
return $this; | ||
} | ||
|
||
/** | ||
* @param string $tokens | ||
* @param string $query | ||
* @param array<string, scalar> $options | ||
* @param string $boolean | ||
* @return $this | ||
*/ | ||
public function searchNgrams( | ||
string $tokens, | ||
string $query, | ||
array $options = [], | ||
string $boolean = 'and', | ||
): static | ||
{ | ||
$this->addSearchCondition('SearchNgrams', $tokens, $query, $options, $boolean); | ||
return $this; | ||
} | ||
|
||
/** | ||
* @param string $tokens | ||
* @param string $query | ||
* @param array<string, scalar> $options | ||
* @param string $boolean | ||
* @return $this | ||
*/ | ||
public function searchSubstring( | ||
string $tokens, | ||
string $query, | ||
array $options = [], | ||
string $boolean = 'and', | ||
): static | ||
{ | ||
$this->addSearchCondition('SearchSubstring', $tokens, $query, $options, $boolean); | ||
return $this; | ||
} | ||
|
||
/** | ||
* @param string $type | ||
* @param string $tokens | ||
* @param string $query | ||
* @param array<string, scalar> $options | ||
* @param string $boolean | ||
* @return void | ||
*/ | ||
protected function addSearchCondition( | ||
string $type, | ||
string $tokens, | ||
string $query, | ||
array $options = [], | ||
string $boolean = 'and', | ||
): void | ||
{ | ||
$this->wheres[] = [ | ||
'type' => $type, | ||
'tokens' => $tokens, | ||
'boolean' => $boolean, | ||
'query' => $query, | ||
'options' => $options, | ||
]; | ||
$this->addBinding($query); | ||
} | ||
} |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
|
||
/** | ||
* Copyright 2019 Colopl Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace Colopl\Spanner\Schema; | ||
|
||
/** | ||
* @property string $name | ||
* @property string $index | ||
* @property list<string> $columns | ||
* @property string|list<string> $partitionBy | ||
* @property list<string>|array<string, string> $orderBy | ||
* @property bool|null $sortOrderSharding | ||
* @property bool|null $disableAutomaticUidColumn | ||
* @method $this partitionBy(string|string[] $columns) | ||
* @method $this orderBy(string|string[] $columns) | ||
* @method $this sortOrderSharding(bool $toggle = true) | ||
* @method $this disableAutomaticUidColumn(bool $toggle = true) | ||
*/ | ||
class SearchIndexDefinition extends IndexDefinition | ||
{ | ||
/** | ||
* @return array{ sortOrderSharding?: bool, disableAutomaticUidColumn?: bool } | ||
*/ | ||
public function getOptions(): array | ||
{ | ||
return array_filter([ | ||
'sortOrderSharding' => $this->sortOrderSharding, | ||
'disableAutomaticUidColumn' => $this->disableAutomaticUidColumn, | ||
], static fn($v) => $v !== null); | ||
} | ||
} |
Oops, something went wrong.