1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace LaravelFreelancerNL\Aranguent\Query\Concerns; |
4
|
|
|
|
5
|
|
|
use Closure; |
6
|
|
|
use Illuminate\Database\Eloquent\Builder as EloquentBuilder; |
7
|
|
|
use Illuminate\Database\Eloquent\Builder as IlluminateEloquentBuilder; |
8
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation; |
9
|
|
|
use Illuminate\Database\Query\Builder as IlluminateQueryBuilder; |
10
|
|
|
use InvalidArgumentException; |
11
|
|
|
use LaravelFreelancerNL\Aranguent\Query\Builder; |
12
|
|
|
use LaravelFreelancerNL\Aranguent\Query\Grammar; |
13
|
|
|
|
14
|
|
|
trait BuildsSubqueries |
15
|
|
|
{ |
16
|
|
|
/** |
17
|
|
|
* IN SQL subqueries in selects and where's need to return a single value, |
18
|
|
|
* whereas subqueries in joins return an object. This variable lets the |
19
|
|
|
* compiler know how to return a single value. |
20
|
|
|
* |
21
|
|
|
* @var bool |
22
|
|
|
*/ |
23
|
|
|
public bool $returnSingleValue = false; |
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* Creates a subquery and parse it. |
27
|
|
|
* |
28
|
|
|
* @param \Closure|IlluminateQueryBuilder|IlluminateEloquentBuilder|string $query |
29
|
|
|
* @return array<mixed> |
30
|
|
|
* |
31
|
|
|
* @SuppressWarnings(PHPMD.BooleanArgumentFlag) |
32
|
|
|
*/ |
33
|
10 |
|
public function createSub($query, bool $returnSingleValue = false) |
34
|
|
|
{ |
35
|
|
|
// If the given query is a Closure, we will execute it while passing in a new |
36
|
|
|
// query instance to the Closure. This will give the developer a chance to |
37
|
|
|
// format and work with the query before we cast it to a raw SQL string. |
38
|
10 |
|
if ($query instanceof Closure) { |
39
|
|
|
$callback = $query; |
40
|
|
|
|
41
|
|
|
$callback($query = $this->forSubQuery()); |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
assert($query instanceof Builder); |
45
|
|
|
|
46
|
10 |
|
if ($returnSingleValue) { |
47
|
2 |
|
$query->returnSingleValue = $returnSingleValue; |
48
|
|
|
} |
49
|
|
|
|
50
|
10 |
|
return $this->parseSub($query); |
51
|
|
|
} |
52
|
|
|
|
53
|
|
|
/** |
54
|
|
|
* Create a new query instance for sub-query. |
55
|
|
|
* |
56
|
|
|
* @return \Illuminate\Database\Query\Builder |
57
|
|
|
*/ |
58
|
5 |
|
protected function forSubQuery() |
59
|
|
|
{ |
60
|
5 |
|
return $this->newQuery(); |
|
|
|
|
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* @param IlluminateQueryBuilder $query |
65
|
|
|
* @return bool |
66
|
|
|
*/ |
67
|
18 |
|
protected function hasLimitOfOne(IlluminateQueryBuilder $query) |
68
|
|
|
{ |
69
|
|
|
assert($query instanceof Builder); |
70
|
|
|
|
71
|
18 |
|
if ($query->limit === 1 || $query->returnSingleValue === true) { |
72
|
5 |
|
return true; |
73
|
|
|
} |
74
|
|
|
|
75
|
13 |
|
return false; |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
/** |
79
|
|
|
* Parse the subquery into AQL and bindings. |
80
|
|
|
* |
81
|
|
|
* @param IlluminateEloquentBuilder|IlluminateQueryBuilder|Relation|string $query |
82
|
|
|
* @return array<mixed> |
83
|
|
|
* |
84
|
|
|
* @throws \InvalidArgumentException |
85
|
|
|
*/ |
86
|
18 |
|
protected function parseSub($query) |
87
|
|
|
{ |
88
|
18 |
|
if (is_string($query)) { |
89
|
|
|
return [$query, []]; |
90
|
|
|
} |
91
|
|
|
|
92
|
18 |
|
if ($query instanceof EloquentBuilder || $query instanceof Relation) { |
93
|
|
|
$query = $query->getQuery(); |
94
|
|
|
} |
95
|
|
|
|
96
|
18 |
|
if ($query instanceof self) { |
97
|
18 |
|
$this->exchangeTableAliases($query); |
|
|
|
|
98
|
|
|
|
99
|
18 |
|
$this->importBindings($query); |
|
|
|
|
100
|
|
|
|
101
|
|
|
assert($this->grammar instanceof Grammar); |
102
|
18 |
|
$queryString = $this->grammar->wrapSubquery($query->toSql()); |
|
|
|
|
103
|
|
|
|
104
|
18 |
|
if ($this->hasLimitOfOne($query)) { |
|
|
|
|
105
|
5 |
|
$queryString = 'FIRST(' . $queryString . ')'; |
106
|
|
|
} |
107
|
|
|
|
108
|
18 |
|
return [$queryString, $query->getBindings()]; |
|
|
|
|
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
throw new InvalidArgumentException( |
112
|
|
|
'A subquery must be a query builder instance, a Relation, a Closure, or a string.' |
113
|
|
|
); |
114
|
|
|
} |
115
|
|
|
} |
116
|
|
|
|