LaravelFreelancerNL /
laravel-arangodb
| 1 | <?php |
||||
| 2 | |||||
| 3 | declare(strict_types=1); |
||||
| 4 | |||||
| 5 | namespace LaravelFreelancerNL\Aranguent\Schema\Concerns; |
||||
| 6 | |||||
| 7 | use ArangoClient\Exceptions\ArangoException; |
||||
| 8 | |||||
| 9 | trait HandlesAnalyzers |
||||
| 10 | { |
||||
| 11 | /** |
||||
| 12 | * @param array<mixed> $properties |
||||
| 13 | * @param array<string> $features |
||||
| 14 | * |
||||
| 15 | * @throws ArangoException |
||||
| 16 | */ |
||||
| 17 | 13 | public function createAnalyzer(string $name, string $type, array $properties = null, array $features = null) |
|||
| 18 | { |
||||
| 19 | 13 | $analyzer = array_filter([ |
|||
| 20 | 13 | 'name' => $name, |
|||
| 21 | 13 | 'type' => $type, |
|||
| 22 | 13 | 'properties' => $properties, |
|||
| 23 | 13 | 'features' => $features, |
|||
| 24 | 13 | ]); |
|||
| 25 | |||||
| 26 | 13 | $this->schemaManager->createAnalyzer($analyzer); |
|||
| 27 | } |
||||
| 28 | |||||
| 29 | /** |
||||
| 30 | * @param array<mixed> $properties |
||||
| 31 | * @param array<string> $features |
||||
| 32 | * |
||||
| 33 | * @throws ArangoException |
||||
| 34 | */ |
||||
| 35 | 2 | public function replaceAnalyzer(string $name, string $type, array $properties = null, array $features = null) |
|||
| 36 | { |
||||
| 37 | 2 | $analyzer = array_filter([ |
|||
| 38 | 2 | 'name' => $name, |
|||
| 39 | 2 | 'type' => $type, |
|||
| 40 | 2 | 'properties' => $properties, |
|||
| 41 | 2 | 'features' => $features, |
|||
| 42 | 2 | ]); |
|||
| 43 | |||||
| 44 | 2 | $this->schemaManager->replaceAnalyzer($name, $analyzer); |
|||
| 45 | } |
||||
| 46 | |||||
| 47 | /** |
||||
| 48 | * @param string $name |
||||
| 49 | * @return mixed[] |
||||
| 50 | * @throws ArangoException |
||||
| 51 | */ |
||||
| 52 | public function getAnalyzer(string $name): array |
||||
| 53 | { |
||||
| 54 | return (array) $this->schemaManager->getAnalyzer($name); |
||||
| 55 | } |
||||
| 56 | |||||
| 57 | 4 | public function hasAnalyzer(string $analyzer): bool |
|||
| 58 | { |
||||
| 59 | 4 | return $this->handleExceptionsAsQueryExceptions(function () use ($analyzer) { |
|||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||||
| 60 | 4 | return $this->schemaManager->hasAnalyzer($analyzer); |
|||
| 61 | 4 | }); |
|||
| 62 | } |
||||
| 63 | |||||
| 64 | /** |
||||
| 65 | * @throws ArangoException |
||||
| 66 | */ |
||||
| 67 | 9 | public function getAnalyzers(): array |
|||
| 68 | { |
||||
| 69 | 9 | return $this->mapResultsToArray( |
|||
|
0 ignored issues
–
show
It seems like
mapResultsToArray() must be provided by classes using this trait. How about adding it as abstract method to this trait?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
Loading history...
|
|||||
| 70 | 9 | $this->schemaManager->getAnalyzers(), |
|||
| 71 | 9 | ); |
|||
| 72 | } |
||||
| 73 | |||||
| 74 | /** |
||||
| 75 | * @throws ArangoException |
||||
| 76 | */ |
||||
| 77 | 2 | public function dropAnalyzer(string $name) |
|||
| 78 | { |
||||
| 79 | 2 | $this->schemaManager->deleteAnalyzer($name); |
|||
| 80 | } |
||||
| 81 | |||||
| 82 | /** |
||||
| 83 | * @throws ArangoException |
||||
| 84 | */ |
||||
| 85 | 4 | public function dropAnalyzerIfExists(string $name): bool |
|||
| 86 | { |
||||
| 87 | 4 | if ($this->hasAnalyzer($name)) { |
|||
| 88 | 2 | $this->schemaManager->deleteAnalyzer($name); |
|||
| 89 | } |
||||
| 90 | |||||
| 91 | 4 | return true; |
|||
| 92 | } |
||||
| 93 | |||||
| 94 | /** |
||||
| 95 | * Drop all custom analyzers from the schema. |
||||
| 96 | * |
||||
| 97 | * @throws ArangoException |
||||
| 98 | */ |
||||
| 99 | 35 | public function dropAllAnalyzers(): void |
|||
| 100 | { |
||||
| 101 | 35 | $this->schemaManager->deleteAllAnalyzers(); |
|||
| 102 | } |
||||
| 103 | } |
||||
| 104 |