1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare(strict_types=1); |
4
|
|
|
|
5
|
|
|
namespace LaravelFreelancerNL\Aranguent\Query\Concerns; |
6
|
|
|
|
7
|
|
|
use Carbon\CarbonPeriod; |
8
|
|
|
use Closure; |
9
|
|
|
use Illuminate\Contracts\Database\Query\ConditionExpression; |
10
|
|
|
use Illuminate\Database\Query\Builder; |
11
|
|
|
use Illuminate\Database\Query\Expression; |
12
|
|
|
use Illuminate\Support\Arr; |
13
|
|
|
|
14
|
|
|
trait BuildsGroups |
15
|
|
|
{ |
16
|
|
|
/** |
17
|
|
|
* @var array<string>|null |
18
|
|
|
*/ |
19
|
|
|
public $groupVariables = null; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* Add a "group by" clause to the query. |
23
|
|
|
* |
24
|
|
|
* @param array<mixed>|Expression|string ...$groups |
25
|
|
|
* @return $this |
26
|
|
|
*/ |
27
|
10 |
|
public function groupBy(...$groups) |
28
|
|
|
{ |
29
|
10 |
|
foreach ($groups as $group) { |
30
|
10 |
|
$this->groups = array_merge( |
|
|
|
|
31
|
10 |
|
(array) $this->groups, |
32
|
10 |
|
Arr::wrap($group), |
33
|
10 |
|
); |
34
|
|
|
} |
35
|
|
|
|
36
|
10 |
|
return $this; |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
/** |
40
|
|
|
* Add a raw groupBy clause to the query. |
41
|
|
|
* |
42
|
|
|
* @param string $aql |
43
|
|
|
* @param array<mixed> $bindings |
44
|
|
|
* @return $this |
45
|
|
|
*/ |
46
|
1 |
|
public function groupByRaw($aql, array $bindings = []) |
47
|
|
|
{ |
48
|
1 |
|
$this->groups[] = new Expression($aql); |
|
|
|
|
49
|
|
|
|
50
|
1 |
|
if (!empty($bindings)) { |
51
|
|
|
$this->addBinding($bindings, 'groupBy'); |
|
|
|
|
52
|
|
|
} |
53
|
|
|
|
54
|
1 |
|
return $this; |
55
|
|
|
} |
56
|
|
|
|
57
|
10 |
|
public function cleanGroupVariables(): void |
58
|
|
|
{ |
59
|
|
|
// FIXME: check for possible expressions instead of strings. |
60
|
|
|
/* @phpstan-ignore-next-line */ |
61
|
10 |
|
$this->tableAliases = array_diff($this->tableAliases, $this->groupVariables ?? []); |
|
|
|
|
62
|
10 |
|
$this->groupVariables = null; |
63
|
|
|
} |
64
|
|
|
|
65
|
|
|
/** |
66
|
|
|
* @param ConditionExpression|string $column |
67
|
|
|
* @param null|string $operator |
68
|
|
|
* @param $value |
69
|
|
|
* @param $boolean |
70
|
|
|
* @return $this|\LaravelFreelancerNL\Aranguent\Query\Builder |
71
|
|
|
*/ |
72
|
3 |
|
public function having($column, $operator = null, $value = null, $boolean = 'and') |
73
|
|
|
{ |
74
|
3 |
|
$type = 'Basic'; |
75
|
|
|
|
76
|
3 |
|
if ($column instanceof ConditionExpression) { |
77
|
|
|
$type = 'Expression'; |
78
|
|
|
|
79
|
|
|
$this->havings[] = compact('type', 'column', 'boolean'); |
|
|
|
|
80
|
|
|
|
81
|
|
|
return $this; |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
// Here we will make some assumptions about the operator. If only 2 values are |
85
|
|
|
// passed to the method, we will assume that the operator is an equals sign |
86
|
|
|
// and keep going. Otherwise, we'll require the operator to be passed in. |
87
|
3 |
|
[$value, $operator] = $this->prepareValueAndOperator( |
|
|
|
|
88
|
3 |
|
$value, |
89
|
3 |
|
$operator, |
90
|
3 |
|
func_num_args() === 2, |
91
|
3 |
|
); |
92
|
|
|
|
93
|
|
|
/** @phpstan-ignore-next-line */ |
94
|
3 |
|
if ($column instanceof Closure && is_null($operator)) { |
|
|
|
|
95
|
1 |
|
return $this->havingNested($column, $boolean); |
96
|
|
|
} |
97
|
|
|
|
98
|
|
|
// If the given operator is not found in the list of valid operators we will |
99
|
|
|
// assume that the developer is just short-cutting the '=' operators and |
100
|
|
|
// we will set the operators to '=' and set the values appropriately. |
101
|
3 |
|
if ($this->invalidOperator($operator)) { |
|
|
|
|
102
|
|
|
[$value, $operator] = [$operator, '=']; |
103
|
|
|
} |
104
|
|
|
|
105
|
3 |
|
if ($this->isBitwiseOperator($operator)) { |
|
|
|
|
106
|
|
|
$type = 'Bitwise'; |
107
|
|
|
} |
108
|
|
|
|
109
|
3 |
|
if (!$value instanceof Expression) { |
110
|
3 |
|
$this->addBinding($this->flattenValue($value), 'having'); |
|
|
|
|
111
|
3 |
|
$value = '@' . array_key_last($this->getBindings()); |
|
|
|
|
112
|
|
|
} |
113
|
|
|
|
114
|
3 |
|
$this->havings[] = compact('type', 'column', 'operator', 'value', 'boolean'); |
115
|
|
|
|
116
|
3 |
|
return $this; |
117
|
|
|
} |
118
|
|
|
|
119
|
|
|
/** |
120
|
|
|
* Add a raw having clause to the query. |
121
|
|
|
* |
122
|
|
|
* @param string $sql |
123
|
|
|
* @param array<mixed> $bindings |
124
|
|
|
* @param string $boolean |
125
|
|
|
* @return $this |
126
|
|
|
*/ |
127
|
1 |
|
public function havingRaw($sql, array $bindings = [], $boolean = 'and') |
128
|
|
|
{ |
129
|
1 |
|
$type = 'Raw'; |
130
|
|
|
|
131
|
1 |
|
$this->havings[] = compact('type', 'sql', 'boolean'); |
|
|
|
|
132
|
|
|
|
133
|
1 |
|
if (!empty($bindings)) { |
134
|
|
|
$this->addBinding($bindings, 'having'); |
135
|
|
|
} |
136
|
|
|
|
137
|
1 |
|
return $this; |
138
|
|
|
} |
139
|
|
|
|
140
|
|
|
/** |
141
|
|
|
* Create a new query instance for nested where condition. |
142
|
|
|
* |
143
|
|
|
* @param array<mixed> $aliases |
144
|
|
|
* @return Builder |
145
|
|
|
*/ |
146
|
40 |
|
public function forNestedWhere($aliases = []) |
147
|
|
|
{ |
148
|
40 |
|
$query = $this->newQuery(); |
|
|
|
|
149
|
40 |
|
foreach ($aliases as $alias) { |
150
|
1 |
|
$query->groups[] = $alias; |
151
|
|
|
|
152
|
|
|
} |
153
|
40 |
|
return $query->from((string) $this->grammar->getValue($this->from)); |
154
|
|
|
} |
155
|
|
|
|
156
|
|
|
/** |
157
|
|
|
* Add a nested having statement to the query. |
158
|
|
|
* |
159
|
|
|
* @param \Closure $callback |
160
|
|
|
* @param string $boolean |
161
|
|
|
* @return $this |
162
|
|
|
*/ |
163
|
1 |
|
public function havingNested(Closure $callback, $boolean = 'and') |
164
|
|
|
{ |
165
|
1 |
|
$callback($query = $this->forNestedWhere($this->groups ?? [])); |
166
|
|
|
|
167
|
1 |
|
return $this->addNestedHavingQuery($query, $boolean); |
168
|
|
|
} |
169
|
|
|
|
170
|
|
|
/** |
171
|
|
|
* Add another query builder as a nested having to the query builder. |
172
|
|
|
* |
173
|
|
|
* @param \Illuminate\Database\Query\Builder $query |
174
|
|
|
* @param string $boolean |
175
|
|
|
* @return $this |
176
|
|
|
*/ |
177
|
1 |
|
public function addNestedHavingQuery($query, $boolean = 'and') |
178
|
|
|
{ |
179
|
1 |
|
if (count($query->havings ?? [])) { |
180
|
1 |
|
$type = 'Nested'; |
181
|
|
|
|
182
|
1 |
|
$this->havings[] = compact('type', 'query', 'boolean'); |
|
|
|
|
183
|
|
|
|
184
|
1 |
|
$this->mergeBindings($query); |
|
|
|
|
185
|
|
|
} |
186
|
|
|
|
187
|
1 |
|
return $this; |
188
|
|
|
} |
189
|
|
|
|
190
|
|
|
|
191
|
|
|
/** |
192
|
|
|
* Add a "having between " clause to the query. |
193
|
|
|
* |
194
|
|
|
* @param string $column |
195
|
|
|
* @param iterable<mixed> $values |
196
|
|
|
* @param string $boolean |
197
|
|
|
* @param bool $not |
198
|
|
|
* @return $this |
199
|
|
|
* |
200
|
|
|
* @SuppressWarnings("PHPMD.BooleanArgumentFlag") |
201
|
|
|
*/ |
202
|
1 |
|
public function havingBetween($column, iterable $values, $boolean = 'and', $not = false) |
203
|
|
|
{ |
204
|
1 |
|
$type = 'between'; |
205
|
|
|
|
206
|
1 |
|
if ($values instanceof CarbonPeriod) { |
207
|
|
|
$values = [$values->start, $values->end]; |
208
|
|
|
} |
209
|
|
|
|
210
|
|
|
assert(is_array($values)); |
211
|
|
|
|
212
|
1 |
|
$bindings = array_slice($this->cleanBindings(Arr::flatten($values)), 0, 2); |
|
|
|
|
213
|
1 |
|
$this->addBinding($bindings[0], 'having'); |
214
|
1 |
|
$values[0] = '@' . array_key_last($this->getBindings()); |
215
|
|
|
|
216
|
1 |
|
$this->addBinding($bindings[1], 'having'); |
217
|
1 |
|
$values[1] = '@' . array_key_last($this->getBindings()); |
218
|
|
|
|
219
|
1 |
|
$this->havings[] = compact('type', 'column', 'values', 'boolean', 'not'); |
|
|
|
|
220
|
|
|
|
221
|
1 |
|
return $this; |
222
|
|
|
} |
223
|
|
|
} |
224
|
|
|
|