Skip to content

Commit 3bd7bc4

Browse files
committed
pass flag into scope instead of Contest
1 parent 0a5265f commit 3bd7bc4

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

app/Models/Contest.php

+8-2
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public function calculateScores(): void
131131

132132
public function isBestOf(): bool
133133
{
134-
return isset($this->getExtraOptions()['best_of']);
134+
return $this->getExtraOptions()['best_of'] ?? false;
135135
}
136136

137137
public function isJudge(User $user): bool
@@ -290,10 +290,16 @@ public function entriesByType(?User $user, array $preloads = [])
290290
$query = $this->entries()->with(['contest', ...$preloads]);
291291

292292
if ($this->show_votes) {
293+
$option = $this->isBestOf()
294+
? 'best_of'
295+
: ($this->isJudged()
296+
? 'judged'
297+
: null);
298+
293299
return Cache::remember(
294300
"contest_entries_with_votes_{$this->id}",
295301
300,
296-
fn () => $query->with(['contest', ...$preloads])->withScore($this)->get()
302+
fn () => $query->with(['contest', ...$preloads])->withScore($option)->get()
297303
);
298304
} elseif ($this->isBestOf()) {
299305
if ($user === null) {

app/Models/ContestEntry.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,16 @@ public function scopeForBestOf(Builder $query, User $user, string $ruleset, ?str
8181
return $query;
8282
}
8383

84-
public function scopeWithScore(Builder $query, Contest $contest): Builder
84+
public function scopeWithScore(Builder $query, string $option): Builder
8585
{
8686
$orderValue = 'votes_count';
8787

88-
if ($contest->isBestOf()) {
88+
if ($option === 'best_of') {
8989
$query
9090
->selectRaw('*')
9191
->selectRaw('(SELECT FLOOR(SUM(`weight`)) FROM `contest_votes` WHERE `contest_entries`.`id` = `contest_votes`.`contest_entry_id`) AS votes_count')
9292
->limit(50); // best of contests tend to have a _lot_ of entries...
93-
} else if ($contest->isJudged()) {
93+
} else if ($option === 'judged') {
9494
$query->withSum('scores', 'value');
9595
$orderValue = 'scores_sum_value';
9696
} else {

0 commit comments

Comments
 (0)