|
9 | 9 | use App\Jobs\EsDocument;
|
10 | 10 | use App\Libraries\Transactions\AfterCommit;
|
11 | 11 | use App\Traits\Memoizes;
|
12 |
| -use DB; |
13 | 12 | use Illuminate\Database\Eloquent\Builder;
|
14 | 13 | use Illuminate\Database\Eloquent\Collection;
|
15 | 14 | use Illuminate\Database\Eloquent\SoftDeletes;
|
@@ -166,21 +165,32 @@ public function scopeScoreable($query)
|
166 | 165 |
|
167 | 166 | public function scopeWithMaxCombo($query)
|
168 | 167 | {
|
169 |
| - $mods = BeatmapDifficultyAttrib::NO_MODS; |
170 |
| - $attrib = BeatmapDifficultyAttrib::MAX_COMBO; |
171 |
| - $attribTable = (new BeatmapDifficultyAttrib())->tableName(); |
172 |
| - $mode = $this->qualifyColumn('playmode'); |
173 |
| - $id = $this->qualifyColumn('beatmap_id'); |
| 168 | + $valueQuery = BeatmapDifficultyAttrib |
| 169 | + ::select('value') |
| 170 | + ->whereColumn([ |
| 171 | + 'beatmap_id' => $this->qualifyColumn('beatmap_id'), |
| 172 | + 'mode' => $this->qualifyColumn('playmode'), |
| 173 | + ]) |
| 174 | + ->where([ |
| 175 | + 'attrib_id' => BeatmapDifficultyAttrib::MAX_COMBO, |
| 176 | + 'mods' => BeatmapDifficultyAttrib::NO_MODS, |
| 177 | + ]); |
174 | 178 |
|
175 |
| - return $query |
176 |
| - ->select(DB::raw("*, ( |
177 |
| - SELECT value |
178 |
| - FROM {$attribTable} |
179 |
| - WHERE beatmap_id = {$id} |
180 |
| - AND mode = {$mode} |
181 |
| - AND mods = {$mods} |
182 |
| - AND attrib_id = {$attrib} |
183 |
| - ) AS attrib_max_combo")); |
| 179 | + return $query->addSelect(['attrib_max_combo' => $valueQuery]); |
| 180 | + } |
| 181 | + |
| 182 | + public function scopeWithUserPlaycount(Builder $query, ?int $userId): Builder |
| 183 | + { |
| 184 | + if ($userId === null) { |
| 185 | + $countQuery = \DB::query()->selectRaw('null'); |
| 186 | + } else { |
| 187 | + $countQuery = BeatmapPlaycount |
| 188 | + ::where('user_id', $userId) |
| 189 | + ->whereColumn('beatmap_id', $this->qualifyColumn('beatmap_id')) |
| 190 | + ->select('playcount'); |
| 191 | + } |
| 192 | + |
| 193 | + return $query->addSelect(['user_playcount' => $countQuery]); |
184 | 194 | }
|
185 | 195 |
|
186 | 196 | public function scopeWithUserTagIds($query, ?int $userId)
|
@@ -309,6 +319,15 @@ public function getAttribute($key)
|
309 | 319 | };
|
310 | 320 | }
|
311 | 321 |
|
| 322 | + public function getUserPlaycount(): int |
| 323 | + { |
| 324 | + if (!array_key_exists('user_playcount', $this->attributes)) { |
| 325 | + throw new \Exception('withUserPlaycount scope is required'); |
| 326 | + } |
| 327 | + |
| 328 | + return $this->attributes['user_playcount'] ?? 0; |
| 329 | + } |
| 330 | + |
312 | 331 | /**
|
313 | 332 | * Requires calling withUserTagIds scope to populate user_tag_ids
|
314 | 333 | *
|
|
0 commit comments