Skip to content

Commit 34c2e78

Browse files
authored
Merge branch 'master' into gha-node
2 parents 435b735 + 1d40ad0 commit 34c2e78

File tree

12 files changed

+66
-65
lines changed

12 files changed

+66
-65
lines changed

app/Http/Controllers/Multiplayer/Rooms/Playlist/ScoresController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function index($roomId, $playlistId)
104104
*
105105
* ### Response Format
106106
*
107-
* Returns [MultiplayerScore](#multiplayerscore) object.
107+
* Returns [Score](#score) object.
108108
*
109109
* @urlParam room integer required Id of the room.
110110
* @urlParam playlist integer required Id of the playlist item.
@@ -136,7 +136,7 @@ public function show($roomId, $playlistId, $id)
136136
*
137137
* ### Response Format
138138
*
139-
* Returns [MultiplayerScore](#multiplayerscore) object.
139+
* Returns [Score](#score) object.
140140
*
141141
* @urlParam room integer required Id of the room.
142142
* @urlParam playlist integer required Id of the playlist item.

app/Jobs/RemoveBeatmapsetSoloScores.php

+1-10
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use App\Models\Beatmap;
1212
use App\Models\Beatmapset;
1313
use App\Models\Solo\Score;
14-
use DB;
1514
use Illuminate\Bus\Queueable;
1615
use Illuminate\Contracts\Queue\ShouldQueue;
1716
use Illuminate\Database\Eloquent\Collection;
@@ -59,15 +58,7 @@ private function deleteScores(Collection $scores): void
5958
{
6059
$ids = $scores->pluck('id')->all();
6160

62-
$scoresQuery = Score::whereKey($ids);
63-
// Queue delete ahead of time in case process is stopped right after
64-
// db delete is committed. It's fine queuing deleted score ahead of
65-
// time as best score check doesn't use index.
66-
// Set the flag first so indexer will correctly delete it.
67-
$scoresQuery->update(['preserve' => false]);
61+
Score::whereKey($ids)->update(['ranked' => false]);
6862
$this->scoreSearch->queueForIndex($this->schemas, $ids);
69-
DB::transaction(function () use ($ids, $scoresQuery): void {
70-
$scoresQuery->delete();
71-
});
7263
}
7364
}

app/Models/Multiplayer/PlaylistItemUserHighScore.php

-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
* @property \Carbon\Carbon $created_at
1919
* @property int $id
2020
* @property int $playlist_item_id
21-
* @property float|null $pp
2221
* @property int $score_id
2322
* @property ScoreLink $scoreLink
2423
* @property int $total_score
@@ -51,7 +50,6 @@ public static function lookupOrDefault(int $userId, int $playlistItemId): static
5150
'user_id' => $userId,
5251
], [
5352
'accuracy' => 0,
54-
'pp' => 0,
5553
'total_score' => 0,
5654
]);
5755
}
@@ -122,7 +120,6 @@ public function updateWithScoreLink(ScoreLink $scoreLink): bool
122120

123121
return $this->fill([
124122
'accuracy' => $score->accuracy,
125-
'pp' => $score->pp,
126123
'score_id' => $score->getKey(),
127124
'total_score' => $score->total_score,
128125
])->save();

app/Models/Multiplayer/UserScoreAggregate.php

-8
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
* @property int $id
2121
* @property int|null $last_score_id
2222
* @property bool $in_room
23-
* @property float|null $pp
2423
* @property int $room_id
2524
* @property int $total_score
2625
* @property \Carbon\Carbon $updated_at
@@ -53,7 +52,6 @@ public static function lookupOrDefault(User $user, Room $room): static
5352
'accuracy' => 0,
5453
'attempts' => 0,
5554
'completed' => 0,
56-
'pp' => 0,
5755
'total_score' => 0,
5856
]);
5957
}
@@ -91,11 +89,6 @@ public function averageAccuracy()
9189
return $this->completed > 0 ? $this->accuracy / $this->completed : 0;
9290
}
9391

94-
public function averagePp()
95-
{
96-
return $this->completed > 0 ? $this->pp / $this->completed : 0;
97-
}
98-
9992
public function playlistItemAttempts(): array
10093
{
10194
$playlistItemAggs = PlaylistItemUserHighScore
@@ -159,7 +152,6 @@ public function removeRunningTotals()
159152
'attempts',
160153
'completed',
161154
'last_score_id',
162-
'pp',
163155
'total_score',
164156
];
165157

app/Models/Solo/Score.php

+5
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ public function scopeIndexable(Builder $query): Builder
164164
{
165165
return $query
166166
->where('preserve', true)
167+
->where('ranked', true)
167168
->whereHas('user', fn (Builder $q): Builder => $q->default());
168169
}
169170

@@ -427,6 +428,10 @@ public function url(): string
427428

428429
public function userRank(?array $params = null): int
429430
{
431+
if (!$this->ranked || !$this->preserve) {
432+
return 0;
433+
}
434+
430435
// Non-legacy score always has its rank checked against all score types.
431436
if (!$this->isLegacy()) {
432437
$params['is_legacy'] = null;

app/Transformers/Multiplayer/UserScoreAggregateTransformer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function transform(UserScoreAggregate $score)
2323
'accuracy' => $score->averageAccuracy(),
2424
'attempts' => $score->attempts,
2525
'completed' => $score->completed,
26-
'pp' => $score->averagePp(),
26+
'pp' => 0,
2727
'room_id' => $score->room_id,
2828
'total_score' => $score->total_score,
2929
'user_id' => $score->user_id,

resources/js/scores-show/player.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function Player(props: Props) {
1717
let title: string;
1818
let content: React.ReactNode;
1919

20-
if (props.score.rank_global == null || props.score.ranked === false || props.score.preserve === false) {
20+
if (props.score.rank_global == null || props.score.rank_global === 0 || props.score.ranked === false || props.score.preserve === false) {
2121
title = trans('scores.status.no_rank');
2222
content = '-';
2323
} else {

resources/views/docs/_structures/multiplayer_score.md

-21
This file was deleted.

resources/views/docs/_structures/multiplayer_scores.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
An object which contains scores and related data for fetching next page of the result.
44

5-
Field | Type | Description
6-
--------------- | --------------------------------------- | -------------------------------------------------------------
7-
cursor_string | [CursorString](#cursorstring) | To be used to fetch the next page.
8-
params | object | Parameters used for score listing.
9-
scores | [MultiplayerScore](#multiplayerscore)[] | |
10-
total | integer? | Index only. Total scores of the specified playlist item.
11-
user_score | [MultiplayerScore](#multiplayerscore)? | Index only. Score of the accessing user if exists.
5+
Field | Type | Description
6+
------------- | ----------------------------- | -----------
7+
cursor_string | [CursorString](#cursorstring) | To be used to fetch the next page.
8+
params | object | Parameters used for score listing.
9+
scores | [Score](#score)[] | |
10+
total | integer? | Index only. Total scores of the specified playlist item.
11+
user_score | [Score](#score)? | Index only. Score of the accessing user if exists.

resources/views/docs/_structures/score.md

+47-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
## Score
22

3+
The following is the format returned when API v2 version header is 20220705 or higher. Exceptions apply (f.ex. doesn't apply for legacy match score).
4+
5+
Field | Type | Description
6+
------------------ | ------------------------ | -----------
7+
accuracy | float | |
8+
beatmap_id | integer | |
9+
best_id | integer? | |
10+
build_id | integer? | |
11+
ended_at | [Timestamp](#timestamp) | |
12+
has_replay | boolean | |
13+
id | integer | |
14+
is_perfect_combo | boolean | |
15+
legacy_perfect | boolean | |
16+
legacy_score_id | integer? | |
17+
legacy_total_score | integer | |
18+
max_combo | integer | |
19+
maximum_statistics | ScoreStatistics? | |
20+
mods | Mod[] | |
21+
passed | boolean | |
22+
playlist_item_id | integer | Only for multiplayer score
23+
pp | float? | |
24+
preserve | boolean | Whether or not the score may eventually be deleted. Only for `solo_score` type
25+
rank | string | |
26+
ranked | boolean | Whether or not the score can have pp. Only for `solo_score` type
27+
room_id | integer | Only for multiplayer score
28+
ruleset_id | integer | |
29+
started_at | [Timestamp](#timestamp)? | |
30+
statistics | ScoreStatistics | |
31+
total_score | integer | |
32+
type | string | |
33+
user_id | integer | |
34+
35+
### Initial version
36+
337
The following is the format returned when API v2 version header is 20220704 or lower.
438

539
Field | Type | Description
@@ -26,14 +60,17 @@ mode | | |
2660
mode_int | | |
2761
replay | | |
2862

29-
Optional attributes:
63+
### Optional attributes
3064

31-
Field | Type | Description
32-
------------ | ---- | -----------
33-
beatmap | | |
34-
beatmapset | | |
35-
rank_country | | |
36-
rank_global | | |
37-
weight | | |
38-
user | | |
39-
match | | |
65+
Field | Type | Description
66+
----------------------- | ---------------------------------------------------- | -----------
67+
beatmap | | |
68+
beatmapset | | |
69+
current_user_attributes | integer? | |
70+
match | | Only for legacy match score
71+
position | integer? | Only for multiplayer score
72+
rank_country | | |
73+
rank_global | | |
74+
scores_around | [MultiplayerScoresAround](#multiplayerscoresaround)? | Scores around the specified score. Only for multiplayer score
75+
user | | |
76+
weight | | |

resources/views/emails/store/supporter_gift.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
@else
1919
{!! osu_trans('mail.supporter_gift.gift_message') !!}
2020
@foreach ($messages as $message)
21-
{{ $message }}
21+
{!! $message !!}
2222
@endforeach
2323
@endif
2424

tests/Jobs/RemoveBeatmapsetSoloScoresTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function testHandle()
4747
$this->createScore($beatmapset);
4848
}
4949

50-
$this->expectCountChange(fn () => Score::count(), count($scores) * -2, 'removes scores');
50+
$this->expectCountChange(fn () => Score::indexable()->count(), count($scores) * -2, 'removes scores');
5151

5252
static::reindexScores();
5353

0 commit comments

Comments
 (0)