mirror of
https://github.com/ppy/osu.git
synced 2024-11-13 03:17:25 +08:00
35 lines
974 B
C#
35 lines
974 B
C#
|
// 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();
|
|||
|
}
|
|||
|
}
|