mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Merge dependencies
This commit is contained in:
34
osu.Game/Online/API/Requests/GetRankingsRequest.cs
Normal file
34
osu.Game/Online/API/Requests/GetRankingsRequest.cs
Normal file
@ -0,0 +1,34 @@
|
||||
// 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.
|
||||
|
||||
using osu.Framework.IO.Network;
|
||||
using osu.Game.Rulesets;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace osu.Game.Online.API.Requests
|
||||
{
|
||||
public abstract class GetRankingsRequest<TModel> : APIRequest<List<TModel>>
|
||||
{
|
||||
private readonly RulesetInfo ruleset;
|
||||
private readonly int page;
|
||||
|
||||
protected GetRankingsRequest(RulesetInfo ruleset, int page = 1)
|
||||
{
|
||||
this.ruleset = ruleset;
|
||||
this.page = page;
|
||||
}
|
||||
|
||||
protected override WebRequest CreateWebRequest()
|
||||
{
|
||||
var req = base.CreateWebRequest();
|
||||
|
||||
req.AddParameter("page", page.ToString());
|
||||
|
||||
return req;
|
||||
}
|
||||
|
||||
protected override string Target => $"rankings/{ruleset.ShortName}/{TargetPostfix()}";
|
||||
|
||||
protected abstract string TargetPostfix();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user