Skip to content

Commit 6a991b2

Browse files
committed
include and order by calculated standardised score
1 parent 3bd7bc4 commit 6a991b2

File tree

4 files changed

+23
-13
lines changed

4 files changed

+23
-13
lines changed

app/Models/Contest.php

+8-7
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 $this->getExtraOptions()['best_of'] ?? false;
134+
return isset($this->getExtraOptions()['best_of']);
135135
}
136136

137137
public function isJudge(User $user): bool
@@ -151,6 +151,11 @@ public function isJudgingActive(): bool
151151
return $this->isJudged() && $this->isVotingStarted() && !$this->show_votes;
152152
}
153153

154+
public function isScoreStandardised(): bool
155+
{
156+
return $this->getExtraOptions()['is_score_standardised'] ?? false;
157+
}
158+
154159
public function isSubmittedBeatmaps(): bool
155160
{
156161
return $this->isBestOf() || ($this->getExtraOptions()['submitted_beatmaps'] ?? false);
@@ -290,16 +295,12 @@ public function entriesByType(?User $user, array $preloads = [])
290295
$query = $this->entries()->with(['contest', ...$preloads]);
291296

292297
if ($this->show_votes) {
293-
$option = $this->isBestOf()
294-
? 'best_of'
295-
: ($this->isJudged()
296-
? 'judged'
297-
: null);
298+
$options = $this->getExtraOptions();
298299

299300
return Cache::remember(
300301
"contest_entries_with_votes_{$this->id}",
301302
300,
302-
fn () => $query->with(['contest', ...$preloads])->withScore($option)->get()
303+
fn () => $query->with(['contest', ...$preloads])->withScore($options)->get()
303304
);
304305
} elseif ($this->isBestOf()) {
305306
if ($user === null) {

app/Models/ContestEntry.php

+13-4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
use Illuminate\Database\Eloquent\Collection;
1111
use Illuminate\Database\Eloquent\Relations\HasMany;
1212
use Illuminate\Database\Eloquent\Relations\HasManyThrough;
13+
1314
/**
1415
* @property-read Contest $contest
1516
* @property int $contest_id
@@ -81,18 +82,26 @@ public function scopeForBestOf(Builder $query, User $user, string $ruleset, ?str
8182
return $query;
8283
}
8384

84-
public function scopeWithScore(Builder $query, string $option): Builder
85+
public function scopeWithScore(Builder $query, array $options): Builder
8586
{
8687
$orderValue = 'votes_count';
8788

88-
if ($option === 'best_of') {
89+
if (isset($options['best_of'])) {
8990
$query
9091
->selectRaw('*')
9192
->selectRaw('(SELECT FLOOR(SUM(`weight`)) FROM `contest_votes` WHERE `contest_entries`.`id` = `contest_votes`.`contest_entry_id`) AS votes_count')
9293
->limit(50); // best of contests tend to have a _lot_ of entries...
93-
} else if ($option === 'judged') {
94+
} else if ($options['judged'] ?? false) {
9495
$query->withSum('scores', 'value');
95-
$orderValue = 'scores_sum_value';
96+
97+
if ($options['is_score_standardised'] ?? false) {
98+
$scoreQuery = ContestJudgeVote::selectRaw(\DB::raw('SUM(`total_score_std`)'));
99+
$scoreQuery->whereColumn($scoreQuery->qualifyColumn('contest_entry_id'), $this->qualifyColumn('id'));
100+
$query->addSelect(['total_score_std' => $scoreQuery]);
101+
$orderValue = 'total_score_std';
102+
} else {
103+
$orderValue = 'scores_sum_value';
104+
}
96105
} else {
97106
$query->withCount('votes');
98107
}

app/Transformers/ContestEntryTransformer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function includeResults(ContestEntry $entry)
6767

6868
return $this->primitive([
6969
'actual_name' => $entry->name,
70-
'score_std' => $judged ? $entry->totalScoreStd() : null,
70+
'score_std' => $judged ? $entry->total_score_std : null,
7171
'votes' => (int) $votes, // TODO: change to score or something else, or even better stop overloading the results value.
7272
]);
7373
}

app/Transformers/ContestJudgeVoteTransformer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function includeTotalScore(ContestJudgeVote $judgeVote): Primitive
4141

4242
public function includeTotalScoreStd(ContestJudgeVote $judgeVote): Primitive
4343
{
44-
return $this->primitive($judgeVote->totalScoreStd());
44+
return $this->primitive($judgeVote->total_score_std);
4545
}
4646

4747
public function includeUser(ContestJudgeVote $judgeVote): Item

0 commit comments

Comments
 (0)