2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
using osu.Game.Screens.Select.Leaderboards;
|
2018-06-08 10:41:54 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2019-07-03 19:34:20 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Collections.Generic;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
|
{
|
2021-10-28 16:48:56 +08:00
|
|
|
|
public class GetScoresRequest : APIRequest<APIScoresCollection>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-10-29 16:40:02 +08:00
|
|
|
|
private readonly IBeatmapInfo beatmapInfo;
|
2018-12-14 18:51:27 +08:00
|
|
|
|
private readonly BeatmapLeaderboardScope scope;
|
2021-10-29 16:40:02 +08:00
|
|
|
|
private readonly IRulesetInfo ruleset;
|
2021-09-10 11:43:21 +08:00
|
|
|
|
private readonly IEnumerable<IMod> mods;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-10-29 16:40:02 +08:00
|
|
|
|
public GetScoresRequest(IBeatmapInfo beatmapInfo, IRulesetInfo ruleset, BeatmapLeaderboardScope scope = BeatmapLeaderboardScope.Global, IEnumerable<IMod> mods = null)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-10-29 16:40:02 +08:00
|
|
|
|
if (beatmapInfo.OnlineID <= 0)
|
|
|
|
|
throw new InvalidOperationException($"Cannot lookup a beatmap's scores without having a populated {nameof(IBeatmapInfo.OnlineID)}.");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-12-14 18:51:27 +08:00
|
|
|
|
if (scope == BeatmapLeaderboardScope.Local)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
throw new InvalidOperationException("Should not attempt to request online scores for a local scoped leaderboard");
|
|
|
|
|
|
2021-10-02 23:55:29 +08:00
|
|
|
|
this.beatmapInfo = beatmapInfo;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
this.scope = scope;
|
|
|
|
|
this.ruleset = ruleset ?? throw new ArgumentNullException(nameof(ruleset));
|
2021-09-10 11:43:21 +08:00
|
|
|
|
this.mods = mods ?? Array.Empty<IMod>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-29 16:40:02 +08:00
|
|
|
|
protected override string Target => $@"beatmaps/{beatmapInfo.OnlineID}/scores{createQueryParameters()}";
|
2019-07-03 19:34:20 +08:00
|
|
|
|
|
|
|
|
|
private string createQueryParameters()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-07-03 19:34:20 +08:00
|
|
|
|
StringBuilder query = new StringBuilder(@"?");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-07-05 11:16:17 +08:00
|
|
|
|
query.Append($@"type={scope.ToString().ToLowerInvariant()}");
|
|
|
|
|
query.Append($@"&mode={ruleset.ShortName}");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-07-03 19:34:20 +08:00
|
|
|
|
foreach (var mod in mods)
|
2019-07-05 11:16:17 +08:00
|
|
|
|
query.Append($@"&mods[]={mod.Acronym}");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-07-05 11:16:17 +08:00
|
|
|
|
return query.ToString();
|
2019-07-03 19:34:20 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|