|
| 1 | +<?php |
| 2 | +/* |
| 3 | + * Copyright 2024 Cloud Creativity Limited |
| 4 | + * |
| 5 | + * Use of this source code is governed by an MIT-style |
| 6 | + * license that can be found in the LICENSE file or at |
| 7 | + * https://opensource.org/licenses/MIT. |
| 8 | + */ |
| 9 | + |
| 10 | +declare(strict_types=1); |
| 11 | + |
| 12 | +namespace LaravelJsonApi\Eloquent\Filters; |
| 13 | + |
| 14 | +use Illuminate\Support\Traits\Conditionable; |
| 15 | +use LaravelJsonApi\Eloquent\Contracts\Filter; |
| 16 | + |
| 17 | +class WhereAll implements Filter |
| 18 | +{ |
| 19 | + |
| 20 | + use Concerns\DeserializesValue; |
| 21 | + use Concerns\HasColumns; |
| 22 | + use Concerns\HasOperator; |
| 23 | + use Concerns\IsSingular; |
| 24 | + use Conditionable; |
| 25 | + |
| 26 | + /** |
| 27 | + * @var string |
| 28 | + */ |
| 29 | + private string $name; |
| 30 | + |
| 31 | + /** |
| 32 | + * Create a new filter. |
| 33 | + * |
| 34 | + * @param string $name |
| 35 | + * @param array<string> $columns |
| 36 | + * @return static |
| 37 | + */ |
| 38 | + public static function make(string $name, array $columns = null): self |
| 39 | + { |
| 40 | + return new static($name, $columns); |
| 41 | + } |
| 42 | + |
| 43 | + /** |
| 44 | + * WhereAny constructor. |
| 45 | + * |
| 46 | + * @param string $name |
| 47 | + * @param array<string> $columns |
| 48 | + */ |
| 49 | + public function __construct(string $name, array $columns = null) |
| 50 | + { |
| 51 | + $this->name = $name; |
| 52 | + $this->columns = $columns ?? []; |
| 53 | + $this->operator = '='; |
| 54 | + } |
| 55 | + |
| 56 | + /** |
| 57 | + * @inheritDoc |
| 58 | + */ |
| 59 | + public function key(): string |
| 60 | + { |
| 61 | + return $this->name; |
| 62 | + } |
| 63 | + |
| 64 | + /** |
| 65 | + * @inheritDoc |
| 66 | + */ |
| 67 | + public function apply($query, $value) |
| 68 | + { |
| 69 | + if (!$this->isQualified()){ |
| 70 | + $this->qualifyAs($query->getModel()->getTable()); |
| 71 | + } |
| 72 | + |
| 73 | + return $query->whereAll( |
| 74 | + $this->qualifiedColumns(), |
| 75 | + $this->operator(), |
| 76 | + $this->deserialize($value) |
| 77 | + ); |
| 78 | + } |
| 79 | +} |
0 commit comments